SAP CJTR_GET_PROJECT_DATES Function Module for
CJTR_GET_PROJECT_DATES is a standard cjtr get project dates SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 cjtr get project dates FM, simply by entering the name CJTR_GET_PROJECT_DATES into the relevant SAP transaction such as SE37 or SE38.
Function Group: CJTR
Program Name: SAPLCJTR
Main Program: SAPLCJTR
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CJTR_GET_PROJECT_DATES 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 'CJTR_GET_PROJECT_DATES'".
IMPORTING
ART = "
PRPSWA_EXP = "
PRTEWA_EXP = "
PSP_ID = "
PSTDAT = "
STRDAT = "
PROJWA_EXP = "
TCJ41_EXP = "
WBS_POST1_EXP = "
CALE_EXP = "
ENDDAT = "
FORM = "
IDENT_EXP = "
NONET_EXP = "
PENDAT = "
PRIOR = "
PROJNR = "
EXPORTING Parameters details for CJTR_GET_PROJECT_DATES
ART -
Data type: RCWBT-PLARTOptional: No
Call by Reference: No ( called with pass by value option)
PRPSWA_EXP -
Data type: PRPSOptional: No
Call by Reference: No ( called with pass by value option)
PRTEWA_EXP -
Data type: PRTEOptional: No
Call by Reference: No ( called with pass by value option)
PSP_ID -
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
PSTDAT -
Data type: PROJ-PLFAZOptional: No
Call by Reference: No ( called with pass by value option)
STRDAT -
Data type: PRTE-PSTRTOptional: No
Call by Reference: No ( called with pass by value option)
PROJWA_EXP -
Data type: PROJOptional: No
Call by Reference: No ( called with pass by value option)
TCJ41_EXP -
Data type: TCJ41Optional: No
Call by Reference: No ( called with pass by value option)
WBS_POST1_EXP -
Data type: PRPS-POST1Optional: No
Call by Reference: No ( called with pass by value option)
CALE_EXP -
Data type: T001W-FABKLOptional: No
Call by Reference: No ( called with pass by value option)
ENDDAT -
Data type: PRTE-PENDEOptional: No
Call by Reference: No ( called with pass by value option)
FORM -
Data type: RCWBT-PLFRMOptional: No
Call by Reference: No ( called with pass by value option)
IDENT_EXP -
Data type: RCWBT-IDENTOptional: No
Call by Reference: No ( called with pass by value option)
NONET_EXP -
Data type: PRLST-SELKZOptional: No
Call by Reference: No ( called with pass by value option)
PENDAT -
Data type: PROJ-PLSEZOptional: No
Call by Reference: No ( called with pass by value option)
PRIOR -
Data type: PRPS-PSPRIOptional: No
Call by Reference: No ( called with pass by value option)
PROJNR -
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CJTR_GET_PROJECT_DATES 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_art | TYPE RCWBT-PLART, " | |||
| lv_prpswa_exp | TYPE PRPS, " | |||
| lv_prtewa_exp | TYPE PRTE, " | |||
| lv_psp_id | TYPE C, " | |||
| lv_pstdat | TYPE PROJ-PLFAZ, " | |||
| lv_strdat | TYPE PRTE-PSTRT, " | |||
| lv_projwa_exp | TYPE PROJ, " | |||
| lv_tcj41_exp | TYPE TCJ41, " | |||
| lv_wbs_post1_exp | TYPE PRPS-POST1, " | |||
| lv_cale_exp | TYPE T001W-FABKL, " | |||
| lv_enddat | TYPE PRTE-PENDE, " | |||
| lv_form | TYPE RCWBT-PLFRM, " | |||
| lv_ident_exp | TYPE RCWBT-IDENT, " | |||
| lv_nonet_exp | TYPE PRLST-SELKZ, " | |||
| lv_pendat | TYPE PROJ-PLSEZ, " | |||
| lv_prior | TYPE PRPS-PSPRI, " | |||
| lv_projnr | TYPE C. " |
|   CALL FUNCTION 'CJTR_GET_PROJECT_DATES' " |
| IMPORTING | ||
| ART | = lv_art | |
| PRPSWA_EXP | = lv_prpswa_exp | |
| PRTEWA_EXP | = lv_prtewa_exp | |
| PSP_ID | = lv_psp_id | |
| PSTDAT | = lv_pstdat | |
| STRDAT | = lv_strdat | |
| PROJWA_EXP | = lv_projwa_exp | |
| TCJ41_EXP | = lv_tcj41_exp | |
| WBS_POST1_EXP | = lv_wbs_post1_exp | |
| CALE_EXP | = lv_cale_exp | |
| ENDDAT | = lv_enddat | |
| FORM | = lv_form | |
| IDENT_EXP | = lv_ident_exp | |
| NONET_EXP | = lv_nonet_exp | |
| PENDAT | = lv_pendat | |
| PRIOR | = lv_prior | |
| PROJNR | = lv_projnr | |
| . " CJTR_GET_PROJECT_DATES | ||
ABAP code using 7.40 inline data declarations to call FM CJTR_GET_PROJECT_DATES
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 PLART FROM RCWBT INTO @DATA(ld_art). | ||||
| "SELECT single PLFAZ FROM PROJ INTO @DATA(ld_pstdat). | ||||
| "SELECT single PSTRT FROM PRTE INTO @DATA(ld_strdat). | ||||
| "SELECT single POST1 FROM PRPS INTO @DATA(ld_wbs_post1_exp). | ||||
| "SELECT single FABKL FROM T001W INTO @DATA(ld_cale_exp). | ||||
| "SELECT single PENDE FROM PRTE INTO @DATA(ld_enddat). | ||||
| "SELECT single PLFRM FROM RCWBT INTO @DATA(ld_form). | ||||
| "SELECT single IDENT FROM RCWBT INTO @DATA(ld_ident_exp). | ||||
| "SELECT single SELKZ FROM PRLST INTO @DATA(ld_nonet_exp). | ||||
| "SELECT single PLSEZ FROM PROJ INTO @DATA(ld_pendat). | ||||
| "SELECT single PSPRI FROM PRPS INTO @DATA(ld_prior). | ||||
Search for further information about these or an SAP related objects