SAP KAOX_BUILD_GROUPS Function Module for Project-Spec. Part of Results Analysis
KAOX_BUILD_GROUPS is a standard kaox build groups SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Project-Spec. Part of Results Analysis 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 kaox build groups FM, simply by entering the name KAOX_BUILD_GROUPS into the relevant SAP transaction such as SE37 or SE38.
Function Group: KAOX
Program Name: SAPLKAOX
Main Program: SAPLKAOX
Appliation area: K
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function KAOX_BUILD_GROUPS 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 'KAOX_BUILD_GROUPS'"Project-Spec. Part of Results Analysis.
EXPORTING
* I_SIZE = 100 "
I_VRGNG = "Business Transaction
IMPORTING
E_SELECTED = "DE-EN-LANG-SWITCH-NO-TRANSLATION
TABLES
* E_GROUP = "
* I_OBJNR = "
EXCEPTIONS
NO_MORE_DATA = 1
IMPORTING Parameters details for KAOX_BUILD_GROUPS
I_SIZE -
Data type: KAOX_GROUPSIZEDefault: 100
Optional: Yes
Call by Reference: Yes
I_VRGNG - Business Transaction
Data type: TJ01-VRGNGOptional: No
Call by Reference: Yes
EXPORTING Parameters details for KAOX_BUILD_GROUPS
E_SELECTED - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SY-TABIXOptional: No
Call by Reference: Yes
TABLES Parameters details for KAOX_BUILD_GROUPS
E_GROUP -
Data type: RSTHIEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_OBJNR -
Data type: IONRBOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_MORE_DATA -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for KAOX_BUILD_GROUPS 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_i_size | TYPE KAOX_GROUPSIZE, " 100 | |||
| lt_e_group | TYPE STANDARD TABLE OF RSTHIE, " | |||
| lv_e_selected | TYPE SY-TABIX, " | |||
| lv_no_more_data | TYPE SY, " | |||
| lt_i_objnr | TYPE STANDARD TABLE OF IONRB, " | |||
| lv_i_vrgng | TYPE TJ01-VRGNG. " |
|   CALL FUNCTION 'KAOX_BUILD_GROUPS' "Project-Spec. Part of Results Analysis |
| EXPORTING | ||
| I_SIZE | = lv_i_size | |
| I_VRGNG | = lv_i_vrgng | |
| IMPORTING | ||
| E_SELECTED | = lv_e_selected | |
| TABLES | ||
| E_GROUP | = lt_e_group | |
| I_OBJNR | = lt_i_objnr | |
| EXCEPTIONS | ||
| NO_MORE_DATA = 1 | ||
| . " KAOX_BUILD_GROUPS | ||
ABAP code using 7.40 inline data declarations to call FM KAOX_BUILD_GROUPS
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.| DATA(ld_i_size) | = 100. | |||
| "SELECT single TABIX FROM SY INTO @DATA(ld_e_selected). | ||||
| "SELECT single VRGNG FROM TJ01 INTO @DATA(ld_i_vrgng). | ||||
Search for further information about these or an SAP related objects