SAP Reports / Programs

CFX_UNIQUE_FOLDER_NAMES SAP ABAP Report - Rename Duplicate Folder Names







CFX_UNIQUE_FOLDER_NAMES is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Searches all the collaborations to find duplicate folder names...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 CFX_UNIQUE_FOLDER_NAMES 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 CFX_UNIQUE_FOLDER_NAMES. "Basic submit
SUBMIT CFX_UNIQUE_FOLDER_NAMES AND RETURN. "Return to original report after report execution complete
SUBMIT CFX_UNIQUE_FOLDER_NAMES VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Rename Duplicate Folder Names
Text Symbol: 000 = Path
Text Symbol: 001 = Old Name
Text Symbol: 002 = New Name


INCLUDES used within this REPORT CFX_UNIQUE_FOLDER_NAMES

INCLUDE CFX_FOLDERS_MACRO.


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:

LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = l_strucname i_internal_tabname = 'lt_changing' CHANGING ct_fieldcat = lt_fieldcatalog EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.

CFX_UNIQUE_FOL_NAMES_ALL_COL CALL FUNCTION 'CFX_UNIQUE_FOL_NAMES_ALL_COL' EXPORTING i_try = abap_false CHANGING ct_changing = lt_changing c_should_rename = l_should_rename c_renamed = l_renamed.

CFX_UNIQUE_FOL_NAMES_ALL_COL CALL FUNCTION 'CFX_UNIQUE_FOL_NAMES_ALL_COL' EXPORTING i_try = abap_true CHANGING ct_changing = lt_changing c_should_rename = l_should_rename c_renamed = l_renamed.



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 CFX_UNIQUE_FOLDER_NAMES or its description.