Product: | TOTVS Backoffice |
Product Line: | Protheus Line |
Industry: | Services |
Module: | TOTVS Backoffice (Protheus Line) - Fixed Assets (SIGAATF) |
Function: | ATFA126 |
Country: | Brazil |
Ticket: | Internal |
Requisite/Story/Issue | DSERCTR1-46748 |
You can use the entry point ATF126GRV to handle data after saving the information, allowing additional adjustments soon after the record saving process in the system. It allows implementing a customized logic, offering the customer flexibility to adapt the post-saving behavior to meet specific business needs.
With ATF126GRV, you can edit recently saved records, update other related tables, or run additional routines that ensure data consistency and integrity after completing the saving process. This entry point is essential to companies that need a detailed control of data flow, ensuring that business rules are duly followed.
ExecBlock("ATF126GRV",.F.,.F.,{NOPC})
User function ATF126GRV() Local nOpc := PARAMIXB1 if nOpc = 3 MSGAlert("Entry point executed at the moment of approval") Elseif nOpc = 4 MSGAlert("Entry point executed at the moment of rejection") EndIf Return
EP Example