Publish Package Interface |
Retrieves a financial database entry from a package.
CALL RETRIEVE_FDB(entryId, libname, memname, rc);
If the memname
parameter is blank, the RETRIEVE_FDB CALL routine
creates the FDB using the original member name as it was defined at publish time.
The following example retrieves an FDB entry WORK.OUTDATA from the package.
lib = 'work'; mem = 'outdata'; CALL RETRIEVE_FDB(entryId, lib, mem, rc);
Publish Package Interface |