venkat


{ City } bangalore
< Country > india
* Profession * s/w enjineer
User No # 90448
Total Questions Posted # 1
Total Answers Posted # 5

Total Answers Posted for My Questions # 1
Total Views for My Questions # 7065

Users Marked my Answers as Correct # 30
Users Marked my Answers as Wrong # 7
Questions / { venkat }
Questions Answers Category Views Company eMail

1) SORT FIELDS=(20,4,CH,D,10,3,CH,D) OUTREC FIELDS=(7:20,4,C' FUTURE ',20,2,10,3,1Z,1,9,13,7, 24,57,TRAN=LTOU,6X'FF') This example illustrates how a fixed-length input data set can be sorted and reformatted for output. The SORTIN LRECL is 80 bytes. The reformatted output records are fixed length with a record size of 103 bytes. SOLRF (the IBM-supplied default) is in effect, so unless the SORTOUT LRECL is specified or available, it will automatically be set to the reformatted record length of 103. in the above example i have some doubts that a) sort fields=(20,4,CH,D,10,3,CH,D) -what exactly it does and this fields related to output record fields or input record fields b)outrec used to refprmat the records after sorting that means could please reply me as soon as possible Thanks. Venkat

Tesco,

1 JCL 7065




Answers / { venkat }

Question { IBM, 10215 }

If I create a TSQ from one transaction, can I read it from
another transaction?


Answer

Yes,

the records once written remains accessible until the entire
tsq deleted.

Is This Answer Correct ?    3 Yes 0 No

Question { IBM, 12162 }

What is Tclass in cics?what is its importance? How it is
implemented?


Answer

tclass means transaction class is a way to limit the number of similar transactions execute at the one time.


if it's wrong please correct it and let me ur comments on this.

Is This Answer Correct ?    1 Yes 1 No


Question { 6369 }

What are the types of performs in COBOL?
How does perform thru work, give example.


Answer

perform will be useful when you want to execute a set of statements in multiple places of the program. write all statements in one paragraph and invoke it using perform wherever needed.

perform contain 7 types of statements.

* simple perform
* inline perform
* perform thru para
* perform untill para
* perform n.times para
* perform varying thru para
* perform para before/after para

Is This Answer Correct ?    6 Yes 0 No

Question { 5905 }

What are the CICS tables? How to traverse from one screen
(program) to another on CICS?


Answer

In cics have different tables such that

FCT(file control table)
PPT(program processing table)
PCT(program control table)
RCT(resource control table)
JCT(journel control table)
DCT(destination control table)
TCT(Terminal control table)
TST(temporary storage table)

Program to program transactions are diff types.

XCTL,LINK,AND COBOL CALL STATEMENT.

Hi frends let me know your comments about this answer.

Is This Answer Correct ?    15 Yes 0 No

Question { 9451 }

if in a job, region is mentioned in both jobcard and in
step then which is cosidered at the step level?
A job has region 4k in jobcard and step1 with region 0k and
step2 with 16k, then what is the region allocated for the
entire job?
what is the region step1 takes?
what is the region step2 takes?


Answer

in this case step override the job.So first considered to step level.

The Region of entire job takes 4k only.

The region of step1 takes 0k only.

The region of step2 takes 16k.

Is This Answer Correct ?    5 Yes 6 No