SAP 463EVAL_FAZ_GROS Function Module for PRRW & SRA
463EVAL_FAZ_GROS is a standard 463eval faz gros SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for PRRW & SRA processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for 463eval faz gros FM, simply by entering the name 463EVAL_FAZ_GROS into the relevant SAP transaction such as SE37 or SE38.
Function Group: 463EVAL_FAZ_FLOW_CONTROL
Program Name: SAPL463EVAL_FAZ_FLOW_CONTROL
Main Program: SAPL463EVAL_FAZ_FLOW_CONTROL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function 463EVAL_FAZ_GROS pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION '463EVAL_FAZ_GROS'"PRRW & SRA.
EXPORTING
I_DATUM = "Stichtag der Berechnung
I_FAZ = "Die Fazilität (Externe Zusage)
I_FLOW_CTRL = "Steuerungsparameter fuer die Faz-AB-ERmittlung
I_DEAL_ECON_COLLAT_TAB = "Die WIRTSCHaftlichen Sicherheiten der EG's unterhalb der FAZ
I_DEAL_POL_COLLAT_TAB = "Die POLitischen Sicherheiten der EG's unterhalb der FAZ
IMPORTING
E_FAZ_PGE = "Das Primäre Brutto-Exposure (Primary Gros Exp)
E_FAZ_SGE_COLLAT_TAB = "Das ausgewiesene SGE der Faz
E_FAZ_POL_COLLAT_TAB = "Das politische SGE der Faz-Sicherheiten
E_FAZ_ECON_COLLAT_TAB = "Das wirtschaftliche SGE der Faz
CHANGING
C_DEAL_TAB = "Die Brutto-Exposures der EG'S
C_FAZ_ECON_COLLAT_RAW_TAB = "Die wirtschaftlichen EG-Sicherheiten
C_FAZ_POL_COLLAT_RAW_TAB = "Die politischen EG-Sicherheiten
IMPORTING Parameters details for 463EVAL_FAZ_GROS
I_DATUM - Stichtag der Berechnung
Data type: SY-DATUMOptional: No
Call by Reference: Yes
I_FAZ - Die Fazilität (Externe Zusage)
Data type: FZP_DEAL_TYPOptional: No
Call by Reference: Yes
I_FLOW_CTRL - Steuerungsparameter fuer die Faz-AB-ERmittlung
Data type: FZFC_FLOW_CTRLOptional: No
Call by Reference: Yes
I_DEAL_ECON_COLLAT_TAB - Die WIRTSCHaftlichen Sicherheiten der EG's unterhalb der FAZ
Data type: FZP_COLLAT_TABOptional: No
Call by Reference: Yes
I_DEAL_POL_COLLAT_TAB - Die POLitischen Sicherheiten der EG's unterhalb der FAZ
Data type: FZP_COLLAT_TABOptional: No
Call by Reference: Yes
EXPORTING Parameters details for 463EVAL_FAZ_GROS
E_FAZ_PGE - Das Primäre Brutto-Exposure (Primary Gros Exp)
Data type: FZP_DEAL_TYPOptional: No
Call by Reference: Yes
E_FAZ_SGE_COLLAT_TAB - Das ausgewiesene SGE der Faz
Data type: FZP_COLLAT_TABOptional: No
Call by Reference: Yes
E_FAZ_POL_COLLAT_TAB - Das politische SGE der Faz-Sicherheiten
Data type: FZP_COLLAT_TABOptional: No
Call by Reference: Yes
E_FAZ_ECON_COLLAT_TAB - Das wirtschaftliche SGE der Faz
Data type: FZP_COLLAT_TABOptional: No
Call by Reference: Yes
CHANGING Parameters details for 463EVAL_FAZ_GROS
C_DEAL_TAB - Die Brutto-Exposures der EG'S
Data type: FZP_DEAL_TABOptional: No
Call by Reference: Yes
C_FAZ_ECON_COLLAT_RAW_TAB - Die wirtschaftlichen EG-Sicherheiten
Data type: FZP_COLLAT_TABOptional: No
Call by Reference: Yes
C_FAZ_POL_COLLAT_RAW_TAB - Die politischen EG-Sicherheiten
Data type: FZP_COLLAT_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for 463EVAL_FAZ_GROS Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_i_datum | TYPE SY-DATUM, " | |||
| lv_e_faz_pge | TYPE FZP_DEAL_TYP, " | |||
| lv_c_deal_tab | TYPE FZP_DEAL_TAB, " | |||
| lv_i_faz | TYPE FZP_DEAL_TYP, " | |||
| lv_e_faz_sge_collat_tab | TYPE FZP_COLLAT_TAB, " | |||
| lv_c_faz_econ_collat_raw_tab | TYPE FZP_COLLAT_TAB, " | |||
| lv_i_flow_ctrl | TYPE FZFC_FLOW_CTRL, " | |||
| lv_e_faz_pol_collat_tab | TYPE FZP_COLLAT_TAB, " | |||
| lv_c_faz_pol_collat_raw_tab | TYPE FZP_COLLAT_TAB, " | |||
| lv_e_faz_econ_collat_tab | TYPE FZP_COLLAT_TAB, " | |||
| lv_i_deal_econ_collat_tab | TYPE FZP_COLLAT_TAB, " | |||
| lv_i_deal_pol_collat_tab | TYPE FZP_COLLAT_TAB. " |
|   CALL FUNCTION '463EVAL_FAZ_GROS' "PRRW & SRA |
| EXPORTING | ||
| I_DATUM | = lv_i_datum | |
| I_FAZ | = lv_i_faz | |
| I_FLOW_CTRL | = lv_i_flow_ctrl | |
| I_DEAL_ECON_COLLAT_TAB | = lv_i_deal_econ_collat_tab | |
| I_DEAL_POL_COLLAT_TAB | = lv_i_deal_pol_collat_tab | |
| IMPORTING | ||
| E_FAZ_PGE | = lv_e_faz_pge | |
| E_FAZ_SGE_COLLAT_TAB | = lv_e_faz_sge_collat_tab | |
| E_FAZ_POL_COLLAT_TAB | = lv_e_faz_pol_collat_tab | |
| E_FAZ_ECON_COLLAT_TAB | = lv_e_faz_econ_collat_tab | |
| CHANGING | ||
| C_DEAL_TAB | = lv_c_deal_tab | |
| C_FAZ_ECON_COLLAT_RAW_TAB | = lv_c_faz_econ_collat_raw_tab | |
| C_FAZ_POL_COLLAT_RAW_TAB | = lv_c_faz_pol_collat_raw_tab | |
| . " 463EVAL_FAZ_GROS | ||
ABAP code using 7.40 inline data declarations to call FM 463EVAL_FAZ_GROS
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single DATUM FROM SY INTO @DATA(ld_i_datum). | ||||
Search for further information about these or an SAP related objects