SAP CJSD_GLOBAL_VALUES Function Module for NOTRANSL: Abfragen globale Werte PSP
CJSD_GLOBAL_VALUES is a standard cjsd global values 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: Abfragen globale Werte PSP 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 cjsd global values FM, simply by entering the name CJSD_GLOBAL_VALUES into the relevant SAP transaction such as SE37 or SE38.
Function Group: CJSD
Program Name: SAPLCJSD
Main Program: SAPLCJSD
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CJSD_GLOBAL_VALUES 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 'CJSD_GLOBAL_VALUES'"NOTRANSL: Abfragen globale Werte PSP.
EXPORTING
* V_CHANGELOG = CON_KEEP "
* V_WBS_PARTITION = CON_KEEP "DE-EN-LANG-SWITCH-NO-TRANSLATION
* MEMID_PROJ = ' ' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* MEMID_PRPS = ' ' "DE-EN-LANG-SWITCH-NO-TRANSLATION
* MEMID_PRHI = ' ' "DE-EN-LANG-SWITCH-NO-TRANSLATION
IMPORTING
V_CHANGELOG = "
E_MEMID_PROJ = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_MEMID_PRPS = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_MEMID_PRHI = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_ARC_PROJ = "DE-EN-LANG-SWITCH-NO-TRANSLATION
V_DISP_ROOT = "DE-EN-LANG-SWITCH-NO-TRANSLATION
V_ENTRY_INDEX = "DE-EN-LANG-SWITCH-NO-TRANSLATION
V_IDENT = "Display options for WBS elements
V_PROJ = "DE-EN-LANG-SWITCH-NO-TRANSLATION
V_PROJ_AUTHC = "DE-EN-LANG-SWITCH-NO-TRANSLATION
V_PROJ_AUTHD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
V_WBS_PARTITION = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_BEAKZ_PROJ = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IMPORTING Parameters details for CJSD_GLOBAL_VALUES
V_CHANGELOG -
Data type: RCJ_MARKL-MARKDefault: CON_KEEP
Optional: Yes
Call by Reference: No ( called with pass by value option)
V_WBS_PARTITION - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RCJ_MARKL-MARKDefault: CON_KEEP
Optional: Yes
Call by Reference: No ( called with pass by value option)
MEMID_PROJ - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
MEMID_PRPS - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
MEMID_PRHI - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for CJSD_GLOBAL_VALUES
V_CHANGELOG -
Data type: RCJ_MARKL-MARKOptional: No
Call by Reference: No ( called with pass by value option)
E_MEMID_PROJ - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
E_MEMID_PRPS - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
E_MEMID_PRHI - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
E_ARC_PROJ - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: PROJSOptional: No
Call by Reference: No ( called with pass by value option)
V_DISP_ROOT - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SY-TABIXOptional: No
Call by Reference: No ( called with pass by value option)
V_ENTRY_INDEX - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SY-TABIXOptional: No
Call by Reference: No ( called with pass by value option)
V_IDENT - Display options for WBS elements
Data type: TCJ41-IDENTOptional: No
Call by Reference: No ( called with pass by value option)
V_PROJ - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: PROJSOptional: No
Call by Reference: No ( called with pass by value option)
V_PROJ_AUTHC - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
V_PROJ_AUTHD - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
V_WBS_PARTITION - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: RCJ_MARKL-MARKOptional: No
Call by Reference: No ( called with pass by value option)
E_BEAKZ_PROJ - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: TC10-TRTYPOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CJSD_GLOBAL_VALUES 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_v_changelog | TYPE RCJ_MARKL-MARK, " | |||
| lv_v_changelog | TYPE RCJ_MARKL-MARK, " CON_KEEP | |||
| lv_e_memid_proj | TYPE RCJ_MARKL, " | |||
| lv_e_memid_prps | TYPE RCJ_MARKL, " | |||
| lv_e_memid_prhi | TYPE RCJ_MARKL, " | |||
| lv_e_arc_proj | TYPE PROJS, " | |||
| lv_v_disp_root | TYPE SY-TABIX, " | |||
| lv_v_wbs_partition | TYPE RCJ_MARKL-MARK, " CON_KEEP | |||
| lv_memid_proj | TYPE RCJ_MARKL, " SPACE | |||
| lv_v_entry_index | TYPE SY-TABIX, " | |||
| lv_v_ident | TYPE TCJ41-IDENT, " | |||
| lv_memid_prps | TYPE TCJ41, " SPACE | |||
| lv_v_proj | TYPE PROJS, " | |||
| lv_memid_prhi | TYPE PROJS, " SPACE | |||
| lv_v_proj_authc | TYPE PROJS, " | |||
| lv_v_proj_authd | TYPE PROJS, " | |||
| lv_v_wbs_partition | TYPE RCJ_MARKL-MARK, " | |||
| lv_e_beakz_proj | TYPE TC10-TRTYP. " |
|   CALL FUNCTION 'CJSD_GLOBAL_VALUES' "NOTRANSL: Abfragen globale Werte PSP |
| EXPORTING | ||
| V_CHANGELOG | = lv_v_changelog | |
| V_WBS_PARTITION | = lv_v_wbs_partition | |
| MEMID_PROJ | = lv_memid_proj | |
| MEMID_PRPS | = lv_memid_prps | |
| MEMID_PRHI | = lv_memid_prhi | |
| IMPORTING | ||
| V_CHANGELOG | = lv_v_changelog | |
| E_MEMID_PROJ | = lv_e_memid_proj | |
| E_MEMID_PRPS | = lv_e_memid_prps | |
| E_MEMID_PRHI | = lv_e_memid_prhi | |
| E_ARC_PROJ | = lv_e_arc_proj | |
| V_DISP_ROOT | = lv_v_disp_root | |
| V_ENTRY_INDEX | = lv_v_entry_index | |
| V_IDENT | = lv_v_ident | |
| V_PROJ | = lv_v_proj | |
| V_PROJ_AUTHC | = lv_v_proj_authc | |
| V_PROJ_AUTHD | = lv_v_proj_authd | |
| V_WBS_PARTITION | = lv_v_wbs_partition | |
| E_BEAKZ_PROJ | = lv_e_beakz_proj | |
| . " CJSD_GLOBAL_VALUES | ||
ABAP code using 7.40 inline data declarations to call FM CJSD_GLOBAL_VALUES
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.| "SELECT single MARK FROM RCJ_MARKL INTO @DATA(ld_v_changelog). | ||||
| "SELECT single MARK FROM RCJ_MARKL INTO @DATA(ld_v_changelog). | ||||
| DATA(ld_v_changelog) | = CON_KEEP. | |||
| "SELECT single TABIX FROM SY INTO @DATA(ld_v_disp_root). | ||||
| "SELECT single MARK FROM RCJ_MARKL INTO @DATA(ld_v_wbs_partition). | ||||
| DATA(ld_v_wbs_partition) | = CON_KEEP. | |||
| DATA(ld_memid_proj) | = ' '. | |||
| "SELECT single TABIX FROM SY INTO @DATA(ld_v_entry_index). | ||||
| "SELECT single IDENT FROM TCJ41 INTO @DATA(ld_v_ident). | ||||
| DATA(ld_memid_prps) | = ' '. | |||
| DATA(ld_memid_prhi) | = ' '. | |||
| "SELECT single MARK FROM RCJ_MARKL INTO @DATA(ld_v_wbs_partition). | ||||
| "SELECT single TRTYP FROM TC10 INTO @DATA(ld_e_beakz_proj). | ||||
Search for further information about these or an SAP related objects