Answer Posted / piyush mani
these two options are used in send map command..
like
exec cics send map('map1') mapset('mapset1') from(....)
maponly/dataonly
end-exec.
if we code maponly then only map without any data in fields will b reflected at terminal but in case of dataonly the currend map at terminal will b unchanged only data within field will b updated.....
thanks giv ur feedback...
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What are different data types in cobol?
Which is the default, TEST BEFORE or TEST AFTER for a PERFORM statement?
what are decleratives in cobol?
State the various causes of s0c1, s0c5 and s0c7.
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.
Describe the cobol database components?
What is the difference between PIC 9.99 and PIC9v99?
what is amode(24), amode(31), rmode(24) and rmode(any)?
What are the different types of condition in cobol and write their forms.
Explain how to differentiate call by context by comparing it to other calls?
When is inspect verb is used in cobol?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
What are declaratives and what are their uses in cobol?
Name the divisions, which are available in a cobol program?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?