REABILLCORR is a standard Executable ABAP Report 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 REABILLCORR into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
EABICO - Bill Correction
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.
Selection Text: OPBEL = D Print Document Number
Title: Bill Correction
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
EECIC_FRWLAYOUT_PBO CALL FUNCTION 'EECIC_FRWLAYOUT_PBO' EXPORTING x_handle = ls_hid-handle x_set_mode = abap_true x_tit = '0400' x_tit_prog = 'SAPLEABILL_CORR' * X_TIT_V1 = * X_TIT_V2 = * X_TIT_V3 = * X_TIT_V4 = x_pf_stat = '0400_BASE' x_pf_prog = 'SAPLEABILL_CORR' * X_PF_EXCL = EXCEPTIONS OTHERS = 0.
CCM_APPL_AREA1_EV_CONF CALL FUNCTION 'CCM_APPL_AREA1_EV_CONF' EXPORTING handle = ls_vis-handle x_explicit = abap_true x_profile = 'EABILL_COR' EXCEPTIONS * INVALID_HANDLE = 1 OTHERS = 0.
CRM_CIC_NAV_AREA_EV_CONFMOD CALL FUNCTION 'CRM_CIC_NAV_AREA_EV_CONFMOD' EXPORTING handle = ls_vis-handle x_explicit = abap_true x_profile = 'EABILL_COR' EXCEPTIONS * INVALID_HANDLE = 1 OTHERS = 0.
CIC_EVENT_RAISE CALL FUNCTION 'CIC_EVENT_RAISE' EXPORTING event = 'EABILL_CORR_OPBEL' p1 = opbel * P2 = * P3 = * P4 = * P5 means no close for workspace p5 = abap_true * MESSAGE_REQUESTED = * MESSAGE_ID = * MESSAGE_TYPE = * MESSAGE_NUMBER = * TABLES * EVENT_ERRORS = * T1 = * T2 = * T3 = * T4 = * T5 = EXCEPTIONS * EVENT_CURRENTLY_ACTIVE = 1 * EVENT_HANDLER_FAILED = 2 OTHERS = 0.
CIC_EVENT_RAISE CALL FUNCTION 'CIC_EVENT_RAISE' EXPORTING event = 'SEARCH_TARGET_FOUND' p1 = gs_erdk-partner p2 = 'ISUPARTNER' * P3 = * P4 = * P5 = * MESSAGE_REQUESTED = * MESSAGE_ID = * MESSAGE_TYPE = * MESSAGE_NUMBER = TABLES * EVENT_ERRORS = t1 = lt_add_sels * T2 = * T3 = * T4 = * T5 = EXCEPTIONS * EVENT_CURRENTLY_ACTIVE = 1 * EVENT_HANDLER_FAILED = 2 OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.