Name the macros used to define the following: MAP MAPSET
FIELD
Answers were Sorted based on User's Feedback
Answer / guest
Mapset Definition: DFHMSD
Map Definition: DFHMDI
Map Field Definition: DFHMDF
| Is This Answer Correct ? | 11 Yes | 0 No |
what is psuedo conversation?
What CICS command would you use to read a VSAM KSDS sequentially in ascending order?
what is the option to be coded on return to associate a transaction identifier with next terminal.
What are the two ways of breaking a CPU bound process to allow other tasks to gain access to CPU.
explain the means of supporting pseudo conversation programming. (Eg. Storing and restoring of states, control flow, error handling)?
What is multitasking and multithreading?
Generally we check EIBALEN = 0 to decide whether first call or not. If I do not pass any value in the COMMAREA then EIBCALEN will be 0 even on second call. Now how can we say the program is called for the first time or second time?
What is meant by a ‘Transid’ ?
How do you delete Item 3 in a five-item TSQ?
How can we initiate a transaction from batch?
where we can declare the files in fct and pct and ppt and rct pls give clear structure
I just want to ask why does the variable I passed in a dclgen of sql that has a data type of varchar which has a maximum length is 250 is truncated,, Here is the code.. DCLGEN of rsauud01 table 01 dataarea 43 data-area-len pic s9(4). 43 data-area-text pic x(250). MYVARIABLE. 01 DATAAREA1 pic x(250). move 250 to data-area-len of dataarea of rsauud01 MOVE DATA-AREA1 TO data-area-text of dataarea of rsauud01 --- but it is always trucated everytime I insert it in the table by the way it is a cobol-cics program