SAP Reports / Programs

PRC_NAMESPACE_CHECK SAP ABAP Report - Check pricing tables for entries in customer namespace







PRC_NAMESPACE_CHECK is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.

If you would like to execute this report or see the full code listing simply enter PRC_NAMESPACE_CHECK 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 PRC_NAMESPACE_CHECK. "Basic submit
SUBMIT PRC_NAMESPACE_CHECK AND RETURN. "Return to original report after report execution complete
SUBMIT PRC_NAMESPACE_CHECK VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Check pricing tables for entries in customer namespace
Text Symbol: T01 = Confirm deletion
Text Symbol: S02 = Select the entries to be deleted
Text Symbol: S01 = Entries deleted successfully
Text Symbol: Q01 = Do you want to delete the selected table entries?
Text Symbol: P03 = With structure generation
Text Symbol: P02 = Only CRM Pricing
Text Symbol: P01 = Table Name
Text Symbol: M06 = is not a DB table
Text Symbol: M05 = does not exist.
Text Symbol: M03 = does not belong to Pricing
Text Symbol: M02 = The table
Text Symbol: M01 = This report may not be executed in the customer system
Text Symbol: I02 = No violations of customer namespaces found
Text Symbol: I01 = No definition of customer namespaces found
Text Symbol: E01 = The selected entries could not be deleted completed
Text Symbol: A02 = No
Text Symbol: A01 = Y


INCLUDES used within this REPORT PRC_NAMESPACE_CHECK

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:

SYSTEM_STATUS call function 'SYSTEM_STATUS' importing status = lv_sys_state.

REUSE_ALV_FIELDCATALOG_MERGE call function 'REUSE_ALV_FIELDCATALOG_MERGE' exporting i_structure_name = lv_strucname changing ct_fieldcat = lt_fieldcatalogue.

REUSE_ALV_LIST_DISPLAY call function 'REUSE_ALV_LIST_DISPLAY' exporting i_callback_program = lv_me i_callback_pf_status_set = 'PF_STATUS_SET' i_callback_user_command = 'USER_COMMAND' i_structure_name = lv_strucname is_layout = ls_layout it_fieldcat = lt_fieldcatalogue tables t_outtab = exceptions program_error = 1 others = 2.

POPUP_TO_CONFIRM call function 'POPUP_TO_CONFIRM' exporting titlebar = text-t01 text_question = text-q01 text_button_1 = text-a01 icon_button_1 = 'ICON_DELETE' text_button_2 = text-a02 icon_button_2 = 'ICON_MESSAGE_CRITICAL_SMALL' display_cancel_button = 'X' importing answer = lv_decision exceptions others = 4.

DDIF_TABL_GET call function 'DDIF_TABL_GET' exporting name = p_tabname importing dd02v_wa = ls_dd02v tables dd03p_tab = lt_dd03p exceptions illegal_input = 1 others = 2.

DDIF_TABL_PUT call function 'DDIF_TABL_PUT' exporting name = c_newname dd02v_wa = ls_dd02v tables dd03p_tab = lt_dd03p exceptions tabl_not_found = 1 name_inconsistent = 2 tabl_inconsistent = 3 put_failure = 4 put_refused = 5 others = 6.

DDIF_TABL_ACTIVATE call function 'DDIF_TABL_ACTIVATE' exporting name = c_newname importing rc = returncode exceptions not_found = 1 put_failure = 2 others = 3.

DDIF_OBJECT_DELETE call function 'DDIF_OBJECT_DELETE' exporting type = 'TABL' name = p_strucname importing deleted = deleted exceptions illegal_input = 1 no_authority = 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 PRC_NAMESPACE_CHECK or its description.