SAP Reports / Programs

CNV_CMIS_M_20_POSTPROCES_EXEC SAP ABAP Report - CMIS: Execute post processing actions







CNV_CMIS_M_20_POSTPROCES_EXEC 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 CNV_CMIS_M_20_POSTPROCES_EXEC 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 CNV_CMIS_M_20_POSTPROCES_EXEC. "Basic submit
SUBMIT CNV_CMIS_M_20_POSTPROCES_EXEC AND RETURN. "Return to original report after report execution complete
SUBMIT CNV_CMIS_M_20_POSTPROCES_EXEC VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: CMIS: Execute post processing actions


INCLUDES used within this REPORT CNV_CMIS_M_20_POSTPROCES_EXEC

INCLUDE CNV_MBT_SM_PARAMS.


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:

JOB_OPEN CALL FUNCTION 'JOB_OPEN' EXPORTING JOBNAME = LV_JOBNAME IMPORTING JOBCOUNT = LV_JOBCOUNT EXCEPTIONS CANT_CREATE_JOB = 1 INVALID_JOB_DATA = 2 JOBNAME_MISSING = 3 OTHERS = 4.

JOB_CLOSE CALL FUNCTION 'JOB_CLOSE' EXPORTING JOBCOUNT = LV_JOBCOUNT JOBNAME = LV_JOBNAME STRTIMMED = 'X' EXCEPTIONS CANT_START_IMMEDIATE = 1 INVALID_STARTDATE = 2 JOBNAME_MISSING = 3 JOB_CLOSE_FAILED = 4 JOB_NOSTEPS = 5 JOB_NOTEX = 6 LOCK_FAILED = 7 OTHERS = 9.

SHOW_JOBSTATE CALL FUNCTION 'SHOW_JOBSTATE' EXPORTING JOBCOUNT = -JOBCOUNT JOBNAME = -JOBNAME IMPORTING ABORTED = LS_JOBSTAT-ABORT FINISHED = LS_JOBSTAT-FIN PRELIMINARY = LS_JOBSTAT-PRELIM READY = LS_JOBSTAT-READY RUNNING = LS_JOBSTAT-RUN SCHEDULED = LS_JOBSTAT-SCHED EXCEPTIONS JOBCOUNT_MISSING = 1 JOBNAME_MISSING = 2 JOB_NOTEX = 3 OTHERS = 4.

CNV_MBT_RFC_PCL CALL FUNCTION 'CNV_MBT_RFC_PCL' EXPORTING PACKID = P_PACK IMPORTING DESTINATION_ID = LV_RFCDEST_PCL EXCEPTIONS NO_DESTINATIONS_FOR_PACKID = 1 NO_PCL_DESTINATION_FOR_PACKID = 2 OTHERS = 3.

CNV_MBT_RFC_SYSTEM_INFO_GET CALL FUNCTION 'CNV_MBT_RFC_SYSTEM_INFO_GET' DESTINATION LV_RFCDEST_PCL IMPORTING SYSTEM_CLIENT = LV_RCV_CLNT EXCEPTIONS COMMUNICATION_FAILURE = 98 MESSAGE GD_MSGTEXT SYSTEM_FAILURE = 99 MESSAGE GD_MSGTEXT.

RFC_READ_TABLE CALL FUNCTION 'RFC_READ_TABLE' DESTINATION LV_RFCDEST_PCL EXPORTING QUERY_TABLE = 'CNVCMIS_POSTPROL' DELIMITER = LC_DELIMITER TABLES OPTIONS = LT_OPTIONS FIELDS = LT_FIELDS DATA = LT_DATA EXCEPTIONS TABLE_NOT_AVAILABLE = 1 TABLE_WITHOUT_DATA = 2 OPTION_NOT_VALID = 3 FIELD_NOT_VALID = 4 NOT_AUTHORIZED = 5 DATA_BUFFER_EXCEEDED = 6 OTHERS = 7.



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 CNV_CMIS_M_20_POSTPROCES_EXEC or its description.