OIU_MPAPD_UPDATE_DB 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 OIU_MPAPD_UPDATE_DB into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
OIU_MP_ALLOC_PROFILE
Released Date:
Not Released
Processing type: Start update immediately (start immed)
CALL FUNCTION 'OIU_MPAPD_UPDATE_DB' "Update MPAP detail information
TABLES
i_oiu_pr_mpaph = " roiu_pr_mpaph Maintenance Structure: OIU_PR_MPAPH
i_oiu_pr_mpapd = " roiu_pr_mpapd Maintenance Structure: OIU_PR_MPAPD
. " OIU_MPAPD_UPDATE_DB
The ABAP code below is a full code listing to execute function module OIU_MPAPD_UPDATE_DB 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).
| it_i_oiu_pr_mpaph | TYPE STANDARD TABLE OF ROIU_PR_MPAPH,"TABLES PARAM |
| wa_i_oiu_pr_mpaph | LIKE LINE OF it_i_oiu_pr_mpaph , |
| it_i_oiu_pr_mpapd | TYPE STANDARD TABLE OF ROIU_PR_MPAPD,"TABLES PARAM |
| wa_i_oiu_pr_mpapd | LIKE LINE OF it_i_oiu_pr_mpapd . |
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:
| it_i_oiu_pr_mpaph | TYPE STANDARD TABLE OF ROIU_PR_MPAPH , |
| wa_i_oiu_pr_mpaph | LIKE LINE OF it_i_oiu_pr_mpaph, |
| it_i_oiu_pr_mpapd | TYPE STANDARD TABLE OF ROIU_PR_MPAPD , |
| wa_i_oiu_pr_mpapd | LIKE LINE OF it_i_oiu_pr_mpapd. |
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 OIU_MPAPD_UPDATE_DB or its description.
OIU_MPAPD_UPDATE_DB - Update MPAP detail information OIU_MPAPD_READ - Reads MP Allocation Detail OIU_MKT_WRITE_DOCUMENT - CHDO OIU_MKT => Gen. by RSSCD000 OIU_MGKW_UPDATE - Update database - OIU_SB_MGKW OIU_MGID_WRITE_DOCUMENT - CHDO OIU_MGID => Gen. by RSSCD000 OIU_MGID_UPDATE - Inserts, Updates, and Deletes Meas. grp ids