NDPLG_BW_01000101_BW_PUT 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 NDPLG_BW_01000101_BW_PUT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
PMEX
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'NDPLG_BW_01000101_BW_PUT' "
TABLES
it_caufv_bt = " caufvdb
it_caufv_bt_old = " caufvdb
it_afpo_bt = " afpob
it_afpo_bt_old = " aafpo
it_affl_bt = " afflb
it_affl_bt_old = " aaffl
it_afvg_bt = " afvgb
it_afvc_bt_old = " aafvc
it_afvv_bt_old = " aafvv
it_afvu_bt_old = " aafvu
it_resb_bt = " resbb
it_resb_bt_old = " aresb
it_status = " jest
it_status_old = " jest
. " NDPLG_BW_01000101_BW_PUT
The ABAP code below is a full code listing to execute function module NDPLG_BW_01000101_BW_PUT 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_it_caufv_bt | TYPE STANDARD TABLE OF CAUFVDB,"TABLES PARAM |
| wa_it_caufv_bt | LIKE LINE OF it_it_caufv_bt , |
| it_it_caufv_bt_old | TYPE STANDARD TABLE OF CAUFVDB,"TABLES PARAM |
| wa_it_caufv_bt_old | LIKE LINE OF it_it_caufv_bt_old , |
| it_it_afpo_bt | TYPE STANDARD TABLE OF AFPOB,"TABLES PARAM |
| wa_it_afpo_bt | LIKE LINE OF it_it_afpo_bt , |
| it_it_afpo_bt_old | TYPE STANDARD TABLE OF AAFPO,"TABLES PARAM |
| wa_it_afpo_bt_old | LIKE LINE OF it_it_afpo_bt_old , |
| it_it_affl_bt | TYPE STANDARD TABLE OF AFFLB,"TABLES PARAM |
| wa_it_affl_bt | LIKE LINE OF it_it_affl_bt , |
| it_it_affl_bt_old | TYPE STANDARD TABLE OF AAFFL,"TABLES PARAM |
| wa_it_affl_bt_old | LIKE LINE OF it_it_affl_bt_old , |
| it_it_afvg_bt | TYPE STANDARD TABLE OF AFVGB,"TABLES PARAM |
| wa_it_afvg_bt | LIKE LINE OF it_it_afvg_bt , |
| it_it_afvc_bt_old | TYPE STANDARD TABLE OF AAFVC,"TABLES PARAM |
| wa_it_afvc_bt_old | LIKE LINE OF it_it_afvc_bt_old , |
| it_it_afvv_bt_old | TYPE STANDARD TABLE OF AAFVV,"TABLES PARAM |
| wa_it_afvv_bt_old | LIKE LINE OF it_it_afvv_bt_old , |
| it_it_afvu_bt_old | TYPE STANDARD TABLE OF AAFVU,"TABLES PARAM |
| wa_it_afvu_bt_old | LIKE LINE OF it_it_afvu_bt_old , |
| it_it_resb_bt | TYPE STANDARD TABLE OF RESBB,"TABLES PARAM |
| wa_it_resb_bt | LIKE LINE OF it_it_resb_bt , |
| it_it_resb_bt_old | TYPE STANDARD TABLE OF ARESB,"TABLES PARAM |
| wa_it_resb_bt_old | LIKE LINE OF it_it_resb_bt_old , |
| it_it_status | TYPE STANDARD TABLE OF JEST,"TABLES PARAM |
| wa_it_status | LIKE LINE OF it_it_status , |
| it_it_status_old | TYPE STANDARD TABLE OF JEST,"TABLES PARAM |
| wa_it_status_old | LIKE LINE OF it_it_status_old . |
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_it_caufv_bt | TYPE STANDARD TABLE OF CAUFVDB , |
| wa_it_caufv_bt | LIKE LINE OF it_it_caufv_bt, |
| it_it_caufv_bt_old | TYPE STANDARD TABLE OF CAUFVDB , |
| wa_it_caufv_bt_old | LIKE LINE OF it_it_caufv_bt_old, |
| it_it_afpo_bt | TYPE STANDARD TABLE OF AFPOB , |
| wa_it_afpo_bt | LIKE LINE OF it_it_afpo_bt, |
| it_it_afpo_bt_old | TYPE STANDARD TABLE OF AAFPO , |
| wa_it_afpo_bt_old | LIKE LINE OF it_it_afpo_bt_old, |
| it_it_affl_bt | TYPE STANDARD TABLE OF AFFLB , |
| wa_it_affl_bt | LIKE LINE OF it_it_affl_bt, |
| it_it_affl_bt_old | TYPE STANDARD TABLE OF AAFFL , |
| wa_it_affl_bt_old | LIKE LINE OF it_it_affl_bt_old, |
| it_it_afvg_bt | TYPE STANDARD TABLE OF AFVGB , |
| wa_it_afvg_bt | LIKE LINE OF it_it_afvg_bt, |
| it_it_afvc_bt_old | TYPE STANDARD TABLE OF AAFVC , |
| wa_it_afvc_bt_old | LIKE LINE OF it_it_afvc_bt_old, |
| it_it_afvv_bt_old | TYPE STANDARD TABLE OF AAFVV , |
| wa_it_afvv_bt_old | LIKE LINE OF it_it_afvv_bt_old, |
| it_it_afvu_bt_old | TYPE STANDARD TABLE OF AAFVU , |
| wa_it_afvu_bt_old | LIKE LINE OF it_it_afvu_bt_old, |
| it_it_resb_bt | TYPE STANDARD TABLE OF RESBB , |
| wa_it_resb_bt | LIKE LINE OF it_it_resb_bt, |
| it_it_resb_bt_old | TYPE STANDARD TABLE OF ARESB , |
| wa_it_resb_bt_old | LIKE LINE OF it_it_resb_bt_old, |
| it_it_status | TYPE STANDARD TABLE OF JEST , |
| wa_it_status | LIKE LINE OF it_it_status, |
| it_it_status_old | TYPE STANDARD TABLE OF JEST , |
| wa_it_status_old | LIKE LINE OF it_it_status_old. |
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 NDPLG_BW_01000101_BW_PUT or its description.