SAP Reports / Programs

RBRF_COPY_APPLCLASS SAP ABAP Report - Copying and Deletion of Applicaton Classes







RBRF_COPY_APPLCLASS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use this report to copy an entire application class including all expressions, actions, events, rule sets, and so on...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 RBRF_COPY_APPLCLASS into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RBRF_COPY_APPLCLASS. "Basic submit
SUBMIT RBRF_COPY_APPLCLASS AND RETURN. "Return to original report after report execution complete
SUBMIT RBRF_COPY_APPLCLASS VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_NEW_AC = Target Application Class
Selection Text: P_OLD_AC = Source Application Class
Selection Text: P_P1 = Create New Target Class
Selection Text: P_P2 = Just Add
Selection Text: P_P3 = Add and Change
Selection Text: P_P4 = Force Matching
Selection Text: P_P5 = Delete Target Class
Selection Text: P_SIM = Simulation
Title: Copying and Deletion of Applicaton Classes
Text Symbol: 001 = Field Name
Text Symbol: 002 = Description
Text Symbol: 003 = Contents
Text Symbol: 100 = Copying of Application Classes
Text Symbol: 101 = Options
Text Symbol: 102 = Log for Copy of Application Class


INCLUDES used within this REPORT RBRF_COPY_APPLCLASS

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = lv_log_handle i_s_msg = ls_msg EXCEPTIONS log_not_found = 0 OTHERS = 1.

DELETE_TEXT CALL FUNCTION 'DELETE_TEXT' EXPORTING id = lv_id language = '*' name = -tdname object = 'BRF' savemode_direct = 'X' * TEXTMEMORY_ONLY = ' ' * LOCAL_CAT = ' ' EXCEPTIONS not_found = 1 OTHERS = 2.

DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = lv_tabname * FIELDNAME = ' ' * LANGU = SY-LANGU * LFIELDNAME = ' ' * ALL_TYPES = ' ' * GROUP_NAMES = ' ' * UCLEN = IMPORTING * X030L_WA = ddobjtype = lv_ddobjtype * DFIES_WA = * LINES_DESCR = TABLES dfies_tab = lt_dfies * FIXED_VALUES = EXCEPTIONS not_found = 1 internal_error = 2 OTHERS = 3.

BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = l_s_log IMPORTING e_log_handle = ev_log_handle EXCEPTIONS OTHERS = 1.

BAL_DSP_PROFILE_SINGLE_LOG_GET CALL FUNCTION 'BAL_DSP_PROFILE_SINGLE_LOG_GET' IMPORTING e_s_display_profile = ls_display_profile EXCEPTIONS OTHERS = 1.

BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_t_log_handle = lt_log_handle i_s_display_profile = ls_display_profile IMPORTING e_s_exit_command = cs_exit_command EXCEPTIONS OTHERS = 1.

DDIF_FIELDINFO_GET * CALL FUNCTION 'DDIF_FIELDINFO_GET' * EXPORTING * tabname = lv_tabname ** FIELDNAME = ' ' ** LANGU = SY-LANGU ** LFIELDNAME = ' ' ** ALL_TYPES = ' ' ** GROUP_NAMES = ' ' ** UCLEN = * IMPORTING ** X030L_WA = * ddobjtype = lv_ddobjtype ** DFIES_WA = ** LINES_DESCR = * TABLES * dfies_tab = lt_dfies ** FIXED_VALUES = * EXCEPTIONS * not_found = 1 * internal_error = 2 * OTHERS = 3.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RBRF_COPY_APPLCLASS or its description.