SAP Reports / Programs | Cross-Application Components(CA) SAP CA

CNV_CMIS_M_10_FORMS SAP ABAP INCLUDE - Include CNV_CMIS_M_10_DOM_FORM - general routines







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


Text pool values


Title: Include CNV_CMIS_M_10_DOM_FORM - general routines


INCLUDES used within this REPORT CNV_CMIS_M_10_FORMS

No INCLUDES are used within this REPORT code!


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:

CNV_MBT_RFC_GET CALL FUNCTION 'CNV_MBT_RFC_GET' EXPORTING PACKID = P_PACK EXEC_TARGET = 'P' IMPORTING DESTINATION_ID = GF_RFC_DESTINATION TABLES DESTTAB = LT_DESTTAB EXCEPTIONS NO_DESTINATIONS_FOR_PACKID = 1 NO_SPECIFIC_DESTINATION_TYPE = 2 OTHERS = 3.

CNV_MBT_ADM_PACKAGE_INFO CALL FUNCTION 'CNV_MBT_ADM_PACKAGE_INFO' DESTINATION GF_RFC_DESTINATION EXPORTING PACKID = P_PACK IMPORTING PROJECT = GF_PROJECT SUBPROJECT = GF_SUBPROJECT EXCEPTIONS COMMUNICATION_FAILURE = 1 MESSAGE GF_RFC_TEXT SYSTEM_FAILURE = 2 MESSAGE GF_RFC_TEXT OTHERS = 3.

CNV_MBT_STATE_GET CALL FUNCTION 'CNV_MBT_STATE_GET' DESTINATION GF_RFC_DESTINATION EXPORTING PACKID = P_PACK PHASE = P_PHASE ACTIVITY_ID = P_ACT_ID ALL_AS_TABLE = GC_YES TABLES T_EX_CNVMBTSTATE = GT_STATE EXCEPTIONS COMMUNICATION_FAILURE = 1 MESSAGE GF_RFC_TEXT SYSTEM_FAILURE = 2 MESSAGE GF_RFC_TEXT ENTRY_DOES_NOT_EXIST = 3 OTHERS = 4.

CNV_MBT_DOCU_ACTIVITY CALL FUNCTION 'CNV_MBT_DOCU_ACTIVITY' EXPORTING IV_ACTIVITY_ID = P_ACT_ID EXCEPTIONS ACTIVITY_NOT_EXISTS = 1 DOCUMENT_ID_NOT_EXISTS = 2 OTHERS = 3.

CNV_CMIS_M_20_CHECK_MAPPING CALL FUNCTION 'CNV_CMIS_M_20_CHECK_MAPPING' EXPORTING IM_PACK = P_PACK IMPORTING EX_CLIENT_RCV = LV_CLIENT_RCV EX_CLIENT_SND = LV_CLIENT_SND EX_SYSID_RCV = LV_SYSID_RCV EX_SYSID_SND = LV_SYSID_SND EX_LOGSYS_SND = LV_LOGSYS_SND EX_LOGSY_RCV = LV_LOGSYS_RCV NE_MANDT_SND = NE_MANDT_SND NE_MANDT_RCV = NE_MANDT_RCV NE_LOGSYS_SND = NE_LOGSYS_SND NE_LOGSYS_RCV = NE_LOGSYS_RCV TABLES IT_RENAME = GT_RENAME EXCEPTIONS UNEXPECTED_ERROR = 1 ERROR_GET_RFC = 2 ERROR_GET_SYSTEM_INFO_SND = 3 ERROR_GET_SYSTEM_INFO_RCV = 4 OTHERS = 5.

CNV_CMIS_M_10_TRACE_WRITE CALL FUNCTION 'CNV_CMIS_M_10_TRACE_WRITE' TABLES XT_CNVCMIS_EXEC = GT_CMIS_TRACE.

GET_DYNP_VALUE

CNV_CMIS_M_10_GET_DYNP_VALUE * CALL FUNCTION 'GET_DYNP_VALUE' CALL FUNCTION 'CNV_CMIS_M_10_GET_DYNP_VALUE' EXPORTING I_FIELD = P_FIELD I_REPID = P_REPID I_DYNNR = P_DYNNR CHANGING O_VALUE = P_VALUE.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' "24062008 EXPORTING PERCENTAGE = '20' TEXT = ''.

CNV_MBT_CONTROL_TABLES_GET CALL FUNCTION 'CNV_MBT_CONTROL_TABLES_GET' DESTINATION GF_RFC_DESTINATION EXPORTING PACKID = P_PACK SELECT_CNVMBTCOBJ = P_COBJ SELECT_CNVMBTDOMS = P_DOMS SELECT_CNVMBTTABLES = P_TABS SELECT_CNVMBTRULES = P_RULES SELECT_CNVMBTRULEPARS = P_RULEPARS SELECT_CNVMBTFIELDS = P_FIELDS SELECT_CNVMBTFIPARS = P_FIELDPARS TABLES I_TABLES = LT_TABLES E_CNVMBTCOBJ = GT_COBJ E_CNVMBTDOMS = GT_DOM E_CNVMBTTABLES = GT_TABS E_CNVMBTRULES = GT_RULES E_CNVMBTRULEPARS = GT_RULEPARS E_CNVMBTFIELDS = GT_FIELDS E_CNVMBTFIPARS = GT_FIELDPARS EXCEPTIONS COMMUNICATION_FAILURE = 1 MESSAGE GF_RFC_TEXT SYSTEM_FAILURE = 2 MESSAGE GF_RFC_TEXT OTHERS = 3.

CNV_CMIS_CONTROL_TABLES_GET CALL FUNCTION 'CNV_CMIS_CONTROL_TABLES_GET' DESTINATION GF_RFC_DESTINATION EXPORTING PACKID = P_PACK SELECT_CNVCMIS_RENAME = P_RENAME SELECT_CNVCMIS_TB_COUNT = P_COUNT TABLES E_CNVCMIS_RENAME = GT_RENAME E_CNVCMIS_TB_COUNT = GT_TB_COUNT EXCEPTIONS COMMUNICATION_FAILURE = 1 MESSAGE GF_RFC_TEXT SYSTEM_FAILURE = 2 MESSAGE GF_RFC_TEXT OTHERS = 3.

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING TITLEBAR = P_TITLEBAR TEXT_QUESTION = P_QUESTION ICON_BUTTON_1 = 'ICON_OKAY' ICON_BUTTON_2 = 'ICON_CANCEL' * DEFAULT_BUTTON = '1' DISPLAY_CANCEL_BUTTON = P_CANCEL * START_COLUMN = 25 * START_ROW = 6 IMPORTING ANSWER = P_ANSWER EXCEPTIONS TEXT_NOT_FOUND = 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 CNV_CMIS_M_10_FORMS or its description.