SAP Function Modules

KL_463FAZ_FLOW_CTRL_GET SAP Function module - Steuerparam. f. die ABE einer FAZ.







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

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


Pattern for FM KL_463FAZ_FLOW_CTRL_GET - KL 463FAZ FLOW CTRL GET





CALL FUNCTION 'KL_463FAZ_FLOW_CTRL_GET' "Steuerparam. f. die ABE einer FAZ.
  EXPORTING
    i_ev_tab =                  " kl2_ev_tab    Tabelle Ermittlungsverfahren
    i_objnr =                   " jbklobj1-objnr  (FAz-) Objektnummer für Finanzgeschäfte
    i_fazdealcol_of_faz_tab =   " klfazdealcol_tab  Tabelle FAZ-Zusatzdaten
    i_arr =                     " kl_defrire    Ausfallrisikoregel
*   i_prot_level = 1            " sprot-level
  IMPORTING
    e_ev_tab =                  " kl2_ev_tab    Tabelle GÜLTIGER Ermittlungsverfahren
  TABLES
    c_erroritab =               " bapierr
  CHANGING
    c_flow_ctrl_tab =           " fazfc_flow_ctrl_tab
    c_faz_deal_col =            " klfazdealcol_tab  Relevante EG- und Sicherheiten-Daten für Faz
    .  "  KL_463FAZ_FLOW_CTRL_GET

ABAP code example for Function Module KL_463FAZ_FLOW_CTRL_GET





The ABAP code below is a full code listing to execute function module KL_463FAZ_FLOW_CTRL_GET 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_ev_tab  TYPE KL2_EV_TAB ,
it_c_erroritab  TYPE STANDARD TABLE OF BAPIERR,"TABLES PARAM
wa_c_erroritab  LIKE LINE OF it_c_erroritab .

DATA(ld_c_flow_ctrl_tab) = 'Check type of data required'.
DATA(ld_c_faz_deal_col) = 'Check type of data required'.
DATA(ld_i_ev_tab) = 'Check type of data required'.

SELECT single OBJNR
FROM JBKLOBJ1
INTO @DATA(ld_i_objnr).

DATA(ld_i_fazdealcol_of_faz_tab) = 'Check type of data required'.
DATA(ld_i_arr) = 'Check type of data required'.

DATA(ld_i_prot_level) = Check type of data required

"populate fields of struture and append to itab
append wa_c_erroritab to it_c_erroritab. . CALL FUNCTION 'KL_463FAZ_FLOW_CTRL_GET' EXPORTING i_ev_tab = ld_i_ev_tab i_objnr = ld_i_objnr i_fazdealcol_of_faz_tab = ld_i_fazdealcol_of_faz_tab i_arr = ld_i_arr * i_prot_level = ld_i_prot_level IMPORTING e_ev_tab = ld_e_ev_tab TABLES c_erroritab = it_c_erroritab CHANGING c_flow_ctrl_tab = ld_c_flow_ctrl_tab c_faz_deal_col = ld_c_faz_deal_col . " KL_463FAZ_FLOW_CTRL_GET
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_c_flow_ctrl_tab  TYPE FAZFC_FLOW_CTRL_TAB ,
ld_e_ev_tab  TYPE KL2_EV_TAB ,
ld_i_ev_tab  TYPE KL2_EV_TAB ,
it_c_erroritab  TYPE STANDARD TABLE OF BAPIERR ,
wa_c_erroritab  LIKE LINE OF it_c_erroritab,
ld_c_faz_deal_col  TYPE KLFAZDEALCOL_TAB ,
ld_i_objnr  TYPE JBKLOBJ1-OBJNR ,
ld_i_fazdealcol_of_faz_tab  TYPE KLFAZDEALCOL_TAB ,
ld_i_arr  TYPE KL_DEFRIRE ,
ld_i_prot_level  TYPE SPROT-LEVEL .

ld_c_flow_ctrl_tab = 'Check type of data required'.
ld_i_ev_tab = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_c_erroritab to it_c_erroritab.
ld_c_faz_deal_col = 'Check type of data required'.

SELECT single OBJNR
FROM JBKLOBJ1
INTO ld_i_objnr.

ld_i_fazdealcol_of_faz_tab = 'Check type of data required'.
ld_i_arr = 'Check type of data required'.

ld_i_prot_level = Check type of data required

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