IN RLU what are the record level keyword is used?
Answers were Sorted based on User's Feedback
Answer / kalaivanan
SKIPA and SKIPB both record level keyword we have used.
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / ermohit007
SPACEA SPACEB record level keywords I have used.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / diegorroba
more communs rlu level keywords are UNDERLINE , HIGHLIGHT, SKIPA / B, SPACEA / B, FONT, etc
link to see more http://publibfp.dhe.ibm.com/cgi-bin/bookmgr/FRAMESET/qbka0702/A.2.31?SHELF=&DT=19931217155222
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / raghupathireddy
Use RLU line commands and function keys to define Record
Formats and Fields within record formats. While defining
record format, record format name and record level keywords
can be specified. While defining a field, field name, type,
length, position and field level keywords can be specified
| Is This Answer Correct ? | 5 Yes | 6 No |
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
What is the purpose of PUTOVR keyword?
How can you delete a record from a file in RPG without using DELETE oppcode?
I am Submitting one job in batch that job calls three progams(PGMA, PGMB, PGMC). PGMB should be called after sucessfully completion of PGMA as like for PGMC also. So Can you please tell me how can we do that (without using data area)
In ProgramB there is a SBMJOB, which is a call to program C .There is also a CALL to program D from B. How would you check the program C has been executed in D?
WHAT IS MEANT BY SIGNATURE VAILOTION ERROR
1.Suppose my file has 10 fields and I want to make the 2nd field Zeros in all records. And assume I have millions of records and I dont want to read each record and update the desired field with 0. Any other way to do this in one step operation? 2. Assume my file has 100 records and I want to see only first 10 records. Is this possible through LF? 3.I have 3 jobs A B and C. I want to submit B after successful completion of A and want to submit C after successful completion of B. Without using job scheduler or job queue, how can i do that through CL program? 4.What is difference between Bind by copy and bind by reference?
Suppose i am having 3 programs PgmA,pgmB,pgmC and using source debugger. At debugging time i found that pgmC having some code error..then in debug mode directly how can i debug pgmC
we are sending data of physical file to screen design and it is showing no record why?
What will be the value of STRING after line 0106 is executed in the code below? 0101 E* Fromfiletofile..tabnameprnentlenpdatabnamlenpda 0102 E ARR 8 1 0103 ISTRING DS 0104 I 1 8 ARR 0105 C MOVE *BLANK STRING 0106 C MOVEA'ABC' ARR A) 'AAAAAAAA' B) 'BBBBBBBB' C) 'CCCCCCCC' D) 'ABC ' E) ' ABC'
i hav 2 logical files(L1,L2) both r derived from one physical file(P1). how can i use both the logical files in one RPG program? if yes what i have to d.
A rpg or clp command to find if the file field is defined as a character or numeric field.