Product: | TOTVS Backoffice |
Product Line: | Protheus Line |
Industry: | Technology |
Module: | TOTVS Backoffice (Protheus Line) - Fixed Assets (SIGAATF) |
Function: | ATFA060 |
Country: | Brazil |
Ticket: | Internal |
Requisite/Story/Issue | DSERCTR1-46829 |
The entry point for adding buttons to the Asset Transfer routine allows adding a custom button to the asset transfer interface. The user may configure this button to execute specific functions depending on their needs, such run additional processes, perform specific validations, or display supplemental data related to the transfer.
This entry point provides flexibility to expand the features of the transfer routine, integrating actions that enhance the user experience and facilitate specific operations directly on the system’s screen.
If ExistBlock("AF060BUT")
aRotNew := ExecBlock("AF060BUT",.F.,.F.,{aRot})
For nX := 1 To len(aRotNew)
aAdd(aRot,aRotNew[nX])
Next
EndIf |
User Function AF060BUT()
Local aRotX := PARAMIXB[1]
aRotX := {{"BOTÃO AF060BUT","U_Af060ts1",0,2}}
Return(aRotX)
User function Af060ts1()
MsgAlert("Entry Poing Call AF060BUT")
Return |
It is noteworthy that the customer is responsible for EP utilization and its impacts on the system. The examples used in this documentation are for demonstration purposes only. Each customer must check what behavior they want to perform according to the scope of the entry point. |