Hello.
I created the documents sequence with one dimension. When I try to get or set boundaries of this sequence I get the following errors:
1) The most strange:
| Code |
|---|
{.Form.Secuencia.Form(105)}: Error calling context method (GetBounds)
Bounds = Sequences.Contabilidad.GetBounds("Empresa");
because:
Invalid parameter value (parameter number '2') |
But according to documentation the 2nd parameter of the method GetBounds is optional
2) This code is also fails with the same error:
| Code |
|---|
Filter = New Structure ("Empresa");
Filter.Insert("Empresa", Ref);
Sequences.Contabilidad.SetBound(Period, Filter);
|
What i'm doing wrong?