AFODR_LO_CUST_EXIT_CALL is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name AFODR_LO_CUST_EXIT_CALL into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
CFADLO
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'AFODR_LO_CUST_EXIT_CALL' "Ruft User Exit in Ableitung FO - Darlehen
EXPORTING
i_datastr = " rmdr_rmda Analysestruktur
i_step_id = " kedr_id Benutzerdefinierter Identifizierer
i_date = " sy-datum Ableitungsdatum
i_loan = " rmdlo_lo Daten des Darlehens
i_rm_char = " Analysemerkmale in Struktur I75xxxx
i_fob = " rmdr_fob Parameter des Finanzobjekts
i_temp = " rmdr_temp Temporäre Hilfsfelder
IMPORTING
e_rm_char = " Rückgabe: Analysemerkmale in Struktur I75xxxx
e_fob = " rmdr_fob Rückgabe: Parameter des Finanzobjekts
e_temp = " rmdr_temp Rückgabe: Temporäre Hilfsfelder
e_exit_is_active = " rmdr_bool
e_failed = " rmdr_bool
EXCEPTIONS
DERIVATION_FAILED = 1 " Ableitung fehlgeschlagen
. " AFODR_LO_CUST_EXIT_CALL
The ABAP code below is a full code listing to execute function module AFODR_LO_CUST_EXIT_CALL including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| ld_e_rm_char | TYPE STRING , |
| ld_e_fob | TYPE RMDR_FOB , |
| ld_e_temp | TYPE RMDR_TEMP , |
| ld_e_exit_is_active | TYPE RMDR_BOOL , |
| ld_e_failed | TYPE RMDR_BOOL . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_e_rm_char | TYPE STRING , |
| ld_i_datastr | TYPE RMDR_RMDA , |
| ld_e_fob | TYPE RMDR_FOB , |
| ld_i_step_id | TYPE KEDR_ID , |
| ld_e_temp | TYPE RMDR_TEMP , |
| ld_i_date | TYPE SY-DATUM , |
| ld_e_exit_is_active | TYPE RMDR_BOOL , |
| ld_i_loan | TYPE RMDLO_LO , |
| ld_e_failed | TYPE RMDR_BOOL , |
| ld_i_rm_char | TYPE STRING , |
| ld_i_fob | TYPE RMDR_FOB , |
| ld_i_temp | TYPE RMDR_TEMP . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name AFODR_LO_CUST_EXIT_CALL or its description.
AFODR_LO_CUST_EXIT_CALL - Ruft User Exit in Ableitung FO - Darlehen AFODR_INT_ENQUEUE - FO Integration: Lock Settings Maintenance AFODR_INT_CTS_INSERT - Write FO Integration to Transport Request AFODR_INT_CTS_BUILD - FO-Integration: Create Transport List for Settings AFODR_INT_CTS_BDT_INSERT - FO-Integration: Lock the Maintenance of Settings for BDT Transactions AFODR_INT_CTS_BDT_BUILD - FO-Integration: Create Transport List for Settings for BDT Transaction