GetOutputDocs method: Business Interlink class
Syntax
GetOutputDocs("")
Description
The GetOutputDocs method gets the top output document at the root level for a Business Interlink object. This is a hierarchical structure that contains the values for the outputs for this Business Interlink object. The methods that you use to get output values from this document are the hierarchical data methods.
Parameters
A null string.
Returns
An output document. This is the document at the top of the root level of the output document for a Business Interlink object.
Example
Local Interlink &QE_COST;
Local BIDocs &CalcCostIn, &CalcCostOut;
&QE_COST = GetInterlink(Interlink.QE_COST_EX);
&CalcCostOut = &QE_COST.GetOutputDocs("");
/* You can now execute the Business Interlink object and get the output values. */
Related Topics