Páginas filhas
  • AF012CHP - Validation of "Registration Number" field in the Fixed Assets module.

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

01. GENERAL DATA

  • Product Line: Microsiga Protheus®
  • Segment: Backoffice
  • Module: SIGACTB
  • Function: ATFA012
  • Name of Entry Point: AF012CHP
  • Type: Entry Point (Executable Block)
  • Purpose: To customize the validation and handling of the "Registration Number" field in the module related to fixed assets.

02. DESCRIPTION

Entry Point AF012CHP() allows developers to customize the process of validation and handling of a fixed asset's registration number. It offers flexibility to adapt the logic of checking for registration numbers in the system, whether to avoid duplicities, configure editing permissions or implement specific business rules. If the executable block (ExecBlock) is set, it will be called for changing the system behavior as needed.

03. PARAMETERS 

  • nChapa: Fixed asset registration number.
  • lRepChapa: Enter whether to repeat or replace the registration number (optional).

04. RETURN

  • Main Return:
    • A logical value (.T. Or .f.) indicating the success or failure of validation.

               If you do not set the entry point, the default logic is applied to validate the registration number and prevent duplicate records in the system.

05. EXAMPLE

Bloco de código
languagecpp
themeRDark
titleHandling of EP in the system
If ExistBlock("AF012CHP")
	lRet := ExecBlock("AF012CHP",.F.,.F.,{nChapa,lRepChapa})
	lRet := If(ValType(lRet) == "L",lRet,.F.)
EndIf
Bloco de código
languagecpp
themeRDark
titleEP Example
User Function AF012CHP()

    Local nChapa:= PARAMIXB[1]
    Local lRepChapa := PARAMIXB[2]
	Local lRet := .F.

    // Customized validation example 
    If nChapa == 1000
        lRet:=.T.
    EndIf

Return ( lRet )