SAP Reports / Programs | Supply Chain Management | SCM Basis(SCM-BAS) SAP SCM

REVCHREQ SAP ABAP Report - Request APO Planning Results







REVCHREQ 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 REVCHREQ into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT REVCHREQ. "Basic submit
SUBMIT REVCHREQ AND RETURN. "Return to original report after report execution complete
SUBMIT REVCHREQ VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: SO_TSTTO = Time stamp for end date
Selection Text: SO_TSTFR = Time stamp for start date
Selection Text: SO_R3TYP = External order category
Selection Text: SO_ORDTP = APO order category
Selection Text: SO_ORDNR = Order number
Selection Text: SO_ORDID = Order GUID
Selection Text: SO_METH = Method
Selection Text: SO_MATNR = Material number
Selection Text: SO_LTTP = Target location category
Selection Text: SO_LTONR = Target location
Selection Text: SO_LOCTP = Source location category
Selection Text: SO_LOCNR = Source location
Selection Text: SO_CREAT = Time stamp for creation time
Selection Text: P_LOGSYS = Source system
Selection Text: P_APOSYS = APO system
Title: Request APO Planning Results


INCLUDES used within this REPORT REVCHREQ

INCLUDE CIFTOOLS.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

/SAPAPO/CIF_EC_PLN_REQ CALL FUNCTION '/SAPAPO/CIF_EC_PLN_REQ' DESTINATION p_aposys EXPORTING if_logsys_oltp = p_logsys is_control_parameter = ls_ctrlparams TABLES it_pln_events = lt_ev it_so_meth = so_meth it_so_r3typ = so_r3typ it_so_ordid = so_ordid it_so_ordtp = so_ordtp it_so_ordnr = so_ordnr it_so_matnr = so_matnr it_so_locnr = so_locnr it_so_loctyp = so_loctp it_so_loctonr = so_ltonr it_so_loctotyp = so_lttp it_so_tstfr = so_tstfr it_so_tstto = so_tstto it_so_create = so_creat et_return = lt_return EXCEPTIONS system_failure = 1 MESSAGE lv_msgtxt communication_failure = 2 MESSAGE lv_msgtxt OTHERS = 3.

CIF_ADC_INIT_CONTROL_PARAMETER CALL FUNCTION 'CIF_ADC_INIT_CONTROL_PARAMETER' CHANGING cs_control_parameter = ls_ctrlparams EXCEPTIONS own_logical_system_not_defined = 0 OTHERS = 0.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name REVCHREQ or its description.