0200 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 0200 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: Include 0200
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_GET_VALUES_DB_CHECKED CALL FUNCTION 'POPUP_GET_VALUES_DB_CHECKED' EXPORTING check_existence = 'X' popup_title = text-004 IMPORTING returncode = returncode TABLES fields = it_fields[] EXCEPTIONS error_in_fields = 1 OTHERS = 2.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-006 text_question = text-005 text_button_1 = 'Ja'(014) text_button_2 = 'Nein'(015) display_cancel_button = '' IMPORTING answer = answer EXCEPTIONS text_not_found = 1 OTHERS = 2.
VRM_DELETE_VALUES CALL FUNCTION 'VRM_DELETE_VALUES' EXPORTING id = 'jbrfszrel-periodenblock' * ID_CONTAINS_PROGNAME = EXCEPTIONS id_not_found = 1 OTHERS = 2.
RM_DOMA_VALUE_TEXT_GET CALL FUNCTION 'RM_DOMA_VALUE_TEXT_GET' EXPORTING i_doma = 'JBSABSKNZ' i_value = is_jbrfsz-abskennz i_langu = sy-langu IMPORTING e_text = l_hlp EXCEPTIONS not_found = 1 error = 2 OTHERS = 3.
RM_DOMA_VALUE_TEXT_GET CALL FUNCTION 'RM_DOMA_VALUE_TEXT_GET' EXPORTING i_doma = 'JBSABSKNZ' i_value = is_jbrfsz-abskennz i_langu = sy-langu IMPORTING e_text = l_hlp EXCEPTIONS not_found = 1 error = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.