How can you check the existence of object in a system?
Answer / nitin trivedi
With the help of CHKOBJ clp command, we can find existence of object on the system.
The usage of command in clp is as follows:
CHKOBJ OBJ(JBA001DT) OBJTYPE(*DTAARA)
MONMSG MSGID(CPF9801) EXEC(DO)
CRTDTAARA DTAARA(QGPL/JBA001DT) TYPE(*CHAR) LEN(6) +
VALUE('010196') TEXT('The last day that had job acct.+ data extracted')
ENDDO
RTVDTAARA DTAARA(JBA001DT *ALL) RTNVAR (&FROMDATE)
The execution of above steps is listed below:
steps
1: First it checks the data area object on the system.
2: If the data area object not found, the MONMSG command executes with the help of message identifier, next we can dynamically create the data area.
3. If the data area object found, control transfers to statement below ENDDO.
It is always good CLP programming approach to check the object before you rename, delete the objects on the system.
| Is This Answer Correct ? | 0 Yes | 0 No |
How do you set the keywords SFLSIZ and SFLPAG if you want the subfile to dynamically expand?
What is Multi-format logical file?
WHAT IS DECIMAL DATA ERROR IN RPG IV...WHEN WILL IT HAPPENS?
how does union file maintains record formats?
what is the maximum number of subroutines allowed in rpg?
define the purpose of the *bcat function?
What is the purpose of "A CSRLOC (F1ROW F1COL)"?
1.What is the difference between regular join logical file and non join logical file? 2.what are the nessasary keywords for non join logical file
For AS/400 Freshers good website is
how can see logical file based on which physical file and vice versa
WHAT is STORED PROCEDURE CONCEPT IN AS400 WITH EXAMPLE?
we have 2 PF files with same name, how to copy data's from one file to another through RPG program logic?