RNKOVF00 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 RNKOVF00 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: IS-H: Include for ISH_PRINT_KOVL
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISH_FIND_FORMS CALL FUNCTION 'ISH_FIND_FORMS' EXPORTING EINRI = $EINRI * ORGID = ' ' * PRINTER = ' ' * ST_PRINT = 'X' IMPORTING ABNORMAL_END = ABBRUCH TABLES CONDITIONS = BEDING_TAB_FAKT EVENTS = EVENT_TAB_FAKT FORMS = RNFOR_TAB EXCEPTIONS NO_AUTHORITY = 01 NO_EVENT = 02 NO_FORM = 03 NO_PRINTER = 04 NO_STANDARD = 05 NO_TERMINAL = 06.
ISH_FIND_FORMS CALL FUNCTION 'ISH_FIND_FORMS' EXPORTING EINRI = TN01-EINRI * ORGID = $IMV3 PRINTER = $TDDEST TERMINAL = $TERMINAL IMPORTING ABNORMAL_END = ABBRUCH TABLES CONDITIONS = BEDING_TAB_FAKT EVENTS = EVENT_TAB_FAKT FORMS = RNFOR_TAB EXCEPTIONS NO_AUTHORITY = 01 "keine Berechtigung für Formulardruck NO_EVENT = 02 "keine Ereignisse für Formulardruckdaten NO_FORM = 03 "keine Formulare für Ereignisse gefunden NO_PRINTER = 04 "Drucker fehlt ( nur bei BATCH-INPUT ) NO_STANDARD = 05 "keine Standardkombination bei Standard NO_TERMINAL = 06. "Eingabegerät nicht gefunden
ISH_FIND_FORMS CALL FUNCTION 'ISH_FIND_FORMS' EXPORTING EINRI = TN01-EINRI PRINTER = $TDDEST TERMINAL = $TERMINAL IMPORTING ABNORMAL_END = ABBRUCH TABLES CONDITIONS = BEDING_TAB_FAKT EVENTS = EVENT_TAB_FAKT FORMS = RNFOR_TAB EXCEPTIONS NO_AUTHORITY = 01 "keine Berechtigung für Formulardruck NO_EVENT = 02 "keine Ereignisse für Formulardruckdaten NO_FORM = 03 "keine Formulare für Ereignisse gefunden NO_PRINTER = 04 "Drucker fehlt ( nur bei BATCH-INPUT ) NO_STANDARD = 05 "keine Standardkombination bei Standard NO_TERMINAL = 06. "Eingabegerät nicht gefunden
ISH_USER_EXIT_GET CALL FUNCTION 'ISH_USER_EXIT_GET' EXPORTING SS_EVENT = UE_EVENT IMPORTING SS_FBNAME = $IFBNAM EXCEPTIONS NO_USER_EXIT = 01.
MESSAGES_COUNT CALL FUNCTION 'MESSAGES_COUNT' IMPORTING COUNT = ANZAHL.
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW' EXPORTING OBJECT = MESS_TITLE SHOW_LINNO = SPACE EXCEPTIONS NO_MESSAGES = 04.
MESSAGES_STOP CALL FUNCTION 'MESSAGES_STOP' EXCEPTIONS I_MESSAGE = 01 W_MESSAGE = 02 E_MESSAGE = 03 A_MESSAGE = 04.
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.