SAS Institute. The Power to Know

SAS(R) 9.2 Publishing Framework: Developer's Guide

Previous Page | Next Page

Publishing Packages

RETRIEVE_FDB



Retrieves a financial database entry from a package
Syntax
Arguments
Details

Syntax

CALL RETRIEVE_FDB(entryId, libname, memname, rc);

Arguments

entryId

identifies the FDB entry.

Type: Numeric
Direction: Input
libname

specifies the SAS library that will contain the retrieved FDB.

Type: Character
Direction: Input
memname

specifies the member name of the retrieved FDB.

Type: Character
Direction: Input
rc

receives a return code.

Type: Numeric
Direction: Output

Details

If the memname parameter is blank, then the RETRIEVE_FDB CALL routine creates the FDB by 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);

Previous Page | Next Page | Top of Page