SAP OIUH_AFCMTOR3BYLEVELCACHEWRAP Function Module for OIUH_AFCMTOR3BYLEVELCACHEW
OIUH_AFCMTOR3BYLEVELCACHEWRAP is a standard oiuh afcmtor3bylevelcachewrap SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for OIUH_AFCMTOR3BYLEVELCACHEW 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 oiuh afcmtor3bylevelcachewrap FM, simply by entering the name OIUH_AFCMTOR3BYLEVELCACHEWRAP into the relevant SAP transaction such as SE37 or SE38.
Function Group: OIUH_AFCMTOR3BYLEVELCACHEW
Program Name: SAPLOIUH_AFCMTOR3BYLEVELCACHEW
Main Program: SAPLOIUH_AFCMTOR3BYLEVELCACHEW
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OIUH_AFCMTOR3BYLEVELCACHEWRAP 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 'OIUH_AFCMTOR3BYLEVELCACHEWRAP'"OIUH_AFCMTOR3BYLEVELCACHEW.
CHANGING
* ROWS_RETURNED = "
* SQLCODE = "
* CMESSAGE = "
* ROWS = "
* TABLE = "
* W_OR3_OR_LVL_1_NO = "
* W_OR3_OR_LVL_2_NO = "
* W_OR3_OR_LVL_3_NO = "
* C_OR3_OR_LVL_3_NM = "
EXCEPTIONS
GOBACK = 1 FAILED = 2
CHANGING Parameters details for OIUH_AFCMTOR3BYLEVELCACHEWRAP
ROWS_RETURNED -
Data type:Optional: Yes
Call by Reference: Yes
SQLCODE -
Data type:Optional: Yes
Call by Reference: Yes
CMESSAGE -
Data type:Optional: Yes
Call by Reference: Yes
ROWS -
Data type:Optional: Yes
Call by Reference: Yes
TABLE -
Data type: OIUH_AFCMTOR3BYLEVELCACHEXXOptional: Yes
Call by Reference: Yes
W_OR3_OR_LVL_1_NO -
Data type:Optional: Yes
Call by Reference: Yes
W_OR3_OR_LVL_2_NO -
Data type:Optional: Yes
Call by Reference: Yes
W_OR3_OR_LVL_3_NO -
Data type:Optional: Yes
Call by Reference: Yes
C_OR3_OR_LVL_3_NM -
Data type:Optional: Yes
Call by Reference: Yes
EXCEPTIONS details
GOBACK -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
FAILED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for OIUH_AFCMTOR3BYLEVELCACHEWRAP 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_goback | TYPE STRING, " | |||
| lv_rows_returned | TYPE STRING, " | |||
| lv_failed | TYPE STRING, " | |||
| lv_sqlcode | TYPE STRING, " | |||
| lv_cmessage | TYPE STRING, " | |||
| lv_rows | TYPE STRING, " | |||
| lv_table | TYPE OIUH_AFCMTOR3BYLEVELCACHEXX, " | |||
| lv_w_or3_or_lvl_1_no | TYPE OIUH_AFCMTOR3BYLEVELCACHEXX, " | |||
| lv_w_or3_or_lvl_2_no | TYPE OIUH_AFCMTOR3BYLEVELCACHEXX, " | |||
| lv_w_or3_or_lvl_3_no | TYPE OIUH_AFCMTOR3BYLEVELCACHEXX, " | |||
| lv_c_or3_or_lvl_3_nm | TYPE OIUH_AFCMTOR3BYLEVELCACHEXX. " |
|   CALL FUNCTION 'OIUH_AFCMTOR3BYLEVELCACHEWRAP' "OIUH_AFCMTOR3BYLEVELCACHEW |
| CHANGING | ||
| ROWS_RETURNED | = lv_rows_returned | |
| SQLCODE | = lv_sqlcode | |
| CMESSAGE | = lv_cmessage | |
| ROWS | = lv_rows | |
| TABLE | = lv_table | |
| W_OR3_OR_LVL_1_NO | = lv_w_or3_or_lvl_1_no | |
| W_OR3_OR_LVL_2_NO | = lv_w_or3_or_lvl_2_no | |
| W_OR3_OR_LVL_3_NO | = lv_w_or3_or_lvl_3_no | |
| C_OR3_OR_LVL_3_NM | = lv_c_or3_or_lvl_3_nm | |
| EXCEPTIONS | ||
| GOBACK = 1 | ||
| FAILED = 2 | ||
| . " OIUH_AFCMTOR3BYLEVELCACHEWRAP | ||
ABAP code using 7.40 inline data declarations to call FM OIUH_AFCMTOR3BYLEVELCACHEWRAP
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