SAP CJGL_LIST_WORK_LOAD Function Module for NOTRANSL: Zeigt eingelastete Kapabedarfe pro Arbeitsplatz









CJGL_LIST_WORK_LOAD is a standard cjgl list work load 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: Zeigt eingelastete Kapabedarfe pro Arbeitsplatz 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 cjgl list work load FM, simply by entering the name CJGL_LIST_WORK_LOAD into the relevant SAP transaction such as SE37 or SE38.

Function Group: CJGL
Program Name: SAPLCJGL
Main Program: SAPLCJGL
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CJGL_LIST_WORK_LOAD 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 'CJGL_LIST_WORK_LOAD'"NOTRANSL: Zeigt eingelastete Kapabedarfe pro Arbeitsplatz
EXPORTING
* PROFILID_IMP = "
* LISTVAR_IMP = "
* TCJ41_IMP = "
* TC10_IMP = "
PBOARD_ACT = "

TABLES
CJDI_DISP = "
.



IMPORTING Parameters details for CJGL_LIST_WORK_LOAD

PROFILID_IMP -

Data type: TCY30-PROFILE_ID
Optional: Yes
Call by Reference: No ( called with pass by value option)

LISTVAR_IMP -

Data type: TCNVL-LSTVAR
Optional: Yes
Call by Reference: No ( called with pass by value option)

TCJ41_IMP -

Data type: TCJ41
Optional: Yes
Call by Reference: No ( called with pass by value option)

TC10_IMP -

Data type: TC10
Optional: Yes
Call by Reference: No ( called with pass by value option)

PBOARD_ACT -

Data type: RCWBT-SELKZ
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for CJGL_LIST_WORK_LOAD

CJDI_DISP -

Data type: RCJ_MARKL
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for CJGL_LIST_WORK_LOAD 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_cjdi_disp  TYPE STANDARD TABLE OF RCJ_MARKL, "   
lv_profilid_imp  TYPE TCY30-PROFILE_ID, "   
lv_listvar_imp  TYPE TCNVL-LSTVAR, "   
lv_tcj41_imp  TYPE TCJ41, "   
lv_tc10_imp  TYPE TC10, "   
lv_pboard_act  TYPE RCWBT-SELKZ. "   

  CALL FUNCTION 'CJGL_LIST_WORK_LOAD'  "NOTRANSL: Zeigt eingelastete Kapabedarfe pro Arbeitsplatz
    EXPORTING
         PROFILID_IMP = lv_profilid_imp
         LISTVAR_IMP = lv_listvar_imp
         TCJ41_IMP = lv_tcj41_imp
         TC10_IMP = lv_tc10_imp
         PBOARD_ACT = lv_pboard_act
    TABLES
         CJDI_DISP = lt_cjdi_disp
. " CJGL_LIST_WORK_LOAD




ABAP code using 7.40 inline data declarations to call FM CJGL_LIST_WORK_LOAD

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 PROFILE_ID FROM TCY30 INTO @DATA(ld_profilid_imp).
 
"SELECT single LSTVAR FROM TCNVL INTO @DATA(ld_listvar_imp).
 
 
 
"SELECT single SELKZ FROM RCWBT INTO @DATA(ld_pboard_act).
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!