suppose u want to pageup and page down into the bms
screen , for that wat u wud do into the cics application
program?
Answer / sushree sucharita mohanty
First of all store the entire set of data in a TSQ. now
when the first time the screen is invoked, read the first
set of lines that should appear in the detail lines.
Send MAP with the data.
now, check the PF key of attention identifier invoked,
DFHPF8 - page down, then reneter the program by issuing a
Exec CICS RETURN command invoking the same transaction, and
read the next set of data from TSQ and sending accross to
the screen.
You can define a variable in the Working storage section
which holds the number of data read from TSQ and this can
be passed accross through COMMAREA, which can form the
staring point for reading next set of data from TSQ.
Regards,
Sushree
| Is This Answer Correct ? | 27 Yes | 5 No |
What is BMS?
What does the following transactions do?
What is the different ways to initiate a task?
If TDQs are selfdestructive then why they are used? AND Why TSQs are preferred over TDQs?
Name the three ways available for a program to position the cursor on the screen?
how a data in physical and symbolic map gets treated? Since the physical map is much concerned about the screen alignment and the field positions, how the values entered in the field which has PICIN or PICOUT clause in Physical map gets treated? Does that mean datas recieved or sent to the physical map should be constant? How does the data in Symbolic map gets converted with 5suffix namely F,L,A,I and O. For example EMPNO is treated as EMPNOI, EMPNOO, EMPNOA, EMPNOL and EMPNOF. how does this happen in symbolic map. Please provide your inputs on the above and kindly correct me if I am wrong.
Can you use OCCURS in a BMS map? If you do, what are the issues related with its use?
What are the terms cics generally means?
Explain the difference between using the read command with into option and set option?
how can we differentiate between conventional and pseudo-conventional coding just by seeing cobol code?
Which command is used to release a record on which exclusive control is gained?
For multithreading an application program need not be re- entrant(True or False).