SAS Institute. The Power to Know

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

Previous Page | Next Page

Publishing Packages

RETRIEVE_REF



Retrieves a reference from a package
Syntax
Arguments
Example

Syntax

CALL RETRIEVE_REF(entryId, referenceType, reference, rc);

Arguments

entryId

identifies the reference entry to be retrieved.

Type: Numeric
Direction: Input
referenceType

returns the type of the reference, the value of which can be HTML or URL.

Type: Character
Direction: Output
reference

returns the value of the reference.

Type: Character
Direction: Output
rc

receives a return code.

Type: Numeric
Direction: Output

Example

The following example retrieves a reference entry from a package.

refType='';
ref='';
CALL RETRIEVE_REF(rid, refType, ref, rc);

Previous Page | Next Page | Top of Page