Install Other Vendor RDML Built-In Functions (IBM i only)

Restore objects from save media to QTEMP.

Create duplicate objects of any Built-In Function objects from library QTEMP to your Built-In Function library. For example:

     CRTDUPOBJ OBJ(@OV_nnn*)
    FROMLIB(QTEMP)
     OBJTYPE(*PGM)
    TOLIB(<bif pgms>)

where

<bif pgms> = the library where the Built-In Function objects are stored

Copy all records from DC@F47 and DC@F48 from QTEMP to the LANSA Program Library version of these files.

For example:

     CPYF FROMFILE(QTEMP/DC@F47)
    TOFILE(<pgmlib>/DC@F47)
    MBROPT(*ADD)
CPYF FROMFILE(QTEMP/DC@F48)
    TOFILE(<pgmlib>/DC@F48)
    MBROPT(*ADD)

where

<pgmlib> = LANSA Program Library

  • No labels