SAP Reports / Programs

/SAPSRM/CUSTMZ_SW_PO_DEFAULT SAP ABAP Report - Reset Personalized PO Item Default Values to System Default Values







/SAPSRM/CUSTMZ_SW_PO_DEFAULT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report deletes personalized default values for purchase order (PO) items for one or more user IDs or for all users...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 /SAPSRM/CUSTMZ_SW_PO_DEFAULT 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 /SAPSRM/CUSTMZ_SW_PO_DEFAULT. "Basic submit
SUBMIT /SAPSRM/CUSTMZ_SW_PO_DEFAULT AND RETURN. "Return to original report after report execution complete
SUBMIT /SAPSRM/CUSTMZ_SW_PO_DEFAULT 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: DISPLAY = Display
Selection Text: USER = User
Title: Reset Personalized PO Item Default Values to System Default Values
Text Symbol: 001 = Default settings restrictions
Text Symbol: 002 = Additional settings
Text Symbol: 003 = Personal values found
Text Symbol: 004 = No personal values found for the selection criteria
Text Symbol: 005 = Personal values for user
Text Symbol: 006 = for personal key '/SAPSRM/PO_DEFAULT_SETTINGS' deleted.
Text Symbol: 009 = Enter the user
Text Symbol: 010 = Do you really want to delete all personal values for
Text Symbol: 015 = User
Text Symbol: 016 = ?


INCLUDES used within this REPORT /SAPSRM/CUSTMZ_SW_PO_DEFAULT

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:

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = text icon_button_1 = 'ICON_OKAY' IMPORTING answer = answer EXCEPTIONS text_not_found = 1 OTHERS = 2.

F4IF_GET_SHLP_DESCR CALL FUNCTION 'F4IF_GET_SHLP_DESCR' EXPORTING shlpname = lc_shlpname IMPORTING shlp = shlp.

F4IF_SELECT_VALUES CALL FUNCTION 'F4IF_SELECT_VALUES' EXPORTING shlp = shlp TABLES return_tab = lt_return_values.

LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = '/SAPSRM/S_PDO_PO_DEF_SET_ALV' CHANGING ct_fieldcat = p_lt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_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 /SAPSRM/CUSTMZ_SW_PO_DEFAULT or its description.