SAP UA_R3_UPLOAD_BOM_EXPLOSION Function Module for
UA_R3_UPLOAD_BOM_EXPLOSION is a standard ua r3 upload bom explosion 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 ua r3 upload bom explosion FM, simply by entering the name UA_R3_UPLOAD_BOM_EXPLOSION into the relevant SAP transaction such as SE37 or SE38.
Function Group: UA_R3_UPLOAD
Program Name: SAPLUA_R3_UPLOAD
Main Program: SAPLUA_R3_UPLOAD
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function UA_R3_UPLOAD_BOM_EXPLOSION 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 'UA_R3_UPLOAD_BOM_EXPLOSION'".
EXPORTING
* ID_UPLOAD_TYPE = "R/3 Upload Type
* ID_READ_ONLY = ' ' "
* ID_STATUS = "Object Status
* ID_CALCULATE = ' ' "
* IO_PARENT_NODE = "
CHANGING
CT_STPOX = "
EXCEPTIONS
UPLOAD_NOT_SETUP = 1 MESSAGES_OCCURRED = 2
IMPORTING Parameters details for UA_R3_UPLOAD_BOM_EXPLOSION
ID_UPLOAD_TYPE - R/3 Upload Type
Data type: UAB_UPLOAD_TYPEOptional: Yes
Call by Reference: Yes
ID_READ_ONLY -
Data type: BOOLE_DDefault: SPACE
Optional: Yes
Call by Reference: Yes
ID_STATUS - Object Status
Data type: ACC_OBJ_STATUSOptional: Yes
Call by Reference: Yes
ID_CALCULATE -
Data type: BOOLE_DDefault: SPACE
Optional: Yes
Call by Reference: Yes
IO_PARENT_NODE -
Data type: CL_UA_NODEOptional: Yes
Call by Reference: Yes
CHANGING Parameters details for UA_R3_UPLOAD_BOM_EXPLOSION
CT_STPOX -
Data type: UAB_T_STPOXOptional: No
Call by Reference: Yes
EXCEPTIONS details
UPLOAD_NOT_SETUP -
Data type:Optional: No
Call by Reference: Yes
MESSAGES_OCCURRED - Messages Occurred
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for UA_R3_UPLOAD_BOM_EXPLOSION 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_ct_stpox | TYPE UAB_T_STPOX, " | |||
| lv_id_upload_type | TYPE UAB_UPLOAD_TYPE, " | |||
| lv_upload_not_setup | TYPE UAB_UPLOAD_TYPE, " | |||
| lv_id_read_only | TYPE BOOLE_D, " SPACE | |||
| lv_messages_occurred | TYPE BOOLE_D, " | |||
| lv_id_status | TYPE ACC_OBJ_STATUS, " | |||
| lv_id_calculate | TYPE BOOLE_D, " SPACE | |||
| lv_io_parent_node | TYPE CL_UA_NODE. " |
|   CALL FUNCTION 'UA_R3_UPLOAD_BOM_EXPLOSION' " |
| EXPORTING | ||
| ID_UPLOAD_TYPE | = lv_id_upload_type | |
| ID_READ_ONLY | = lv_id_read_only | |
| ID_STATUS | = lv_id_status | |
| ID_CALCULATE | = lv_id_calculate | |
| IO_PARENT_NODE | = lv_io_parent_node | |
| CHANGING | ||
| CT_STPOX | = lv_ct_stpox | |
| EXCEPTIONS | ||
| UPLOAD_NOT_SETUP = 1 | ||
| MESSAGES_OCCURRED = 2 | ||
| . " UA_R3_UPLOAD_BOM_EXPLOSION | ||
ABAP code using 7.40 inline data declarations to call FM UA_R3_UPLOAD_BOM_EXPLOSION
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_id_read_only) | = ' '. | |||
| DATA(ld_id_calculate) | = ' '. | |||
Search for further information about these or an SAP related objects