J_3R_COMMON_OUTPUT 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 J_3R_COMMON_OUTPUT 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!
DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = gv_structure_name langu = sy-langu IMPORTING gotstate = lv_ddstate dd02v_wa = ls_dd02v dd09l_wa = ls_dd09l TABLES dd03p_tab = lt_dd03p EXCEPTIONS illegal_input = 1 OTHERS = 2.
STC1_POPUP_WITH_TABLE_CONTROL ** CALL FUNCTION 'STC1_POPUP_WITH_TABLE_CONTROL' ** EXPORTING ** header = 'Form number of stored document' ** tabname = 'J_3r_LF_KEY' *** DISPLAY_ONLY = *** ENDLESS = ** DISPLAY_TOGGLE = 'X' *** SORT_FORBIDDEN = *** MODIFY_CHECK = *** INSERT_CHECK = *** DELETE_CHECK = *** MODIFY_DISP_FIELD = *** NO_INSERT = *** NO_DELETE = *** NO_MOVE = *** NO_UNDO = ** no_button = 'X' *** X_START = 5 *** Y_START = 5 *** X_END = 80 *** Y_END = 25 ** TABLES *** NAMETAB = ** table = gt_formkey *** FIELDDIF = ** EXCEPTIONS ** no_more_tables = 1 ** too_many_fields = 2 ** nametab_not_valid = 3 ** handle_not_valid = 4 ** OTHERS = 5.
POPUP_WITH_TABLE_DISPLAY_OK ** CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY_OK' ** EXPORTING ** endpos_col = '10' ** endpos_row = '10' ** startpos_col = '50' ** startpos_row = '50' ** titletext = 'e' ** IMPORTING ** CHOISE = lv_choice ** tables ** valuetab = gt_formkey "lt_choice ** EXCEPTIONS ** BREAK_OFF = 1 ** OTHERS = 2 ** .
POPUP_TO_DECIDE_LIST * CALL FUNCTION 'POPUP_TO_DECIDE_LIST' * EXPORTING ** CURSORLINE = 1 ** MARK_FLAG = ' ' * mark_max = 1 ** START_COL = 0 ** START_ROW = 0 * textline1 = 'Form number of stored document' ** TEXTLINE2 = ' ' ** TEXTLINE3 = ' ' * titel = 'Choose version!' ** DISPLAY_ONLY = ' ' * IMPORTING * answer = lv_choice * TABLES * t_spopli = lt_choice * EXCEPTIONS * not_enough_answers = 1 * too_much_answers = 2 * too_much_marks = 3 * OTHERS = 4.
POPUP_TO_DECIDE_LIST * CALL FUNCTION 'POPUP_TO_DECIDE_LIST' * EXPORTING ** CURSORLINE = 1 ** MARK_FLAG = ' ' * mark_max = 1 ** START_COL = 0 ** START_ROW = 0 * textline1 = text-051 ** TEXTLINE2 = ' ' ** TEXTLINE3 = ' ' * titel = text-050 ** DISPLAY_ONLY = ' ' * IMPORTING * answer = lv_cont_choice * TABLES * t_spopli = lt_cont_choice * EXCEPTIONS * not_enough_answers = 1 * too_much_answers = 2 * too_much_marks = 3 * OTHERS = 4.
POPUP_TO_CONFIRM * CALL FUNCTION 'POPUP_TO_CONFIRM' * EXPORTING ** titlebar = text-052 * text_question = text-052 * text_button_1 = 'Yes'(001) ** ICON_BUTTON_1 = ' ' * text_button_2 = 'No'(002) ** ICON_BUTTON_2 = ' ' * default_button = '1' * display_cancel_button = ' ' * IMPORTING * answer = lv_popup_answer * EXCEPTIONS * text_not_found = 1 * OTHERS = 2.
J_3RF_DATE CALL FUNCTION 'J_3RF_DATE' EXPORTING f_date = p_date f_lang = p_lang IMPORTING F_DAY = lv_day F_MONTH = lv_month F_YEAR = lv_year .
J_3RF_DATE CALL FUNCTION 'J_3RF_DATE' EXPORTING f_date = p_date f_lang = p_lang IMPORTING F_DAY = lv_day F_MONTH = lv_month F_YEAR = lv_year .
J_3RF_DATE CALL FUNCTION 'J_3RF_DATE' EXPORTING f_date = p_date f_lang = p_lang IMPORTING F_DAY = cv_day F_MONTH = cv_month F_YEAR = cv_year .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.