01. GENERAL DATA

Product:

TOTVS Backoffice

Product Line:

Protheus Line

Industry:

Services

Module:

TOTVS Backoffice (Protheus Line) - Fixed Assets (SIGAATF)

Function:

ATFA125

Country:

Brazil

Ticket:

Internal

Requisite/Story/Issue

DSERCTR1-46030

02. DESCRIPTION

Entry point for handling e-mails to receive the transfer activation/denial notice.

03. OTHER INFORMATION


Handling of EP in the system
If ExistBlock( "A125EMRT" )
	cEmailRet := ExecBlock( "A125EMRT", .F., .F., { cEmailUsr, cCodSol } )      //Return e-mail list for approval feedback
							
	If	ValType( cEmailRet ) == "C"
		cEmailUsr := cEmailRet
	EndIf
							
EndIf
EP Example
User Function A125EMRT()

    // E-mail of requester and request code
    Local cEmailUsr := PARAMIXB[1]
    Local cCodSol := PARAMIXB[2]
   
    // Check the return and send an e-mail to specific recipients
    If ValType(cEmailUsr) == "C"
		
		//customer validation

    EndIf
    
Return cEmailUsr

Important !!

  • 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.

04. RELATED SUBJECTS

  • Not Applicable.