SAP ROW_COLUMN_STRUCTURE_FORMULAS Function Module for
ROW_COLUMN_STRUCTURE_FORMULAS is a standard row column structure formulas SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 row column structure formulas FM, simply by entering the name ROW_COLUMN_STRUCTURE_FORMULAS into the relevant SAP transaction such as SE37 or SE38.
Function Group: KES1
Program Name: SAPLKES1
Main Program: SAPLKES1
Appliation area: K
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ROW_COLUMN_STRUCTURE_FORMULAS 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 'ROW_COLUMN_STRUCTURE_FORMULAS'".
EXPORTING
APPLCLASS = "
FORM = "Row/column structure
SUBCLASS = "
TABNAME = "Table name (area/aspect)
* SMODUS = ' ' "
* MEM_ID = ' ' "Memory ID for EXPORT/IMPORT
* RESFORM = ' ' "Single-character flag
TABLES
STG_TAB = "
EXCEPTIONS
FORMULA_RECURSION = 1 EMPTY = 2
IMPORTING Parameters details for ROW_COLUMN_STRUCTURE_FORMULAS
APPLCLASS -
Data type: RKB1S-APPLCLASSOptional: No
Call by Reference: No ( called with pass by value option)
FORM - Row/column structure
Data type: RKB1S-FORMOptional: No
Call by Reference: No ( called with pass by value option)
SUBCLASS -
Data type: RKB1S-SUBCLASSOptional: No
Call by Reference: No ( called with pass by value option)
TABNAME - Table name (area/aspect)
Data type: RKB1S-TABNAMEOptional: No
Call by Reference: No ( called with pass by value option)
SMODUS -
Data type: RKB1D-SMODUSDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
MEM_ID - Memory ID for EXPORT/IMPORT
Data type: RGRWA-MEMORYIDDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
RESFORM - Single-character flag
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ROW_COLUMN_STRUCTURE_FORMULAS
STG_TAB -
Data type: CFFSTOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
FORMULA_RECURSION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EMPTY -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ROW_COLUMN_STRUCTURE_FORMULAS 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_stg_tab | TYPE STANDARD TABLE OF CFFST, " | |||
| lv_applclass | TYPE RKB1S-APPLCLASS, " | |||
| lv_formula_recursion | TYPE RKB1S, " | |||
| lv_form | TYPE RKB1S-FORM, " | |||
| lv_empty | TYPE RKB1S, " | |||
| lv_subclass | TYPE RKB1S-SUBCLASS, " | |||
| lv_tabname | TYPE RKB1S-TABNAME, " | |||
| lv_smodus | TYPE RKB1D-SMODUS, " SPACE | |||
| lv_mem_id | TYPE RGRWA-MEMORYID, " SPACE | |||
| lv_resform | TYPE CHAR1. " SPACE |
|   CALL FUNCTION 'ROW_COLUMN_STRUCTURE_FORMULAS' " |
| EXPORTING | ||
| APPLCLASS | = lv_applclass | |
| FORM | = lv_form | |
| SUBCLASS | = lv_subclass | |
| TABNAME | = lv_tabname | |
| SMODUS | = lv_smodus | |
| MEM_ID | = lv_mem_id | |
| RESFORM | = lv_resform | |
| TABLES | ||
| STG_TAB | = lt_stg_tab | |
| EXCEPTIONS | ||
| FORMULA_RECURSION = 1 | ||
| EMPTY = 2 | ||
| . " ROW_COLUMN_STRUCTURE_FORMULAS | ||
ABAP code using 7.40 inline data declarations to call FM ROW_COLUMN_STRUCTURE_FORMULAS
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 APPLCLASS FROM RKB1S INTO @DATA(ld_applclass). | ||||
| "SELECT single FORM FROM RKB1S INTO @DATA(ld_form). | ||||
| "SELECT single SUBCLASS FROM RKB1S INTO @DATA(ld_subclass). | ||||
| "SELECT single TABNAME FROM RKB1S INTO @DATA(ld_tabname). | ||||
| "SELECT single SMODUS FROM RKB1D INTO @DATA(ld_smodus). | ||||
| DATA(ld_smodus) | = ' '. | |||
| "SELECT single MEMORYID FROM RGRWA INTO @DATA(ld_mem_id). | ||||
| DATA(ld_mem_id) | = ' '. | |||
| DATA(ld_resform) | = ' '. | |||
Search for further information about these or an SAP related objects