01. GENERAL DATA

Product:

TOTVS Backoffice

Product Line:

Protheus Line

Segment:

Services

Module:

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

Function:

CTBA130

Country:

Brazil

Ticket:

Internal

Requisite/Story/Issue

DSERCTR1-46829

02. DESCRIPTION

The entry point CTSETBUT allows for the inclusion of additional buttons in the Set Of Books registration screen. This entry point is used to customize the screen interface, providing extra functionalities according to the user's specific needs.

03. OTHER INFORMATION


Entry Point (EP) manipulation in the system
IF ExistBlock( "CTSETBUT" )
	aCTBA130 := ExecBlock( "CTSETBUT",.F.,.F.,aRotina)
	IF ValType(aCTBA130) == "A" .AND. Len(aCTBA130) > 0
		FOR nX := 1 to len(aCTBA130)
			aAdd(aRotina, aCTBA130[nX])
		NEXT
	ENDIF
ENDIF
EP Example
User Function CTSETBUT

	Local aRotina := PARAMIXB[1]
	Local aRotinaAux := {}   
	aAdd( aRotinaAux , { "EJEMPLO","U_EXEMPLO()", 0 , 4})  //"EJEMPLO"

Return  aRotinaAux 


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