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!

Recent content by coboldeke

  1. coboldeke

    Initialize large table

    The method was encouraged at the shop where I worked. It only generates one 6 byte MVC instruction to get the table initialized. I worked with IBM COBOL and never had a problem with this method in 35 years that I programmed. The only thing I saw in recent compiler versions was a warning...
  2. coboldeke

    Initialize large table

    Try this... 01 ws-a. 05 filler. 10 filler value spaces pic x(02). 10 filler value +0 comp-3 pic s9(09)v99. 05 ws-b. 10 filler occurs 50000 times. 15 ws-c pic x(02). 15 ws-d pic s9(9)v99 comp-3. for each policy... move ws-a to ws-b. You may get...
  3. coboldeke

    Multi File Processing - Merge

    You may want to look at this a little closer webrabbit. At the beginning .... If A-KEY < B-KEY If A-KEY < c-KEY If A-KEY < D-KEY Merge-A Else Merge-D End-If You're making a big assumption in the ELSE. You don't know how D-KEY relates to B-KEY and...
  4. coboldeke

    A problem with search statement

    You have an ASCENDING KEY clause in your table definition. The key that you are using must be defined as one of the table elements. I don't see WT-CDFILIAC defined in the table anywhere. I assume you really want WT-CODE to be the key. Also, if you are using the SEARCH ALL, you must be sure...
  5. coboldeke

    How to MOVE A TO B with specs

    I assume when you want to use the length of field A you actually mean how many characters of field A are being used - not the length as defined in the PIC clause. You need to set up a loop to calculate the number of characters being used in field A. You could start at pos 1 of field A and add...
  6. coboldeke

    help needed fixing error

    You cannot use 9999.99 as the PIC. That is still an edited numeric field with a decimal point. You need an implied decimal point such as 9999V99. You cannot use a REDEFINES and expect it to work correctly all the time. If you have a field defined as ZZZZVZZ and you move a numeric value to...
  7. coboldeke

    Writing to disk versus writing to SYSOUT

    Can't you do a little debugging to see how your switch is being reset if in fact it is. Seems to me when you reenter the program, if the open switch is off you'll try to open the file again. Should get an error unless you closed it when you left the time before. Why not display the value of...
  8. coboldeke

    Writing to disk versus writing to SYSOUT

    You never said if this is a subprogram. The INITIAL clause only applies to a subprogram. If you're dealing with a main program, there is some sort of logic error that is causing your switch to be reset.
  9. coboldeke

    Writing to disk versus writing to SYSOUT

    If I recall correctly, INIT goes on the PROGRAM-ID. prog-name INITIAL. I think it only applies to sub-programs. It indicates that each time the program is called, it will be rest to its initial state which resets all VALUE clauses.
  10. coboldeke

    MF COBOL - Convert index value to numeric

    How about something like the following? It doesn't look like you really need to know how long the field is because when you move a shorter field to a longer one it pads the receiving field with spaces. How about if we first left justify the WORK-FIELD to get rid of leading spaces? Doesn't...
  11. coboldeke

    MF COBOL - Convert index value to numeric

    You can't MOVE an INDEX, but you can use the SET statement. Define a numeric field (it can be zoned decimal or packed). Use the SET statement this way: SET num-field TO index-field This will convert the index value to a numeric value.
  12. coboldeke

    Cobol unstring - is it possible 2 different delimiters?

    pacc-street-name will end up with one word only with the way you have coded the second UNSTRING. Is that what you want? In your samples, "952A north land" will have "north" in pacc-street-name. Wouldn't you want "north land"? If so, Jack's second UNSTRING or MOVE would do the trick.
  13. coboldeke

    New COBOL version truncating 1st column of report output

    As far as I remember, when we converted to Enterprise COBOL, we did not have any changes for writing report lines. The code worked fine when recompiled. I'm guessing there has to be something unorthodox happening in the code when you try to get the line printed. In other words, a logic error.
  14. coboldeke

    New COBOL version truncating 1st column of report output

    You have reserved the first byte for carriage control. That's what the FILLER of 1 byte is for. If the code moves the filled out report line to the 01 entry (FLR-VOTES-UPDT-REPORT), then the first byte is in the FILLER and is used as a carriage control character. You should move the filled...
  15. coboldeke

    Table Search Issue

    Try what Glenn9999 said but be sure to increment the index before you search the next time. If you leave the index where the last hit was, you'll find a match at that entry again.

Part and Inventory Search

Back
Top