I need to generate outfile for object of all the user lib.
in the sysmte using cmd DSPOBJD.
But this cmd is correcpted in my server,Any body tell me is
there any alternative...?
Answers were Sorted based on User's Feedback
Answer / syam
Yes, you can use this command
WRKOBJ OBJ(*ALL) OBJTYPE(*LIB)
then
Option 8 = Display description
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / sudhir
You can use the above command, but you will have to write
each object individualy to an outfile..Pain...
This is a system command..so check with IBM. They could be
able to fix it..
| Is This Answer Correct ? | 0 Yes | 2 No |
i 'm new to as/400.in an interview i was asked this question.give a practical example for passing information or data through local data area. I know only that data area is an object used to store tiny bits of data or it can store one value at a time and it is used to store frequently changing values or datas.thats all i know about data area can any one tell me how local data area and user defined data area are used to pass data between jobs with a example or coding.thanks in advance.
how can we find setll setgt chain read reade readp operations are successfull or not,give example.explain in detail.
Suppose 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?
How to update physical file in rpgle without using display file?
what is the necessary keyword needed to scroll subfile records?
Anybody can explain the difference between SFLCLR & SFLINZ?
if there is a module object , how to find the program object for this module object.Assume the module object name and program object name is not same.
why subproc not run in dftactgrp?????/plz explain
how can an indexed file be used as arrival sequence in RPG?
I have file with data as follows data 1 2 3 4 5 I need to read 1 and 5 ,then 2 and 4 then like.. upto end of file, can any one help on this
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
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??