SAP CJDW_PRPS_ATTACH Function Module for NOTRANSL: PSP: Zuordnen Elemente zu Bezugselement
CJDW_PRPS_ATTACH is a standard cjdw prps attach 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: PSP: Zuordnen Elemente zu Bezugselement 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 attach FM, simply by entering the name CJDW_PRPS_ATTACH 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_ATTACH 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_ATTACH'"NOTRANSL: PSP: Zuordnen Elemente zu Bezugselement.
EXPORTING
* DIRECTION = ' ' "Direction
* REF_INDEX = 0 "index new reference element in document table
* NO_UPDPS = ' ' "
* NO_AIPP_CHECK = ' ' "
TABLES
ELEMENTS = "List of elements to be allocated (selected)
EXCEPTIONS
BESIDE = 1 CUT = 2 CYCLE = 3 ENTRY = 4 NOT_FOUND = 5 AIPP = 6
IMPORTING Parameters details for CJDW_PRPS_ATTACH
DIRECTION - Direction
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
REF_INDEX - index new reference element in document table
Data type: SY-TABIXOptional: Yes
Call by Reference: No ( called with pass by value option)
NO_UPDPS -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
NO_AIPP_CHECK -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CJDW_PRPS_ATTACH
ELEMENTS - List of elements to be allocated (selected)
Data type: RCJ_MARKLOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
BESIDE - Shifting next to initial element not allowed
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CUT - Cutting only when selecting entire project
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CYCLE - Loop
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ENTRY - Shifting initial element not allowed
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOT_FOUND - Reference element or element in elements not found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
AIPP -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CJDW_PRPS_ATTACH 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_beside | TYPE STRING, " | |||
| lt_elements | TYPE STANDARD TABLE OF RCJ_MARKL, " | |||
| lv_direction | TYPE RCJ_MARKL, " SPACE | |||
| lv_cut | TYPE RCJ_MARKL, " | |||
| lv_ref_index | TYPE SY-TABIX, " 0 | |||
| lv_cycle | TYPE SY, " | |||
| lv_no_updps | TYPE SY, " SPACE | |||
| lv_entry | TYPE SY, " | |||
| lv_no_aipp_check | TYPE SY, " SPACE | |||
| lv_not_found | TYPE SY, " | |||
| lv_aipp | TYPE SY. " |
|   CALL FUNCTION 'CJDW_PRPS_ATTACH' "NOTRANSL: PSP: Zuordnen Elemente zu Bezugselement |
| EXPORTING | ||
| DIRECTION | = lv_direction | |
| REF_INDEX | = lv_ref_index | |
| NO_UPDPS | = lv_no_updps | |
| NO_AIPP_CHECK | = lv_no_aipp_check | |
| TABLES | ||
| ELEMENTS | = lt_elements | |
| EXCEPTIONS | ||
| BESIDE = 1 | ||
| CUT = 2 | ||
| CYCLE = 3 | ||
| ENTRY = 4 | ||
| NOT_FOUND = 5 | ||
| AIPP = 6 | ||
| . " CJDW_PRPS_ATTACH | ||
ABAP code using 7.40 inline data declarations to call FM CJDW_PRPS_ATTACH
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_direction) | = ' '. | |||
| "SELECT single TABIX FROM SY INTO @DATA(ld_ref_index). | ||||
| DATA(ld_no_updps) | = ' '. | |||
| DATA(ld_no_aipp_check) | = ' '. | |||
Search for further information about these or an SAP related objects