SAP CJDW_PRPS_GET_MULTIPLE Function Module for NOTRANSL: lesen PRPS über tabelle
CJDW_PRPS_GET_MULTIPLE is a standard cjdw prps get multiple SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: lesen PRPS über tabelle 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 cjdw prps get multiple FM, simply by entering the name CJDW_PRPS_GET_MULTIPLE into the relevant SAP transaction such as SE37 or SE38.
Function Group: CJDW
Program Name: SAPLCJDW
Main Program: SAPLCJDW
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CJDW_PRPS_GET_MULTIPLE 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 'CJDW_PRPS_GET_MULTIPLE'"NOTRANSL: lesen PRPS über tabelle.
TABLES
DISP_IMP = "PS Display and Selection List
* EXT_TAB = "Transfer structure of external WBS number
* WBS_EXP = "Internal table of WBS numbers/object numbers
* OBJLIST = "Object List for Project and WBS Element
* OTAB = "General object number - object identification
* OBJ_HIER = "Object Hierarchy Table
* AUTH_EXP = "Authorizations for objects selected in LDB PSJ
* PRPS_TAB = "WBS (Work Breakdown Structure) Element Master Data
TABLES Parameters details for CJDW_PRPS_GET_MULTIPLE
DISP_IMP - PS Display and Selection List
Data type: RCJ_MARKLOptional: No
Call by Reference: No ( called with pass by value option)
EXT_TAB - Transfer structure of external WBS number
Data type: RCJ_POSIDOptional: Yes
Call by Reference: No ( called with pass by value option)
WBS_EXP - Internal table of WBS numbers/object numbers
Data type: RCJ_PSPNR2Optional: Yes
Call by Reference: No ( called with pass by value option)
OBJLIST - Object List for Project and WBS Element
Data type: OBJLIST_PSOptional: Yes
Call by Reference: No ( called with pass by value option)
OTAB - General object number - object identification
Data type: IONREOptional: Yes
Call by Reference: No ( called with pass by value option)
OBJ_HIER - Object Hierarchy Table
Data type: RPHIERAOptional: Yes
Call by Reference: No ( called with pass by value option)
AUTH_EXP - Authorizations for objects selected in LDB PSJ
Data type: PSJ_AUTHOptional: Yes
Call by Reference: No ( called with pass by value option)
PRPS_TAB - WBS (Work Breakdown Structure) Element Master Data
Data type: PRPSOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CJDW_PRPS_GET_MULTIPLE 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: | ||||
| lt_disp_imp | TYPE STANDARD TABLE OF RCJ_MARKL, " | |||
| lt_ext_tab | TYPE STANDARD TABLE OF RCJ_POSID, " | |||
| lt_wbs_exp | TYPE STANDARD TABLE OF RCJ_PSPNR2, " | |||
| lt_objlist | TYPE STANDARD TABLE OF OBJLIST_PS, " | |||
| lt_otab | TYPE STANDARD TABLE OF IONRE, " | |||
| lt_obj_hier | TYPE STANDARD TABLE OF RPHIERA, " | |||
| lt_auth_exp | TYPE STANDARD TABLE OF PSJ_AUTH, " | |||
| lt_prps_tab | TYPE STANDARD TABLE OF PRPS. " |
|   CALL FUNCTION 'CJDW_PRPS_GET_MULTIPLE' "NOTRANSL: lesen PRPS über tabelle |
| TABLES | ||
| DISP_IMP | = lt_disp_imp | |
| EXT_TAB | = lt_ext_tab | |
| WBS_EXP | = lt_wbs_exp | |
| OBJLIST | = lt_objlist | |
| OTAB | = lt_otab | |
| OBJ_HIER | = lt_obj_hier | |
| AUTH_EXP | = lt_auth_exp | |
| PRPS_TAB | = lt_prps_tab | |
| . " CJDW_PRPS_GET_MULTIPLE | ||
ABAP code using 7.40 inline data declarations to call FM CJDW_PRPS_GET_MULTIPLE
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