ram


{ City } warangal
< Country > india
* Profession * software engineer
User No # 74265
Total Questions Posted # 0
Total Answers Posted # 5

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

Users Marked my Answers as Correct # 25
Users Marked my Answers as Wrong # 5
Questions / { ram }
Questions Answers Category Views Company eMail




Answers / { ram }

Question { Cap Gemini, 5432 }

Hi, can any one tell about " How do u eliminate the
duplicates "


Answer

By using DFSORT we can eliminate the duplicates

//Sysin dd *
sort fields=(1,5,ch,A)
sum fields=
/*
//
in the above dfsort we use sum fields= empty then it
eliminate the duplicates

if u want all dupli.in one file u can use
sum fields = xsum........
by (prathap)

Is This Answer Correct ?    2 Yes 2 No

Question { Patni, 7634 }

in my jcl have 20 steps step1,step2,.... step20.and i have to
execute step1,step2,..and skip the step3 and remaing
step4,step5 are execute? i want skip step3 only? what code u
can write?


Answer

u can write in step3 cond=(0,LE) then the step3 is skiped

Is This Answer Correct ?    7 Yes 0 No


Question { Patni, 7634 }

in my jcl have 20 steps step1,step2,.... step20.and i have to
execute step1,step2,..and skip the step3 and remaing
step4,step5 are execute? i want skip step3 only? what code u
can write?


Answer

In Step3 u can write the COND=(0,LE) then that step3 is skip.
or

u can use
//step3 exec pgm=abc,cond=(4095,GT) also work same as above.

By
Prathap

Is This Answer Correct ?    11 Yes 0 No

Question { Patni, 4752 }

waht is inspect verb? where it can be in real time?


Answer

Inspect is use to count the occurrences of a character in a
string & replace the char or sub-string in a string.....ect..

In real time if u do any mistake in entering data like
account no....524000200 rather then 542000200
by using Inspect U can achieve it easily ......

Is This Answer Correct ?    1 Yes 0 No

Question { HCL, 9082 }

I have a cobol program with a sub program. How ca i find that
it is a dynamic call? or static call..?


Answer

It is very easy to find...........

1st u check the stmt call 'sub-name' or call 'ws-name'...


if it is call 'sub-name' then it is STATIC CALL
OR
If it is call 'ws-name' then it is DYNAMIC CALL....



By
(PRATHAP)

Is This Answer Correct ?    4 Yes 3 No