ROIKPRTP 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 ROIKPRTP into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
O4PQ - Distribute orders
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: LOGSYS = Logical System
Selection Text: MESTYP = Message type
Selection Text: P_ABFER = Trnsp.proc.type
Selection Text: P_AGAIN = Resend selected orders
Selection Text: P_ALLMSG = Send IDoc for all msg. types
Selection Text: P_BLKSZ =
Selection Text: P_ENQU =
Selection Text: P_NPROT = Display selection error
Selection Text: P_SELBL = Display selection screen
Selection Text: P_STAT4 = Resend Planned Orders
Selection Text: P_SVTRA = Selection variants
Selection Text: P_TPLST = TransportPlanningPt
Selection Text: TPI_CONV = Use TPI conversion (not ISO)
Title: TPI Planning Request Transfer
INCLUDE SELMESTY.
No SAP DATABASE tables are accessed within this REPORT code!
OIK_TPI_PROTOCOL_START CALL FUNCTION 'OIK_TPI_PROTOCOL_START' EXPORTING I_PROTOCOL_DETAIL_LEVEL = '4' I_PROTOCOL_REFRESH = 'X' EXCEPTIONS OTHERS = 1.
OIK_TPI_REPLENIS_ORDER_FOR_TPS CALL FUNCTION 'OIK_TPI_REPLENIS_ORDER_FOR_TPS' EXPORTING SELECTION_SET = P_SVTRA OPTION_SELECTION_SCREEN = P_SELBL SHIPMENT_PROCESSING_TYPE = ABF OPTION_SEARCH_STRATEGY = 'I' NO_DISPOSITION = 'X' BLOCK_SIZE = P_BLKSZ NO_ENQUEUE = P_ENQU SHIP_PLAN_POINT = P_TPLST IDOC_FOR_ALL_MESSAGES = P_ALLMSG MESSAGE_TYPE = DEFAULT_MESSAGE IDOCTYPE = C_IDOCTYP RESEND = P_AGAIN APPLIC = APPLICATION I_OIKPEXORD_4 = P_STAT4 "SO7K001952 DJ IMPORTING NUMBER_OF_ORDERS = ORDER_NUM NUMBER_OF_ERRORS = ERROR_NUM TABLES SELECT_OPTIONS = XRSPARAMS ORDER_HEADER = XVBAK ORDER_ITEM = XVBAP ORDER_ITEM_VBEP = XVBEP ORDER_ITEM_OIK37 = XOIK37 EXCEPTIONS OTHERS = 1.
OIK_TPI_PROTOCOL_STOP CALL FUNCTION 'OIK_TPI_PROTOCOL_STOP' EXPORTING I_PROTOCOL_REFRESH = ' ' EXCEPTIONS OTHERS = 1.
OIK_TPI_ORDER_FOR_TRANSPORT_LO CALL FUNCTION 'OIK_TPI_ORDER_FOR_TRANSPORT_LO' EXPORTING INTERACT_STATUS = P_NPROT EXCEPTIONS OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.