SAP Reports / Programs | Basis Components | Basis Components | Customizing Project Management (IMG)(BC-CUS-TOL-PAD) SAP BC

PROJECT_VIEW_COMP SAP ABAP Report - Compare Project IMG and views







PROJECT_VIEW_COMP 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 PROJECT_VIEW_COMP 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 PROJECT_VIEW_COMP. "Basic submit
SUBMIT PROJECT_VIEW_COMP AND RETURN. "Return to original report after report execution complete
SUBMIT PROJECT_VIEW_COMP 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: PROJECT = Project
Title: Compare Project IMG and views


INCLUDES used within this REPORT PROJECT_VIEW_COMP

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:

SPROJECT_PROJECT_F4 CALL FUNCTION 'SPROJECT_PROJECT_F4' EXPORTING language = sy-langu * SCREEN_TITLE = * CLASS = IMPORTING project_title = project_titles project_class = project_class CHANGING project_id = p_project * EXCEPTIONS * SELECTION_CANCELLED = 1 * NO_DATA_FOUND = 2 * OTHERS = 3 .

SPROJECT_GET_OBJECT CALL FUNCTION 'SPROJECT_GET_OBJECT' EXPORTING project_id = p_project obj_type = obj_type_view TABLES object_id = object_id.

STREE_STRUCTURE_READ_MULTIPLE CALL FUNCTION 'STREE_STRUCTURE_READ_MULTIPLE' EXPORTING get_also_texts = 'X' * IMPORTING * MESSAGE = TABLES i_structure_ids = i_structure_ids * E_STRUCTURE_HEADER = e_structure_texts = e_structure_texts.

STREE_HIERARCHY_READ CALL FUNCTION 'STREE_HIERARCHY_READ' EXPORTING structure_id = p_project_all-id * FILTER_ID = ' ' read_also_texts = 'X' * LANGUAGE = SY-LANGU * ALL_LANGUAGES = ' ' DISPLAY_MODE = 'D' * IMPORTING * MESSAGE = TABLES list_of_nodes = i_of_nodes list_of_references = i_of_refer list_of_texts = i_of_texts .

STREE_STRUCTURE_INSERT_SUBSTRU CALL FUNCTION 'STREE_STRUCTURE_INSERT_SUBSTRU' EXPORTING * FILTER_ID = ' ' read_also_references = 'X' read_also_texts = 'X' language = sy-langu TABLES i_structure = i_of_nodes e_structure = i_nodes_all e_references = i_refer_all e_texts = i_texts_all .

STREE_STRUCTURE_FILTER_RUN CALL FUNCTION 'STREE_STRUCTURE_FILTER_RUN' EXPORTING switch_nodes_off = ' ' * IMPORTING * MESSAGE = TABLES parent_structure = i_nodes_all parent_references = i_refer_all * LIST_OF_REFERENCES = list_of_nodes = i_nodes_abs active_nodes = i_nodes_act * FILTERED_STRUCTURE = .

STREE_MANUAL_SELECTION CALL FUNCTION 'STREE_MANUAL_SELECTION' EXPORTING structure_id = p_project_all-id description = '' language = sy-langu * DISPLAY_MODE = 'D' * USE_EXTERNAL_TABLES = ' ' * NODE_SELECTION_ONLY = 'X' * MARK_NODE_WITH_SUBNODES = 'X' * MARK_ONLY_ONE_NODE = ' ' * RETURN_ALL_SUBNODES_OF_MARKED = ' ' * SCREEN_START_COLUMN = 0 * SCREEN_START_LINE = 0 * SCREEN_END_COLUMN = 0 * SCREEN_END_LINE = 0 * RFC_DESTINATION = 'NONE' * IMPORTING * MESSAGE = * NEW_STRUCTURE_ID = TABLES external_all_nodes = i_nodes_all external_all_references = i_refer_all external_all_texts = i_texts_all external_active_nodes = i_nodes_act1 * EXTERNAL_MARKED_NODES = user_parameters = user_parameters * RETURN_NODES = * RETURN_REFERENCES = * RETURN_TEXTS = * RETURN_ALL_NODES = * RETURN_ALL_REFERENCES = * RETURN_ALL_TEXTS = .

SPROJECT_GET_TITLE CALL FUNCTION 'SPROJECT_GET_TITLE' EXPORTING project_id = p_project language = sy-langu IMPORTING project_title = project_titles * TABLES * PROJECT_TITLES = * INCLUDE_CLASSES = .



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