Hello. This parameter can take an array. If you need to use it in data composition scheme you can tick the flag "List of values is available" on the page "Parameters" of scheme.
In the code I use the function like this:
| Code |
|---|
Function GetExtDimensions(ExtDimDesctiption)
Struct = New Structure(ExtDimDescription);
Result = New Array;
For Each Elem In Struct Do
Result.Add(ChartsOfCharacteristicTypes.ExtDimensionsTypes[Elem.Key]);
EndDo;
Return Result;
EndFunction |
You can use it like this:
| Code |
|---|
Query.SetParameter("ExtDim", GetExtDimensions("Stock,Nomenclatura")); |