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 SkipVought 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: *

  • Users: nxm150
  • Order by date
  1. nxm150

    users guide?

    Thank you.
  2. nxm150

    users guide?

    Is there a users guide to MQ series online somewhere? TIA
  3. nxm150

    complex condition question..

    Thank you for the replies. Does anyone have a link (for documentation) to the above question.
  4. nxm150

    complex condition question..

    Is the following IF FIELD-1 NOT = 'AB' AND 'CD' the same as IF FIELD-1 NOT = 'AB' AND NOT = 'CD'
  5. nxm150

    JCL - use symbolic in a LABEL?

    Can I use a symoblic in a LABEL?? Such as - LABEL&NUM DD DSN=FILE.NAME The above example is giving me 'INVALID LABEL' error message. Just wondering if this can be accomplished.
  6. nxm150

    PD6.2?

    We have figured out the problem. I was looking at the SAS code that we had on the mainframe, not what he downloaded. Apparantly a line was added when he downloaded his file IF CNT GT 0 THEN DO; ARRAY IND{*} $ 1 IND01-IND99; ARRAY CD{*} $ 2 CD01-CD99; ARRAY DT{*} $ 8...
  7. nxm150

    PD6.2?

    Count is @414 CNT 2. I am not following your 2nd sentence. The fields that SAS defines as PD6.2 show up as 000000 00000C when zeroes
  8. nxm150

    PD6.2?

    CNT is in the fixed portion of the record. FF 01
  9. nxm150

    PD6.2?

    Position 427 is the beginning of the variable part of my record. I notice in my COBOL defintion for one of my OCCURS clause it says 'OCCURS 0 - 30 times' but the SAS is set up for 99 OCCURANCES. Should the SAS be changed to 30 OCCURANCES? The other OCCURS clause and the SAS definiton have the...
  10. nxm150

    PD6.2?

    Our system is providing the user with a output file (VB). I have mapped this file and record in question against the COBOL copybook in fileaid and all the fields are in the correct position. We have also provided them with the SAS statements for their use but I guess the SAS has a bug in it...
  11. nxm150

    PD6.2?

    Can you post your email address and I will send the error log? I don't want to post it publicly. Thanks!
  12. nxm150

    PD6.2?

    OK. Thanks. It just looked weird as I thought the definition was wrong. I will look elsewhere in the SAS statements to see why it is not working correctly.
  13. nxm150

    PD6.2?

    000088 00045C
  14. nxm150

    PD6.2?

    I am looking at some SAS statements. I have a field in COBOL defined as PIC S9(9)V99 COMP-3. The same field is defined as PD6.2 in SAS. I am thinking this definition is wrong and the SAS should say PD5.2
  15. nxm150

    PD6.2?

    Can someone tell me what PD6.2 equates to in terms of a COBOL PIC definition? Also, is there a website that is a beginners guide to SAS? Thanks!
  16. nxm150

    query question

    Simple enough. I will give it a try. Thanks!
  17. nxm150

    query question

    SELECT COUNT(*) FROM TABLE1 B, TABLE2 A WHERE B.FIELD1 = 44441 AND B.FIELD2 = A.FIELD2 GROUP BY A.FIELD3 This query is pulling back the following info currently - 12 27 46 1 2 1 2...
  18. nxm150

    Need VOLSERs from output tape

    I tried it with no quotes and am getting the same results. Here is the latest code I am executing... /* REXX EXEC */ CALL OUTTRAP 'OUT.' "LISTCAT LEV(XXXX.XXXXDS47.IOFLIST) ALL" CALL OUTTRAP 'OFF' DO I = 1 TO OUT.0 SAY OUT.I SELECT WHEN...
  19. nxm150

    Need VOLSERs from output tape

    I am displaying OUT.I and am getting the following... ENTRY MY.DSN. NOT FOUND+ ** VSAM CATALOG RETURN CODE IS 8 ** MY.DSN NOT LISTED *** LASTCC=4 On the first display line, why does my DSN have a '.' at the end 'MY.DSN.'??
  20. nxm150

    Need VOLSERs from output tape

    Thanks for all your help. I added '/* REXX EXEC */' to the beginning of my code and the program ran but it keeps falling down to the WHEN OTHERWISE. I will debug this in the morning. Thanks again!

Part and Inventory Search

Back
Top