Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. oldcoderunner

    Parsing XML in COBOL

    You need to use the COBOL XML GENERATE command.
  2. oldcoderunner

    Parsing XML in COBOL

    My COBOL program is using the XML PARSE statement to parse a string received from a unix system. After each end-tag there is a string of characters Hex'254040' which is a line feed and two spaces. However the parser instead of skipping past these 'white-space' characters, is returning them to...
  3. oldcoderunner

    PLT Starting transactions during CICS startup

    I've added a transaction into the Program List Table (PLT) so that it is run when CICS is started, however when it runs it fails on a DB2 select statement SQLCODE=-805 Plan Access Error. Then the transaction runs again and this time it works! Two questions; 1. Why the bad SQL return code on the...
  4. oldcoderunner

    File Updating & Locking

    If a CICS program reads a VSAM file with the update option, updates the data, rewrites it and continues with further processing, does the record remain locked until the next syncpoint or is the updated data available to be read (for update) by another CICS program after the first program...
  5. oldcoderunner

    Enterprise COBOL, XML GENERATE command

    The problem was caused by the JCL used to run the program using the runtime library for our previous version of COBOL instead of the Enterprise version. Doh!
  6. oldcoderunner

    Enterprise COBOL, XML GENERATE command

    We have recently installed Enterprise COBOL for Z/OS and I have been exploring the XML commands PARSE and GENERATE. Whilst I have successfully used the PARSE command I have been unable to get the GENERATE command to work even on a most basic example. See below; 01 WA-ACCUMULATORS. 03...

Part and Inventory Search

Back
Top