01. GENERAL DATA

Product:

TOTVS Backoffice

Product Line:

Protheus Line

Segment:

Technology

Module:

TOTVS Backoffice (Protheus Line) - Managerial Accounting (SIGAFIS)

Function:

CTBA150

Country:

Brazil

Ticket:

Internal

Requisite/Story/Issue

DSERCTR1-46829

02. DESCRIPTION

The entry point CTB150TOK is used to execute validations according to specific user rules.

03. OTHER INFORMATION


Entry Point (EP) manipulation in the system
IF ExistBlock("Ctb150TOk") 
	lRet := ExecBlock( "Ctb150TOk", .F. , .F.,{ dData,lInclui,lExclui }  )
Endif
EP Example
User Function Ctb150TOk()

	Local dData := PARAMIXB[1]
	Local lInclui := PARAMIXB[2]
	Local lExclui := PARAMIXB[3]
	Local lRet := .T.

	MsgAlert(dData)

	If !lExclui .And. !lInclui
		MsgAlert("Content of the variables lInclui and lExclui FALSE")
		lRet := .F.
  	Else
		MsgAlert("Content of the variables lInclui and lExclui are not FALSE")
	EndIf

Return (lRet)


Important!

  • It should be noted that the use of the Entry Point (PE) and its impacts on the system are the customer's responsibility.
  • The examples used in this documentation are for demonstration purposes only; each customer must determine the behavior they wish to implement according to the scope of the entry point.

04. RELATED SUBJECTS

  • N/A