Can you code instream data in a PROC ?

Answer Posted / guest

//SYSIN DD *,SYMBOLS=(JCLONLY)

Will do the trick.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is the use of IEBGENER utility?

650


Explain how can the attributes of one sms dataset be copied to another dataset?

699


What are hierarchy levels in jcl?

942


What does a disposition of (MOD,DELETE,DELETE) mean ?

658


What is the purpose of dd * statement in jcl?

793






What is the purpose of dd dummy statement?

937


by using cond parameter maximum 8 cond can be coded in single cond means ?explain

969


have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file

914


What are the jcl procedures?

640


Is their any set of rules for dd? Explain.

651


define cond parameter in jcl?

765


State the uses of syspring, sysin, sort fields, sum fields and dummy.

640


Describe the various parameters utilized in the creation of a gdg?

676


How to alter the parameters for the existing gdg?

702


WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375

1027