RLTREQ00 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use this report to test the interface between an external system (subsystem) and the WM system for creating or cancelling transfer requirements...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RLTREQ00 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.
Selection Text: ELIKZ = "Delivery completed" indicator
Selection Text: BWLVS = Movement type (reset)
Selection Text: EMPFAENG = Partner number of receiver
Selection Text: TBPOS = TR item
Selection Text: SMENG = Quantity to be cancelled
Selection Text: SENDER = Partner number of sender
Selection Text: RFCDEST = Logical RFC destination
Selection Text: P_DIREKT = Select processing directly
Selection Text: P_BREAK = Debugging mode (stop bef.send)
Selection Text: P_BACK = Task in background
Selection Text: MENGE = Quantity (reset)
Selection Text: LZNUM = Reference number
Selection Text: IKZTBSTO = Cancel transfer requirement
Selection Text: IKZTBHIN = Create transfer requirement
Selection Text: IDOC = IDoc Number
Title: Test Report for IDOC Receipt: Confirm TOs (WMTCID01-IDOC)
Text Symbol: 010 = Control data
Text Symbol: 011 = TO data
Text Symbol: 012 = IDoc parameters
Text Symbol: 020 = IDoc(s) transferred to ALE interface
Text Symbol: 100 = Status records found:
Text Symbol: 101 = IDOC number St User Message identification
Text Symbol: 102 = Return table determined for workflow:
Text Symbol: 103 = Parameters IDOC/application object
Text Symbol: 104 = Return code (result) for workflow:
INCLUDE RLIDDATA.
No SAP DATABASE tables are accessed within this REPORT code!
OWN_LOGICAL_SYSTEM_GET CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET' IMPORTING OWN_LOGICAL_SYSTEM = LOGSYSTEM EXCEPTIONS OWN_LOGICAL_SYSTEM_NOT_DEFINED = 01.
ALE_MODEL_INFO_GET CALL FUNCTION 'ALE_MODEL_INFO_GET' EXPORTING MESSAGE_TYPE = 'WMTREQ' RECEIVING_SYSTEM = ' ' SENDING_SYSTEM = ' ' VALIDDATE = SY-DATUM TABLES MODEL_DATA = BMODEL EXCEPTIONS NO_MODEL_INFO_FOUND = 01 OWN_SYSTEM_NOT_DEFINED = 02.
L_IDOC_INPUT_WMTREQ CALL FUNCTION 'L_IDOC_INPUT_WMTREQ' EXPORTING INPUT_METHOD = INPUT_METHOD MASS_PROCESSING = MASS_PROCESSING IMPORTING WORKFLOW_RESULT = WORKFLOW_RESULT APPLICATION_VARIABLE = APPLICATION_VARIABLE IN_UPDATE_TASK = IN_UPDATE_TASK CALL_TRANSACTION_DONE = CALL_TRANSACTION_DONE TABLES IDOC_CONTRL = TIKOPF1 IDOC_DATA = TISEGM1 IDOC_STATUS = IDOC_STATUS RETURN_VARIABLES = RETURN_VARIABLES SERIALIZATION_INFO = ser_info.
INBOUND_IDOC_PROCESS CALL FUNCTION 'INBOUND_IDOC_PROCESS' IN BACKGROUND TASK TABLES IDOC_CONTROL = TIKOPF IDOC_DATA = TISEGM.
INBOUND_IDOC_PROCESS CALL FUNCTION 'INBOUND_IDOC_PROCESS' IN BACKGROUND TASK DESTINATION RFCDEST TABLES IDOC_CONTROL = TIKOPF IDOC_DATA = TISEGM.
INBOUND_IDOC_PROCESS CALL FUNCTION 'INBOUND_IDOC_PROCESS' TABLES IDOC_CONTROL = TIKOPF IDOC_DATA = TISEGM.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RLTREQ00 - Test Report for IDOC Receipt: Confirm TOs (WMTCID01-IDOC) RLTREQ00 - Test Report for IDOC Receipt: Confirm TOs (WMTCID01-IDOC) RLTREORG2 - Storage Bins / Storage Units analysis RLTREORG2 - Storage Bins / Storage Units analysis RLTORD10 - Test program for inbound IDoc: Several TO items per TO RLTORD10 - Test program for inbound IDoc: Several TO items per TO