SAP KL_463FAZ_FLOW_CTRL_GET Function Module for Steuerparam. f. die ABE einer FAZ.
KL_463FAZ_FLOW_CTRL_GET is a standard kl 463faz flow ctrl get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Steuerparam. f. die ABE einer FAZ. 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 kl 463faz flow ctrl get FM, simply by entering the name KL_463FAZ_FLOW_CTRL_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: KL_EVAL_FAZ
Program Name: SAPLKL_EVAL_FAZ
Main Program: SAPLKL_EVAL_FAZ
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function KL_463FAZ_FLOW_CTRL_GET 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 'KL_463FAZ_FLOW_CTRL_GET'"Steuerparam. f. die ABE einer FAZ..
EXPORTING
I_EV_TAB = "Tabelle Ermittlungsverfahren
I_OBJNR = "(FAz-) Objektnummer für Finanzgeschäfte
I_FAZDEALCOL_OF_FAZ_TAB = "Tabelle FAZ-Zusatzdaten
I_ARR = "Ausfallrisikoregel
* I_PROT_LEVEL = 1 "
IMPORTING
E_EV_TAB = "Tabelle GÜLTIGER Ermittlungsverfahren
CHANGING
C_FLOW_CTRL_TAB = "
C_FAZ_DEAL_COL = "Relevante EG- und Sicherheiten-Daten für Faz
TABLES
C_ERRORITAB = "
IMPORTING Parameters details for KL_463FAZ_FLOW_CTRL_GET
I_EV_TAB - Tabelle Ermittlungsverfahren
Data type: KL2_EV_TABOptional: No
Call by Reference: No ( called with pass by value option)
I_OBJNR - (FAz-) Objektnummer für Finanzgeschäfte
Data type: JBKLOBJ1-OBJNROptional: No
Call by Reference: Yes
I_FAZDEALCOL_OF_FAZ_TAB - Tabelle FAZ-Zusatzdaten
Data type: KLFAZDEALCOL_TABOptional: No
Call by Reference: Yes
I_ARR - Ausfallrisikoregel
Data type: KL_DEFRIREOptional: No
Call by Reference: Yes
I_PROT_LEVEL -
Data type: SPROT-LEVELDefault: 1
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for KL_463FAZ_FLOW_CTRL_GET
E_EV_TAB - Tabelle GÜLTIGER Ermittlungsverfahren
Data type: KL2_EV_TABOptional: No
Call by Reference: Yes
CHANGING Parameters details for KL_463FAZ_FLOW_CTRL_GET
C_FLOW_CTRL_TAB -
Data type: FAZFC_FLOW_CTRL_TABOptional: No
Call by Reference: Yes
C_FAZ_DEAL_COL - Relevante EG- und Sicherheiten-Daten für Faz
Data type: KLFAZDEALCOL_TABOptional: No
Call by Reference: Yes
TABLES Parameters details for KL_463FAZ_FLOW_CTRL_GET
C_ERRORITAB -
Data type: BAPIERROptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for KL_463FAZ_FLOW_CTRL_GET 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_e_ev_tab | TYPE KL2_EV_TAB, " | |||
| lv_i_ev_tab | TYPE KL2_EV_TAB, " | |||
| lt_c_erroritab | TYPE STANDARD TABLE OF BAPIERR, " | |||
| lv_c_flow_ctrl_tab | TYPE FAZFC_FLOW_CTRL_TAB, " | |||
| lv_i_objnr | TYPE JBKLOBJ1-OBJNR, " | |||
| lv_c_faz_deal_col | TYPE KLFAZDEALCOL_TAB, " | |||
| lv_i_fazdealcol_of_faz_tab | TYPE KLFAZDEALCOL_TAB, " | |||
| lv_i_arr | TYPE KL_DEFRIRE, " | |||
| lv_i_prot_level | TYPE SPROT-LEVEL. " 1 |
|   CALL FUNCTION 'KL_463FAZ_FLOW_CTRL_GET' "Steuerparam. f. die ABE einer FAZ. |
| EXPORTING | ||
| I_EV_TAB | = lv_i_ev_tab | |
| I_OBJNR | = lv_i_objnr | |
| I_FAZDEALCOL_OF_FAZ_TAB | = lv_i_fazdealcol_of_faz_tab | |
| I_ARR | = lv_i_arr | |
| I_PROT_LEVEL | = lv_i_prot_level | |
| IMPORTING | ||
| E_EV_TAB | = lv_e_ev_tab | |
| CHANGING | ||
| C_FLOW_CTRL_TAB | = lv_c_flow_ctrl_tab | |
| C_FAZ_DEAL_COL | = lv_c_faz_deal_col | |
| TABLES | ||
| C_ERRORITAB | = lt_c_erroritab | |
| . " KL_463FAZ_FLOW_CTRL_GET | ||
ABAP code using 7.40 inline data declarations to call FM KL_463FAZ_FLOW_CTRL_GET
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 OBJNR FROM JBKLOBJ1 INTO @DATA(ld_i_objnr). | ||||
| "SELECT single LEVEL FROM SPROT INTO @DATA(ld_i_prot_level). | ||||
| DATA(ld_i_prot_level) | = 1. | |||
Search for further information about these or an SAP related objects