RFVICPTM is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Client Comparison of Text Modules This program is designed to help you set up the correspondence function...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RFVICPTM 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.
Selection Text: P_DIFFS = Display Differences Only
Selection Text: P_MANDT1 = Client 1
Selection Text: P_MANDT2 = Client 2
Selection Text: S_ID = D Text ID
Selection Text: S_NAME = D Text Name
Selection Text: S_OBJECT = D Text Object
Selection Text: S_SPRAS = D Language Key
Title: Client Comparison of Text Modules
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
READ_TEXT CALL FUNCTION 'READ_TEXT' EXPORTING client = is_stxh1-mandt id = is_stxh1-tdid language = is_stxh1-tdspras name = is_stxh1-tdname object = is_stxh1-tdobject TABLES lines = lt_tlines1 EXCEPTIONS OTHERS = 1.
READ_TEXT CALL FUNCTION 'READ_TEXT' EXPORTING client = is_stxh2-mandt id = is_stxh2-tdid language = is_stxh2-tdspras name = is_stxh2-tdname object = is_stxh2-tdobject TABLES lines = lt_tlines2 EXCEPTIONS OTHERS = 1.
READ_TEXT CALL FUNCTION 'READ_TEXT' EXPORTING client = is_stxh-mandt id = is_stxh-tdid language = is_stxh-tdspras name = is_stxh-tdname object = is_stxh-tdobject TABLES lines = lt_tlines EXCEPTIONS OTHERS = 1.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'RFVICPTM' i_bypassing_buffer = 'X' CHANGING ct_fieldcat = lt_fieldcat EXCEPTIONS OTHERS = 0.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_interface_check = ' ' * I_BUFFER_ACTIVE = ' ' i_callback_program = lc_repid * I_CALLBACK_PF_STATUS_SET = ' ' i_callback_user_command = 'ON_SL_USER_COMMAND' * i_structure_name = ' ' is_layout = ls_layout it_fieldcat = lt_fieldcat * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = i_default = 'X' i_save = 'A' * IS_VARIANT = * IT_EVENTS = * IT_EVENT_EXIT = is_print = ls_print * IS_REPREP_ID = TABLES t_outtab = gt_rfvicptm.
READ_TEXT CALL FUNCTION 'READ_TEXT' EXPORTING client = lc_client id = ls_rfvicptm-tdid language = ls_rfvicptm-tdspras name = ls_rfvicptm-tdname object = ls_rfvicptm-tdobject IMPORTING header = ls_thead TABLES lines = lt_tlines EXCEPTIONS OTHERS = 1.
ENQUEUE_ESSSTXT CALL FUNCTION 'ENQUEUE_ESSSTXT' EXPORTING tdobject = ls_rfvicptm-tdobject tdname = ls_rfvicptm-tdname tdid = ls_rfvicptm-tdid tdspras = ls_rfvicptm-tdspras EXCEPTIONS foreign_lock = 1.
EDIT_TEXT CALL FUNCTION 'EDIT_TEXT' EXPORTING display = lb_mode_display * EDITOR_TITLE = ' ' header = ls_thead * PAGE = ' ' * WINDOW = ' ' * SAVE = 'X' * LINE_EDITOR = ' ' * CONTROL = ' ' * PROGRAM = ' ' * LOCAL_CAT = ' ' TABLES lines = lt_tlines EXCEPTIONS OTHERS = 0.
DEQUEUE_ESSSTXT CALL FUNCTION 'DEQUEUE_ESSSTXT' EXPORTING tdobject = ls_rfvicptm-tdobject tdname = ls_rfvicptm-tdname tdid = ls_rfvicptm-tdid tdspras = ls_rfvicptm-tdspras.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.