MQEVA_DS 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 MQEVA_DS 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
QSS7_CREATE_DOCUMENT CALL FUNCTION 'QSS7_CREATE_DOCUMENT' EXPORTING iv_name = 'QAVE' is_dataobject = ls_qave IMPORTING ev_document = lv_document EXCEPTIONS failed = 1 OTHERS = 2.
QSS7_CREATE_SIGNATURE_LOT_UD CALL FUNCTION 'QSS7_CREATE_SIGNATURE_LOT_UD' EXPORTING is_meta = ls_meta iv_document = lv_document is_sign_remark = ls_sign_remark iv_sign_type = qals-sign_type_ud iv_signstrat = qals-signstrat_ud is_qals = QALS IMPORTING ev_sign_id = lv_sign_id ev_sign_state = lv_sign_state EXCEPTIONS failed = 1 OTHERS = 2.
QSS7_GET_STEPS_WITH_DOC CALL FUNCTION 'QSS7_GET_STEPS_WITH_DOC' EXPORTING iv_sign_id = g_mktb-sign_id IMPORTING et_sign_verify_step_tab = lt_sign_steps EXCEPTIONS failed = 1 OTHERS = 2.
QSS7_DISPLAY_STEPS CALL FUNCTION 'QSS7_DISPLAY_STEPS' EXPORTING it_sign_verify_steps = lt_sign_steps EXCEPTIONS failed = 1 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.