What is the purpose of FRCDTA keyword?
Answers were Sorted based on User's Feedback
Answer / kcsyam
To immediately display a record format, without waiting for
the next input or output/input operation.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / surendra y mudliar
FRCDTA keyword is used for displaying the screen forcefully
without waiting for next output operation.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / bipul kunal
Immediately display a record format without waiting for the next I/O operation.
| Is This Answer Correct ? | 1 Yes | 0 No |
How to handle duplicate error handling in RPG?
Suppose we add one field in physical file and this physical file is used by several programs.how do we know which program is using that file? What are the impact analysis.
How to print Superscript / Subscript from RPG400
HOW TO DEBUG A BATCH JOB WHEN IT IS IN MESSAGEWAIT(MSWG) STATUS.I KNOW THE STEPS FOR BATCH DEBUGGING,BUT IM CONFUSING WITH WHEN WE SUBMIT ANY JOB FOR BATCH DEBUG WE PUT IN HELD STATE.SO HERE ALSO DO SAME THING OR ANY OTHER WAY,PLEASE HELP ME....
what is the equivalent keyword for CHAIN opcode ??
What is the difference between ITER and DO ? I know both are used to execute set of statements repeatedly, but what is the main difference?
how many variables can we declare in cl pgm?
Anybody know the difference of primary file and full procedural file
wat is the difference between dataarea and data queue?
5 Answers Airtel, Four soft, Shahi Exports,
what is the difference between the cpyf command crtdupobj command?
please guys help me,I need to write a program that shows more than one way to display a subfile. Both views are of the same file but sorted differently and show different fields of the same file when the user presses a function key. send me code
can any body correct the following code? Following a procedure which returns the maximum of two numbers.Correct the following code. P GETMAX B D GETMAX PI D NUM1 35 0 D NUM2 45 0 C IF NUM1 > NUM2 C RETURN NUM1 C ELSE C RETURN NUM2 C ENDIF P GETMAX E