chella


{ City } bangalore
< Country > india
* Profession * mainframe developer
User No # 122384
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 0
Users Marked my Answers as Wrong # 0
Questions / { chella }
Questions Answers Category Views Company eMail




Answers / { chella }

Question { Wipro, 11647 }

What do you do to resolve SOC-7 error?


Answer

Soc7 abend will be thrown because of moving any non numeric variable to numeric variable.

The fix is , you have to go to spool.

Check for the DD names either CESDUMP or AbendAid.

Please select the DD name using S

Then try to find the offset address and line number.

If line number doesn't exist then copy offset address and go back to SYSPRINT in spool

In the command line type L_offset address and press enter

You can now see the exact line.

Now go to your program and enter the line number in command area and press enter

You will be moved to the exact line which has error..you can correct it and then go for recompilation and execution.

Is This Answer Correct ?    0 Yes 0 No

Question { Satyam, 7480 }

what are the paramater we cannot use in procedure?how many
instream we can write in single jcl?can we call instream to
catalog and ctalog to instream?


Answer

Instream message can't be passed with in a proc with the help of
Ex:
// sysin DD *
Sort fields =copy
/*

So we have to create a control card.
Control card member is used to store instream data which has to be used with in a proc like

//Proc1 proc
//Step2 DD dsn=aggst.temp.ps(contmem),disp=shr,
..
..
..
//Pend


Ps: contmem is the member name which contains sysin DD * info

Is This Answer Correct ?    0 Yes 0 No