SAP Reports / Programs

RTXXSM3X SAP ABAP Report - Call Up View/View Cluster Maintenance Using Transaction Code







RTXXSM3X 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 RTXXSM3X into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

DXX14 - DARTX Maintain Reference Crcy/Qty
DXX13 - DARTX Maintain Customer Seg. Control
DXX01 - DARTX Maintain Authorization Groups
DXX04 - DARTX Maintain MasterData Indicators
DXX03 - DARTX Maintain SAP Segment Control
DXX12 - DARTX Directory Group Maintenance
DXX09 - DARTX Global Settings Maintenance
DXX02 - DARTX Segment Maintenance
DXX05 - DARTX Application Maintenance
DXX06 - DARTX Reference Table Maintenance
DXX07 - DARTX Data Set/Segment Assignments
DXX11 - DARTX Maintain Sel.Parameter Display
DXX10 - DARTX Maintain Segment Relationships
DXX08 - DARTX Data Set Maintenance


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 RTXXSM3X. "Basic submit
SUBMIT RTXXSM3X AND RETURN. "Return to original report after report execution complete
SUBMIT RTXXSM3X VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Call Up View/View Cluster Maintenance Using Transaction Code


INCLUDES used within this REPORT RTXXSM3X

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:

VIEWCLUSTER_GET_DEFINITION CALL FUNCTION 'VIEWCLUSTER_GET_DEFINITION' EXPORTING vclname = pa_vname TABLES vclstruc_tab = lt_vclstruc EXCEPTIONS viewcluster_not_found = 1.

VIEW_GET_DDIC_INFO CALL FUNCTION 'VIEW_GET_DDIC_INFO' EXPORTING viewname = gd_vname TABLES x_header = it_header x_namtab = it_namtab sellist = it_sellist.

VIEW_ENQUEUE CALL FUNCTION 'VIEW_ENQUEUE' EXPORTING view_name = gd_vname action = 'E' "Exklusiv sperren enqueue_mode = 'E' "E-Enqueue/D-Dequeue enqueue_range = 'X' "Eingeschränkt sperren:it_sellist TABLES sellist = it_sellist EXCEPTIONS foreign_lock = 1 client_reference = 2 system_failure = 3 table_not_found = 4.

VIEW_MAINTENANCE CALL FUNCTION 'VIEW_MAINTENANCE' EXPORTING view_name = pa_vname view_action = pa_act TABLES x_header = it_header x_namtab = it_namtab dba_sellist = it_sellist excl_cua_funct = it_ftab EXCEPTIONS no_value_for_subset_ident = 1.

VIEWCLUSTER_MAINTENANCE_CALL CALL FUNCTION 'VIEWCLUSTER_MAINTENANCE_CALL' EXPORTING viewcluster_name = pa_vname maintenance_action = pa_act TABLES excl_cua_funct_all_objects = it_ftab dba_sellist_cluster = lt_sellist_cl EXCEPTIONS foreign_lock = 01.

VIEWCLUSTER_MAINTENANCE_CALL CALL FUNCTION 'VIEWCLUSTER_MAINTENANCE_CALL' EXPORTING viewcluster_name = pa_vname maintenance_action = pa_act TABLES excl_cua_funct_all_objects = it_ftab dba_sellist = it_sellist EXCEPTIONS foreign_lock = 01.



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