InformationRegisterRecordSet.<Information register name>.FillCheckProcessing

Syntax:

FillCheckProcessing(<Cancel>, <CheckedAttributes>)

Parameters:

<Cancel>

Type: Boolean.
If this parameter is set to True in the body of the handler procedure, the work will not continue after performing the fill check.
Default value: False.

<CheckedAttributes>

Type: Array.
Array of paths to attributes for which the fill check will be performed. The array can be modified by deleting or adding paths to necessary attributes.

Description:

Is called by a form extension when the fill checking is required for attributes on form write, and also on execution ofCheckFilling method.
Allows the developer to implement fill checking in event handler on his own.
At the same time in this handler it is possible to completely refuse the system processing (by clearing the list of attributes to check), refuse th system check for part of attributes (by checking separate attributes in a special way and deleting them from the list), and also add other attributes to check from those for which check was not specified.
Example:
Procedure FillCheckProcessing(Cancel, CheckedAttributes)
// Inform the platform, that we processed the attribute "Company" fill check by ourselves
CheckedAttributes.Delete(CheckedAttributes.Find("Company"));
For 
Each Transaction In ThisObject Do
    IndexOf = ThisObject.IndexOf(Transaction)
    If 
Not ValueIsFilled(Transaction.Company) Then
        Message = New UserMessage();
        Message.Text = "In line " + IndexOf + " the Company is not specified";
        Message.Field = "[" + IndexOf + "].Company";
        Message.SetData(ThisObject);
        Message.Message();
        Cancel = True;
    EndIf
;
EndDo
;
EndProcedure

See also:

CatalogObject, method CheckFilling

    

1C:Enterprise Developer's Community