FCJGR_GETDATAF01 is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter FCJGR_GETDATAF01 into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CJDW_GLOBAL_VALUES CALL FUNCTION 'CJDW_GLOBAL_VALUES' IMPORTING V_PROJ_AUTHD = EXP_DISP_AUTH.
CJDW_PRPS_GET CALL FUNCTION 'CJDW_PRPS_GET' EXPORTING INDEX = IMP_PSIND IMPORTING AUT_DISPL = EXP_DISP_AUTH EXCEPTIONS CANCEL = 1 NOT_FOUND = 2 OTHERS = 3.
CO_BT_CAUFV_READ_WITH_INDEX CALL FUNCTION 'CO_BT_CAUFV_READ_WITH_INDEX' EXPORTING INDEX = IMP_PSIND IMPORTING CAUFVD_EXP = LS_CAUFVD EXCEPTIONS ENTRY_NOT_FOUND = 1 OTHERS = 2.
CO_BT_CAUFV_READ_WITH_INDEX CALL FUNCTION 'CO_BT_CAUFV_READ_WITH_INDEX' EXPORTING INDEX = IMP_NWIND IMPORTING CAUFVD_EXP = LS_CAUFVD EXCEPTIONS ENTRY_NOT_FOUND = 1 OTHERS = 2.
CO_BT_AFVG_READ_WITH_INDEX CALL FUNCTION 'CO_BT_AFVG_READ_WITH_INDEX' EXPORTING INDEX = IMP_ACIND IMPORTING AUTH_EXP = LS_AUTH_OPR EXCEPTIONS ERROR_READ_AFVG = 1 OTHERS = 2.
CO_BT_AFVG_READ_WITH_INDEX CALL FUNCTION 'CO_BT_AFVG_READ_WITH_INDEX' EXPORTING INDEX = IMP_VEIND IMPORTING AUTH_EXP = LS_AUTH_OPR EXCEPTIONS ERROR_READ_AFVG = 1 OTHERS = 2.
NW_BT_MLST_READ_WITH_INDEX CALL FUNCTION 'NW_BT_MLST_READ_WITH_INDEX' EXPORTING INDEX_IMP = IMP_MSIND IMPORTING AUTH_EXP = LS_AUTH_MST EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
CO_BT_AFVG_READ_WITH_INDEX CALL FUNCTION 'CO_BT_AFVG_READ_WITH_INDEX' EXPORTING INDEX = IMP_ACIND IMPORTING AUTH_EXP = LS_AUTH_OPR EXCEPTIONS ERROR_READ_AFVG = 1 OTHERS = 2.
CJWB_MILESTONE_INDEX_READ CALL FUNCTION 'CJWB_MILESTONE_INDEX_READ' EXPORTING INDEX_IMP = IMP_MSIND IMPORTING MLSTB_EXP = MLST_PSP EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
CJDW_PRPS_GET CALL FUNCTION 'CJDW_PRPS_GET' EXPORTING INDEX = IMP_PSIND IMPORTING AUT_DISPL = EXP_DISP_AUTH EXCEPTIONS CANCEL = 1 NOT_FOUND = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.