PPEUILOAD_LOAD is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name PPEUILOAD_LOAD into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
PPEUILOAD
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'PPEUILOAD_LOAD' "
EXPORTING
* im_msg_opt = 'A' " ppet_msg_opt
* im_applobj_type = " pvs_applobj_type
im_type_tab = " ppet_otype_pxtype_tab
im_exobj_type_tab = " ppet_appl_tab
* im_context_env = " ppe_applobj_type
IMPORTING
ex_load_option = " c
ex_pnodid_li_tab = " ppet_pnodid_li_tab
ex_posvid_li_tab = " ppet_posvid_li_tab
ex_paltid_li_tab = " ppet_paltid_li_tab
ex_ex_obj_id_tab = " ppet_appl_ex_obj_id_tab
ex_pnodid_li_dynp = " ppet_pnodid_li
EXCEPTIONS
LOAD_ERROR = 1 "
. " PPEUILOAD_LOAD
The ABAP code below is a full code listing to execute function module PPEUILOAD_LOAD including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_ex_load_option | TYPE C , |
| ld_ex_pnodid_li_tab | TYPE PPET_PNODID_LI_TAB , |
| ld_ex_posvid_li_tab | TYPE PPET_POSVID_LI_TAB , |
| ld_ex_paltid_li_tab | TYPE PPET_PALTID_LI_TAB , |
| ld_ex_ex_obj_id_tab | TYPE PPET_APPL_EX_OBJ_ID_TAB , |
| ld_ex_pnodid_li_dynp | TYPE PPET_PNODID_LI . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_ex_load_option | TYPE C , |
| ld_im_msg_opt | TYPE PPET_MSG_OPT , |
| ld_ex_pnodid_li_tab | TYPE PPET_PNODID_LI_TAB , |
| ld_im_applobj_type | TYPE PVS_APPLOBJ_TYPE , |
| ld_ex_posvid_li_tab | TYPE PPET_POSVID_LI_TAB , |
| ld_im_type_tab | TYPE PPET_OTYPE_PXTYPE_TAB , |
| ld_ex_paltid_li_tab | TYPE PPET_PALTID_LI_TAB , |
| ld_im_exobj_type_tab | TYPE PPET_APPL_TAB , |
| ld_ex_ex_obj_id_tab | TYPE PPET_APPL_EX_OBJ_ID_TAB , |
| ld_im_context_env | TYPE PPE_APPLOBJ_TYPE , |
| ld_ex_pnodid_li_dynp | TYPE PPET_PNODID_LI . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name PPEUILOAD_LOAD or its description.