FKJO_CLOSE_RUN 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 FKJO_CLOSE_RUN 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.
Title: Scheduling a Run with Processing Steps
Text Symbol: 010 = , to indicate run as being executed
Text Symbol: 011 = Run set to incorrect
Text Symbol: 012 = Run set to executed
Text Symbol: 013 = Submit of FKJO_CREATE_CHAIN was successful
Text Symbol: 014 = Close container immedtly:
Text Symbol: 015 = Container is closed:
Text Symbol: 016 = Error when closing container
Text Symbol: 022 = Scheduling of &1 was successful
Text Symbol: 027 = For run ID
Text Symbol: 001 = Run closed to further additions
Text Symbol: 002 = Run ID not found
Text Symbol: 003 = Unknown error when determining run information
Text Symbol: 004 = Error in database access for closing the run
Text Symbol: 005 = Closing run with run ID
Text Symbol: 006 = , to indicate run as being incorrect
Text Symbol: 007 = For container
Text Symbol: 008 = Schedule FKJO_CLOSE_RUN for ID
Text Symbol: 009 = Error during DB access when trying
Text Symbol: 038 = Error from FKJO_CNTR_START_JOB:rc=
Text Symbol: 039 = Caution: Process Chain Root not
Text Symbol: 040 = No Process Chains:
Text Symbol: 041 = Caution: Process Chain Root not
Text Symbol: 042 = "closed"
Text Symbol: 043 = Start CREATE_CHAIN
Text Symbol: 044 = "closed"
Text Symbol: 131 = Dispatch
Text Symbol: 029 = FKJO_CLOSE_RUN successfully scheduled
Text Symbol: 030 = CONTAINER Create: Parameter mssg
Text Symbol: 031 = CONTAINER Create: Container not found
Text Symbol: 032 = Schedule CLOSE for Process Chain
Text Symbol: 033 = Close job will be scheduled for ID
Text Symbol: 034 = Scheduling
Text Symbol: 035 = No Process Chain Roots Permitted
Text Symbol: 036 = No Process Chain Steps Permitted
Text Symbol: 037 = Error from FKJO_CNTR_START_JOB:rc=
INCLUDE FKJO_CNTRCHAIN.
No SAP DATABASE tables are accessed within this REPORT code!
FKJO_CNTR_MSG CALL FUNCTION 'FKJO_CNTR_MSG' EXPORTING REPNAME = 'FKJO_CLOSE_RUN' DATUM = SY-DATUM ZEIT = SY-UZEIT MSG = S RUNID = RUNID EXCEPTIONS OTHERS = 0.
FKJO_GET_RUN_INFO CALL FUNCTION 'FKJO_GET_RUN_INFO' EXPORTING I_RUNID = RUNID IMPORTING E_START_DATE = SD E_START_TIME = ST E_ID = ID EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
FKJO_CNTR_MSG CALL FUNCTION 'FKJO_CNTR_MSG' EXPORTING REPNAME = 'FKJO_CLOSE_RUN' DATUM = SD ZEIT = ST MSG = S MSG_NO = MNO TYP = 'E' RUNID = RUNID.
FKJO_CNTR_MSG CALL FUNCTION 'FKJO_CNTR_MSG' EXPORTING REPNAME = 'FKJO_CLOSE_RUN' DATUM = SD ZEIT = ST MSG = S MSG_NO = MNO TYP = MT RUNID = RUNID.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.