DataCompositionAvailableSettingsSource.Based on URL
Syntax:
Parameters:
<URL> (required)
A URL where the data composition schema can be obtained.
It can be a table record field URL or a temporary storage URL.
<FunctionalOptionParameters> (optional)
Contains functional option parameters used for generating available fields.
Default value: Undefined.
Description:
Example:
Example 1: // Create an URL for the DataCompositionSchema field for the CatalogObject.Ref reference SchemeURL = GetURL(CatalogObject.Ref, "DataCompositionSchema"); // Create a source AvailableSettingsSource = New DataCompositionAvailableSettingsSource(SchemeURL); Example 2: // Put the schema into the temporary storage SchemeURL = PutToTempStorage(ValueStorage); // Create a source AvailableSettingsSource = New DataCompositionAvailableSettingsSource(SchemeURL); |