AAP00F05 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 AAP00F05 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: Subroutines for Processing
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
QC10_EXIT_OPEN_FORM CALL FUNCTION 'QC10_EXIT_OPEN_FORM' EXPORTING i_language = nast-spras i_qcvk = g_cert-qcvk i_delivery_view_item = g_cert-vbdpl i_delivery_view_head = g_cert-vbdkl TABLES t_delivery_view_all_items_tab = tvbdpl CHANGING print_options = itcpo layout_set = l_fonam archive_index = toa_dara archive_params = arc_params device = l_device ie_mail_sender = l_sender ie_mail_recipient = l_recipient EXCEPTIONS OTHERS = 0.
OPEN_FORM CALL FUNCTION 'OPEN_FORM' EXPORTING form = l_fonam language = nast-spras options = itcpo archive_index = toa_dara archive_params = arc_params device = l_device dialog = l_indicator_dialog mail_sender = l_sender mail_recipient = l_recipient EXCEPTIONS canceled = 1 device = 2 form = 3 options = 4 unclosed = 5 mail_options = 6 archive_error = 7 OTHERS = 8.
CTMS_DDB_INIT CALL FUNCTION 'CTMS_DDB_INIT'.
CTMS_CONFIGURATION_INITIALIZER CALL FUNCTION 'CTMS_CONFIGURATION_INITIALIZER'.
CLOSE_FORM CALL FUNCTION 'CLOSE_FORM' IMPORTING result = g_itcpp_after_close TABLES otfdata = l_otfdata_tab EXCEPTIONS SEND_ERROR = 02 "note 1592538 OTHERS = 01.
CONVERT_OTF CALL FUNCTION 'CONVERT_OTF' EXPORTING format = c_format_pdf IMPORTING bin_filesize = g_filesize TABLES otf = l_otfdata_tab lines = g_pdf_tab EXCEPTIONS err_max_linewidth = 1 err_format = 2 err_conv_not_possible = 3 OTHERS = 4.
CTMS_DDB_INIT CALL FUNCTION 'CTMS_DDB_INIT'.
CTMS_CONFIGURATION_INITIALIZER CALL FUNCTION 'CTMS_CONFIGURATION_INITIALIZER'.
MESSAGES_STOP CALL FUNCTION 'MESSAGES_STOP' EXCEPTIONS a_message = 1 e_message = 2 i_message = 3 w_message = 4 OTHERS = 5.
WRITE_FORM CALL FUNCTION 'WRITE_FORM' EXPORTING element = pi_element window = l_name type = l_type EXCEPTIONS OTHERS = 01.
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW' EXPORTING corrections_option = c_kreuz object = 'Zeugnisansicht'(020) send_if_one = c_kreuz show_linno = space IMPORTING corrections_wanted = pe_corrections_wanted EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.