SAP ISB_FLEX_RULES_GEN_CONTROL Function Module for IS-B: Felx rules generate - Control module for the complete generation
ISB_FLEX_RULES_GEN_CONTROL is a standard isb flex rules gen control SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-B: Felx rules generate - Control module for the complete generation 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 isb flex rules gen control FM, simply by entering the name ISB_FLEX_RULES_GEN_CONTROL into the relevant SAP transaction such as SE37 or SE38.
Function Group: JBTFCG
Program Name: SAPLJBTFCG
Main Program: SAPLJBTFCG
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISB_FLEX_RULES_GEN_CONTROL 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 'ISB_FLEX_RULES_GEN_CONTROL'"IS-B: Felx rules generate - Control module for the complete generation.
EXPORTING
WRK_DELETE = "Flag: Generierte Teilen sollen gelöscht werden
WRK_CONCERN = "Ergebnisbereich
TABLES
ITAB_KALSM = "Kalkulationsschemate
ITAB_COSTSHEET = "Konditionsarten
ITAB_ACCESS = "Zugriffolgen
ITAB_CONDFIELD = "Konditionsfelder
ITAB_CONDTAB = "Konditionstabellen
EXCEPTIONS
GENERATION_ERROR = 1
IMPORTING Parameters details for ISB_FLEX_RULES_GEN_CONTROL
WRK_DELETE - Flag: Generierte Teilen sollen gelöscht werden
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
WRK_CONCERN - Ergebnisbereich
Data type: JBTFC_CONCERNOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISB_FLEX_RULES_GEN_CONTROL
ITAB_KALSM - Kalkulationsschemate
Data type: JBTFC_ITAB_KALSMOptional: No
Call by Reference: No ( called with pass by value option)
ITAB_COSTSHEET - Konditionsarten
Data type: JBTFC_ITAB_COSTSHEETOptional: No
Call by Reference: No ( called with pass by value option)
ITAB_ACCESS - Zugriffolgen
Data type: JBTFC_ITAB_ACCESSOptional: No
Call by Reference: No ( called with pass by value option)
ITAB_CONDFIELD - Konditionsfelder
Data type: JBTFC_ITAB_CONDFIELDOptional: No
Call by Reference: No ( called with pass by value option)
ITAB_CONDTAB - Konditionstabellen
Data type: JBTFC_ITAB_CONDTABOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
GENERATION_ERROR - Generierung war Fehlerhaft
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISB_FLEX_RULES_GEN_CONTROL 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: | ||||
| lt_itab_kalsm | TYPE STANDARD TABLE OF JBTFC_ITAB_KALSM, " | |||
| lv_wrk_delete | TYPE JBTFC_ITAB_KALSM, " | |||
| lv_generation_error | TYPE JBTFC_ITAB_KALSM, " | |||
| lv_wrk_concern | TYPE JBTFC_CONCERN, " | |||
| lt_itab_costsheet | TYPE STANDARD TABLE OF JBTFC_ITAB_COSTSHEET, " | |||
| lt_itab_access | TYPE STANDARD TABLE OF JBTFC_ITAB_ACCESS, " | |||
| lt_itab_condfield | TYPE STANDARD TABLE OF JBTFC_ITAB_CONDFIELD, " | |||
| lt_itab_condtab | TYPE STANDARD TABLE OF JBTFC_ITAB_CONDTAB. " |
|   CALL FUNCTION 'ISB_FLEX_RULES_GEN_CONTROL' "IS-B: Felx rules generate - Control module for the complete generation |
| EXPORTING | ||
| WRK_DELETE | = lv_wrk_delete | |
| WRK_CONCERN | = lv_wrk_concern | |
| TABLES | ||
| ITAB_KALSM | = lt_itab_kalsm | |
| ITAB_COSTSHEET | = lt_itab_costsheet | |
| ITAB_ACCESS | = lt_itab_access | |
| ITAB_CONDFIELD | = lt_itab_condfield | |
| ITAB_CONDTAB | = lt_itab_condtab | |
| EXCEPTIONS | ||
| GENERATION_ERROR = 1 | ||
| . " ISB_FLEX_RULES_GEN_CONTROL | ||
ABAP code using 7.40 inline data declarations to call FM ISB_FLEX_RULES_GEN_CONTROL
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.Search for further information about these or an SAP related objects