RJITCHED 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 RJITCHED 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!
JIT01_SELECT_JITHD_JITIT CALL FUNCTION 'JIT01_SELECT_JITHD_JITIT' EXPORTING * SEL_JITHD_JINUM_IT = sel_jithd_custo_it = custo_sel_lt sel_jithd_prodn_it = prodn_gt sel_jithd_seqnr_it = seqnr_gt sel_jithd_vetyp_it = vetyp_gt sel_jithd_vehid_it = vehid_gt * SEL_JITHD_TEXHD_IT = sel_jithd_sspez_it = sspez_gt * SEL_JITHD_NACHB_IT = sel_jithd_abtyp_it = abtyp_gt * SEL_JITIT_POSID_IT = * SEL_JITIT_JINUM_IT = * SEL_JITIT_ANLIE_IT = * SEL_JITIT_CNTRL_IT = * SEL_JITIT_PDATE_IT = * SEL_JITIT_EXTST_IT = * SEL_JITIT_EXDAT_IT = * SEL_JITIT_INTST_IT = * SEL_JITIT_INDAT_IT = * SEL_JITIT_FERPA_IT = * SEL_JITIT_RUECK_IT = * SEL_JITIT_BACKF_IT = * SEL_JITIT_EXIDV_IT = * SEL_JITIT_DDATE_IT = * SEL_JITIT_VBELN_VL_IT = TABLES jit_hd_it_et = jit_hd_it_lt EXCEPTIONS no_record_found = 1 OTHERS = 2.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING defaultoption = 'N' textline1 = textline_lv textline2 = text-006 titel = text-004 * START_COLUMN = 25 * START_ROW = 6 * CANCEL_DISPLAY = 'X' IMPORTING answer = answer_lv "J=yes/N=no/A=exit EXCEPTIONS OTHERS = 0.
JIT01_READ_JITED CALL FUNCTION 'JIT01_READ_JITED' EXPORTING jinum_iv = jit_hd_it_ls-jinum TABLES jited_et = jited_lt EXCEPTIONS * not_found = 1 OTHERS = 0.
IDOC_READ_COMPLETELY CALL FUNCTION 'IDOC_READ_COMPLETELY' EXPORTING document_number = jited_ls-edi_docnum IMPORTING * IDOC_CONTROL = number_of_data_records = nr_data_lv number_of_status_records = nr_status_lv TABLES int_edids = edids_lt int_edidd = edidd_lt EXCEPTIONS document_not_exist = 1 document_number_invalid = 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.