himanshu


{ City } pune
< Country > india
* Profession *
User No # 36431
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 # 24
Users Marked my Answers as Wrong # 4
Questions / { himanshu }
Questions Answers Category Views Company eMail




Answers / { himanshu }

Question { CGI, 14722 }

I have the transaction name for cics screen.. With the
transaction name, how will I find the cics program written
for the transaction and BMS map program also...


Answer

PCT (Program COntrol Table) contains transaction id and the
corresponding program name.

Once we got program name from PCT we can browse through PPT
(Processing Program Table) which contains Program name,
Mapset name, Language, Size, Main storage address, Task
User counter and Load library address.

~ Himanshu

Is This Answer Correct ?    6 Yes 4 No

Question { IBM, 16393 }

how to split a file


Answer

Using SORT utility we can split the file. Sort card will be
as:

//SYSIN DD *
SORT FIELDS=COPY
OUTFILE FNAMES=(SORTOUT1,SORTOUT2,SORTOUT3),SPLIT
/*

If there are 10 records in input and these have to be split
across three files SORTOUT1, SORTOUT2 and SORTOUT3
respectively. After running the Job using this sort card,
record1 would be stored in SORTOUT1, record2 in SORTOUT2,
record3 in SORTOUT3, record4 in SORTOUT1 and so on.

Is This Answer Correct ?    18 Yes 0 No