SAP Reports / Programs

EASY_ACCESS_NUMBER_OF_NODES SAP ABAP Report - Get no. of nodes in user menu







EASY_ACCESS_NUMBER_OF_NODES 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 EASY_ACCESS_NUMBER_OF_NODES 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 EASY_ACCESS_NUMBER_OF_NODES. "Basic submit
SUBMIT EASY_ACCESS_NUMBER_OF_NODES AND RETURN. "Return to original report after report execution complete
SUBMIT EASY_ACCESS_NUMBER_OF_NODES 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: S_USER = D .
Selection Text: P_UVALID = Only valid users
Selection Text: P_UMENU = Only users with user menu
Selection Text: P_UDIAL = Only dialog-capable users
Selection Text: P_BORDER = Menu Nodes Threshold Value
Title: Get no. of nodes in user menu
Text Symbol: 212 = Too many selection conditions for database processing
Text Symbol: 211 = No authorization for this selection
Text Symbol: 210 = Users not displayed due to missing authorization
Text Symbol: 202 = Select only valid users
Text Symbol: 201 = Select only dialog-capable users
Text Symbol: 200 = Select only users with user menu
Text Symbol: 106 = No user menu available
Text Symbol: 105 = User menu is available
Text Symbol: 104 = User is valid
Text Symbol: 103 = User account is invalid
Text Symbol: 102 = Number of nodes is non-critical
Text Symbol: 101 = Critical number of nodes exceeded
Text Symbol: 043 = User Status
Text Symbol: 042 = User Status
Text Symbol: 033 = Status: Menu Size
Text Symbol: 032 = Menu Size
Text Symbol: 023 = Status: User Menu
Text Symbol: 022 = User Menu
Text Symbol: 013 = Number of Menu Nodes
Text Symbol: 012 = Menu Nodes
Text Symbol: 003 = User analysis:


INCLUDES used within this REPORT EASY_ACCESS_NUMBER_OF_NODES

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:

AUTHORITY_CHECK_TCODE CALL FUNCTION 'AUTHORITY_CHECK_TCODE' EXPORTING tcode = 'SU01' EXCEPTIONS OK = 1 NOT_OK = 2 OTHERS = 3.

SUSR_USER_MAINT_WITH_DIALOG CALL FUNCTION 'SUSR_USER_MAINT_WITH_DIALOG' EXPORTING display_only = gc_true user_to_display = -bname EXCEPTIONS OTHERS = 0.

NAVIGATION_CHECK_AVAILABILITY CALL FUNCTION 'NAVIGATION_CHECK_AVAILABILITY' EXPORTING us_name = ls_out-bname IMPORTING user_menu = lv_user_menu.

BX_READ_USER_MENU CALL FUNCTION 'BX_READ_USER_MENU' EXPORTING user_name = ps_out-bname language = sy-langu read_user_menu = gc_true TABLES node_tab = lt_nodes.

SUSR_USER_LOGONDATA_GET CALL FUNCTION 'SUSR_USER_LOGONDATA_GET' EXPORTING user_name = ps_out-bname IMPORTING user_logondata = ls_user_lgn EXCEPTIONS user_name_not_exist = 1 OTHERS = 2.

SUSR_USER_LOCKSTATE_GET CALL FUNCTION 'SUSR_USER_LOCKSTATE_GET' EXPORTING user_name = ps_out-bname IMPORTING lockstate = ls_user_lck EXCEPTIONS user_name_not_exist = 1 OTHERS = 2.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = pv_succ text = pv_text.



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