Can anybody tell me that why we use option(*nodebugio)in H-
Spec?
Answers were Sorted based on User's Feedback
Answer / naru
*NODEBUGIO is used to avoids debugging I/O operation while
using STRDBG command to debug the program.
When *NODEBUGIO is not used, and if a file level opcode is
being debugged, the control would move to the F-Spec and it
will keep executing the steps until the file operation gets
completed and then the control would move to next step.
When *NODEBUGIO is used, and the above mentioned detail is
ignored. The file level opcode would get executed at a
single point execution and the program would move to next
step.
| Is This Answer Correct ? | 61 Yes | 0 No |
Answer / sajied
if u not use then control goes to f spec every time
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / jeet
*NODEBUGIO is used to avoids debugging I/O operation while
you debug the program.
it make fast your debugging.
| Is This Answer Correct ? | 4 Yes | 3 No |
Can a run time array be declare like below with no specified number of elements ? Is it possible ? DFLD_ARRAY 7 DIM() INZ(*blanks) What does this mean ? Does this mean that the number of array elements will be dynamically declared during run time ?
1) How to declare a file? 2) How to define a display file? 3) How to monitor error messages in RPG? 4) How to find the attributes for subfiles? and what is the DDS for subfiles?
write an RPG program to calculate the marks of 5 students (A,B, C, D, E)in 3 different subjects (eng, math, sci) an display on the screen
how to display all the members records in a physical file without using ovrdbf?
Hi, I am getting the error in RPG (All Record Formats for externally-described file ABCD ignored or dropped due to error; file ignored.) Please suggest any
i would like to know under what circumstance the object will get locked on AS400.
How Chain operation copies the record's data to the input buffer for the program?
If my rpg program has a date field, what extra care I have to take while compiling that rpg program? If the file is keyed and I have declared the file as well as key list properly in my program. Still am getting an error message like "chain/reade operation is not allowed" what may be the case?
what happens when sflsiz = sflpag? What are the advantages and disadvantages?
Can any body give the code for this quesition? Using the following details write C-Spec code to set Name to"AMMU LABS SYSTEM" D NAME1 S 10 INZ('AMMU') D NAME2 S 10 INZ('LABS') D NAME3 S 10 INZ('SYSTEM') D NAME S 20
what is overlay? how can we pass parameters in cl or rpg programing? how can we get data area value in cl or rpg programming?
I have a RPG program of 100 Lines and first line is to SETON indicator LR. Will the program execute rest of the 99 Lines?