1.What is the Maximum field length we can declare in RLU??
2. What is the difference if your designing RLU using DDS
and using the option 19 for the RLU??
Answers were Sorted based on User's Feedback
Answer / ravi shankar porwal
1.Length of field defined in RLU may be in the following
range:
Alphanumeric field - 1-378
Numeric field - 1-31
2.when u use option 19 then u have to use the commond line
to design the screen. commonds like -
DR,CL,SD,VF,NP,DC,DF,CF,SP etc. and some basic function
keys to perform the operations.
whereas if u code through DDS(use option 2) then u can code
through the commond IPDP and can perform the operations by
specifying the appropriate keywords.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / rahul chaudhari
Alphanumeric field - 1-255 ,I dont know about
Numeric.......
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the procedure and explain about real time scenario.
0 Answers Adhoc Technologies, Hanuman Automation, HSBC, IBM,
How to read data from Nth member of a physical file containing some X number of members in it? "Provided member names are unknown"
How to print output from openquery in as400 ?
Q:HI friends accually ihave one problem plesase let me know the alternate code of this code. Related field description of code: Add a field, CALvsPRD, "Calendar Day Starts Before/After Production Day" to the parameter set WRKORDER which accepts values 'A' or 'B' o B = Calendar Day Starts Before Production Day o A = Calendar Day Starts After Production Day o Any other value indicates the production and calendar dates are always the same. code: Automatic Execution Of *INZSR Subroutine /Z01 * retrieves WRKORDER field values. /Z01 * Calculate default Production Date and return it to caller. /Z01 * Production date defaults to system date /Z01 C Eval P@Pdate = %DATE() /Z01 * unless Calendar date starts Before PDN(production) date and /Z01 * system time is before PDN Start Time then /Z01 * PDN date is yesterday. /Z01 C If W@CALvsPRD = 'B' and /Z01 C %TIME() < %TIME (W@Strtime) /Z01 C Eval P@Pdate -= %Day(1) /Z01 * unless Calendar date starts After PDN date and /Z01 * system time is *GE PDN(production) Start Time then /Z01 * PDN date is tomorrow. /Z01 C ElseIf W@CALvsPRD = 'A' and W@Strtime > *Zero and /Z01 C %TIME() >= %TIME (W@STrtime) /Z01 C Eval P@Pdate += %Day(1) /Z01 C EndIf /Z01 C Eval *InLr = *On
can you debug ile rpg program using isdb?
suppose if we want to update the data in cl what we will do?
How to identify the object has compiled with the debug view as *source without using STRDBG?
can we perform CHAIN operation on Subfile record format....?
how can I tell when to replace the array?
I want to declare the number of elements of an array dynamically in RPGLE ? Is it possible? If yes, then how do I do it ?
If record-format name in an externally-described file has already been defined as a file-name.how to solve this?
Anybody can explain the difference between SFLCLR & SFLINZ?