SAP Function Modules

463EVAL_A_FAZ SAP Function module - Brutto / Netto / CVaR. Dies ist die OBERSTE STUFE (entry-point).







463EVAL_A_FAZ 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 463EVAL_A_FAZ into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: 463EVAL_FAZ_FLOW_CONTROL
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM 463EVAL_A_FAZ - 463EVAL A FAZ





CALL FUNCTION '463EVAL_A_FAZ' "Brutto / Netto / CVaR. Dies ist die OBERSTE STUFE (entry-point).
  EXPORTING
    i_datum =                   " sy-datum      Stichtag der Berechnung
    i_faz =                     " fzp_deal_typ  Externe Zusage der Fazilität
    i_flow_ctrl =               " fzfc_flow_ctrl  Steuerungsparameter fuer die Faz-AB-ERmittlung
    i_deal_econ_collat_tab =    " fzp_collat_tab  Die WIRTSCHaftlichen EG-Sicherheiten
    i_deal_pol_collat_tab =     " fzp_collat_tab  Die POLitischen EG-Sicherheiten
    i_faz_econ_collat_raw_tab =   " fzp_collat_tab  Die rohen WIRTSCH. FAZ_Sicherheiten
    i_faz_pol_collat_raw_tab =   " fzp_collat_tab  Die rohen POL. FAZ_Sicherheiten
    i_deal_gros_tab =           " fzp_deal_tab  Brutto-AB der Faz-EG
    i_deal_net_econ_tab =       " fzp_deal_tab  Netto-AB der Faz-EG, nachwirtsch. Sicherh
    i_deal_net_pol_tab =        " fzp_deal_tab  Netto-AB der Faz-EG, nach pol. Sicherh.
  IMPORTING
    e_gros_faz_pge =            " fzp_deal_typ  FAZ Primary Gros Exposure
    e_gros_faz_sge_collat_tab =   " fzp_collat_tab  FAZ Secondary Gros Exposure
    e_net_deal_pne_tab =        " fzp_deal_tab  EG Final Primary Net Exposure of FAZ-Deals
    e_net_faz_sne_collat_tab =   " fzp_collat_tab  FAZ Secondary Net-Exposure
    e_net_faz_pne =             " fzp_deal_typ  FAZ Primary Net-Exposure
    .  "  463EVAL_A_FAZ

ABAP code example for Function Module 463EVAL_A_FAZ





The ABAP code below is a full code listing to execute function module 463EVAL_A_FAZ 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).

DATA:
ld_e_gros_faz_pge  TYPE FZP_DEAL_TYP ,
ld_e_gros_faz_sge_collat_tab  TYPE FZP_COLLAT_TAB ,
ld_e_net_deal_pne_tab  TYPE FZP_DEAL_TAB ,
ld_e_net_faz_sne_collat_tab  TYPE FZP_COLLAT_TAB ,
ld_e_net_faz_pne  TYPE FZP_DEAL_TYP .

DATA(ld_i_datum) = '20210129'.
DATA(ld_i_faz) = '20210129'.
DATA(ld_i_flow_ctrl) = '20210129'.
DATA(ld_i_deal_econ_collat_tab) = '20210129'.
DATA(ld_i_deal_pol_collat_tab) = '20210129'.
DATA(ld_i_faz_econ_collat_raw_tab) = '20210129'.
DATA(ld_i_faz_pol_collat_raw_tab) = '20210129'.
DATA(ld_i_deal_gros_tab) = '20210129'.
DATA(ld_i_deal_net_econ_tab) = '20210129'.
DATA(ld_i_deal_net_pol_tab) = '20210129'. . CALL FUNCTION '463EVAL_A_FAZ' EXPORTING i_datum = ld_i_datum i_faz = ld_i_faz i_flow_ctrl = ld_i_flow_ctrl i_deal_econ_collat_tab = ld_i_deal_econ_collat_tab i_deal_pol_collat_tab = ld_i_deal_pol_collat_tab i_faz_econ_collat_raw_tab = ld_i_faz_econ_collat_raw_tab i_faz_pol_collat_raw_tab = ld_i_faz_pol_collat_raw_tab i_deal_gros_tab = ld_i_deal_gros_tab i_deal_net_econ_tab = ld_i_deal_net_econ_tab i_deal_net_pol_tab = ld_i_deal_net_pol_tab IMPORTING e_gros_faz_pge = ld_e_gros_faz_pge e_gros_faz_sge_collat_tab = ld_e_gros_faz_sge_collat_tab e_net_deal_pne_tab = ld_e_net_deal_pne_tab e_net_faz_sne_collat_tab = ld_e_net_faz_sne_collat_tab e_net_faz_pne = ld_e_net_faz_pne . " 463EVAL_A_FAZ
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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_gros_faz_pge  TYPE FZP_DEAL_TYP ,
ld_i_datum  TYPE SY-DATUM ,
ld_e_gros_faz_sge_collat_tab  TYPE FZP_COLLAT_TAB ,
ld_i_faz  TYPE FZP_DEAL_TYP ,
ld_e_net_deal_pne_tab  TYPE FZP_DEAL_TAB ,
ld_i_flow_ctrl  TYPE FZFC_FLOW_CTRL ,
ld_e_net_faz_sne_collat_tab  TYPE FZP_COLLAT_TAB ,
ld_i_deal_econ_collat_tab  TYPE FZP_COLLAT_TAB ,
ld_e_net_faz_pne  TYPE FZP_DEAL_TYP ,
ld_i_deal_pol_collat_tab  TYPE FZP_COLLAT_TAB ,
ld_i_faz_econ_collat_raw_tab  TYPE FZP_COLLAT_TAB ,
ld_i_faz_pol_collat_raw_tab  TYPE FZP_COLLAT_TAB ,
ld_i_deal_gros_tab  TYPE FZP_DEAL_TAB ,
ld_i_deal_net_econ_tab  TYPE FZP_DEAL_TAB ,
ld_i_deal_net_pol_tab  TYPE FZP_DEAL_TAB .

ld_i_datum = '20210129'.
ld_i_faz = '20210129'.
ld_i_flow_ctrl = '20210129'.
ld_i_deal_econ_collat_tab = '20210129'.
ld_i_deal_pol_collat_tab = '20210129'.
ld_i_faz_econ_collat_raw_tab = '20210129'.
ld_i_faz_pol_collat_raw_tab = '20210129'.
ld_i_deal_gros_tab = '20210129'.
ld_i_deal_net_econ_tab = '20210129'.
ld_i_deal_net_pol_tab = '20210129'.

Contribute (Add Comments)

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 463EVAL_A_FAZ or its description.