SAP Reports / Programs

RPUCFGU0 SAP ABAP Report - Core report for defining field sequence in CPDF file







RPUCFGU0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The report is the core of several reports used to define the field sequence for a CPDF file...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 RPUCFGU0 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 RPUCFGU0. "Basic submit
SUBMIT RPUCFGU0 AND RETURN. "Return to original report after report execution complete
SUBMIT RPUCFGU0 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Core report for defining field sequence in CPDF file
Text Symbol: 022 = Error in calling HELP_OBJECT_SHOW_FOR_FIELD. Code:
Text Symbol: 021 = Job
Text Symbol: 020 = Position
Text Symbol: 019 = Org Unit
Text Symbol: 018 = Object Type
Text Symbol: 017 = Error in calling popup window. Code:
Text Symbol: 016 = Option
Text Symbol: 015 = Do you want to start with original field sequence?
Text Symbol: 014 = is not a valid for status file!
Text Symbol: 013 = Selection application/action for dynamic file
Text Symbol: 012 = Select application for status file
Text Symbol: 011 = Error in calling HR_REORDER_FIELDS. Code:
Text Symbol: 010 = No record exists for this application/action.
Text Symbol: 009 = Cannot find field text. Code:
Text Symbol: 008 = Error: Cannot find entry for
Text Symbol: 007 = Field List
Text Symbol: 006 = Prior?
Text Symbol: 005 = Field name
Text Symbol: 004 = Subtype
Text Symbol: 003 = Info Type
Text Symbol: 002 = Field text
Text Symbol: 001 = Error in reading infotype text.


INCLUDES used within this REPORT RPUCFGU0

INCLUDE RPUCFGU0TOP . " GLOBAL DATA
INCLUDE RPUCFGU0M01.


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:

HR_REORDER_FIELDS CALL FUNCTION 'HR_REORDER_FIELDS' EXPORTING title = 'Field List'(007) * Start of L6BK024137 by JZ: Updated the field number field_num = 6 * End of L6BK024137 TABLES fieldtabin = tab_in resulttab = tab_out headertab = hd_table EXCEPTIONS invalid_column_num = 1 few_column_num = 2 not_enough_col_output = 3 not_enough_header = 4 error_assign_field = 5 OTHERS = 6.

DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = p_tabname * FIELDNAME = p_fieldname * LANGU = SY-LANGU lfieldname = lfieldname * ALL_TYPES = ' ' * GROUP_NAMES = ' ' * UCLEN = IMPORTING * X030L_WA = * DDOBJTYPE = dfies_wa = rec * LINES_DESCR = TABLES dfies_tab = field_tab * FIXED_VALUES = EXCEPTIONS not_found = 1 internal_error = 2 OTHERS = 3 .

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'Option'(016) * DIAGNOSE_OBJECT = ' ' text_question = 'Do you want to start with original field sequence?'(015) text_button_1 = 'Yes' icon_button_1 = ' ' text_button_2 = 'No' icon_button_2 = ' ' default_button = '1' * DISPLAY_CANCEL_BUTTON = 'X' * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = IMPORTING answer = answer * TABLES * PARAMETER = EXCEPTIONS text_not_found = 1 OTHERS = 2 .



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