manish


{ City } delhi
< Country > india
* Profession *
User No # 8643
Total Questions Posted # 1
Total Answers Posted # 3

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

Users Marked my Answers as Correct # 10
Users Marked my Answers as Wrong # 3
Questions / { manish }
Questions Answers Category Views Company eMail

suppose u want to pageup and page down into the bms screen , for that wat u wud do into the cics application program?

Bank Of America, Cap Gemini, IBM, RBS,

1 CICS 13035




Answers / { manish }

Question { 8051 }

What CICS command would you use to read a VSAM KSDS
sequentially in ascending order?


Answer

sequential access of VSAM file under CICS is
called "browsing". we 'll use this coomand::

EXEC CICS READNEXT
DATASET(NAME)/FILE(NAME)
INTO(DATA-AREA)
LENGTH(DATA-VALUE)
RIDFLD(DATA-AREA)
END-EXEC.
the READNEXT command is used to read a record of afile
sequentially forward .the STARTBR must ve been succesfully
completed prior to issuing the READNEXT command.

Is This Answer Correct ?    6 Yes 2 No

Question { IBM, 5018 }

What is the CICS command that is used to copy a screen
image of a terminal into another terminal?


Answer

EXEC CICS ISSUE COPY
TERMID(terminal-id)

END-EXEC

Is This Answer Correct ?    2 Yes 0 No


Question { IBM, 10589 }

Why is it important not to execute a STOP RUN in CICS ?


Answer

now we can use STOP RUN in CICS apllication program. becoz
improvements by VS COBOL II provides a much better
interface to CICS than VS / COBOL .

STOP RUN : CONTROL WILL BE RETURNED TO CICS.

Is This Answer Correct ?    2 Yes 1 No