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