Can you use occurs in bms map?
Answer / Nishu Sharma
Yes, OCCURS is a CICS BMS (Basic Mapping Support) statement that can be used to define a variable within a BMS map. The OCCURS statement allows you to specify the length of the variable and its data type.nnFor example:nn 01 WORK-AREA. PIC X(80).n 02 WORK-AREA-2 OCCURS 5 TIMES POINTER TO WORK-AREA-PTR.nIn this example, the variable WORK-AREA is defined to be 80 characters long and of type X (hexadecimal). The variable WORK-AREA-2 is defined as an array of five occurrences of WORK-AREA, with each occurrence pointed to by a pointer variable called WORK-AREA-PTR.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is meant by pseudo-conversation?
What is the EIB parameter and the CICS command used to implement Pseudo-Conversational technique using single PCT ? Single PPT entry?
Specify the CICS command used to read a VSAM record starting with prefix ?F?. Code all the relevant options.
Which is the CICS control program which governs the flow of control among the CICS application
What is the meaning of the SYNCPOINT command?
why we code ACCUM parameter in cics send time
Which is the control table where you specify all the transaction that are to be started by CICS after CICS
How to establish dynamic cursor position on a map?
If TDQs are selfdestructive then why they are used? AND Why TSQs are preferred over TDQs?
The READ command with INTO option will read the record specified into the data area specified (True or False)
whar is the difference bwn LINK() and XCTL()?
7 Answers Cap Gemini, CGI, IBM,
How many ways are there for initiating a transaction? what are they?