PFCG_MASS_TRANSPORT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use this program to create and change requests to transport roles...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 PFCG_MASS_TRANSPORT into the relevant SAP transactions such as SE38 or SE80
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.
Selection Text: AGR_NAME = Role
Title: Role Transport
Text Symbol: 121 = Cannot tranport any roles.
Text Symbol: 120 = Task &1 contains roles marked in green.
Text Symbol: 116 = You are not authorized to transport the imparting single role
Text Symbol: 115 = You are not authorized to transport the single role
Text Symbol: 114 = Circular relationship in inheritance hierarchy of single role
Text Symbol: 113 = Type of the contained role is undetermined.
Text Symbol: 112 = Imparting single role does not exist.
Text Symbol: 111 = Single role does not exist.
Text Symbol: 108 = You are not authorized to transport imparting role
Text Symbol: 107 = You are not authorized to transport
Text Symbol: 106 = Circular relationship in inheritance hierarchy
Text Symbol: 105 = Type of an imparting role is undetermined.
Text Symbol: 104 = Role type is undetermined.
Text Symbol: 103 = Imparting role does not exist
Text Symbol: 102 = Role does not exist.
Text Symbol: 101 = Role not in request
Text Symbol: 100 = Role in request
Text Symbol: 088 = Error Message
Text Symbol: 087 = Imparting Role
Text Symbol: 086 = Single Role
Text Symbol: 085 = Composite Role
Text Symbol: 084 = Short Text
Text Symbol: 083 = Type
Text Symbol: 082 = Role
Text Symbol: 081 = Status
Text Symbol: 075 = Direct User Assignments
Text Symbol: 074 = Personalization Data
Text Symbol: 073 = Generated Profiles of Single Roles
Text Symbol: 072 = Single Roles in Composite Roles
Text Symbol: 071 = Optional Components
Text Symbol: 070 = You are not authorized to transport roles
Text Symbol: 012 = Selection of Roles
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ICON_CREATE call function 'ICON_CREATE' exporting name = &1 info = &2 importing result = &3 exceptions icon_not_found = 1 outputfield_too_short = 2 others = 3.
AUTHORITY_CHECK_TCODE CALL FUNCTION 'AUTHORITY_CHECK_TCODE' EXPORTING tcode = 'PFCG' EXCEPTIONS ok = 0 not_ok = 1 OTHERS = 2.
PRGN_AUTH_ACTIVITY_GROUP CALL FUNCTION 'PRGN_AUTH_ACTIVITY_GROUP' EXPORTING activity_group =
-role action_transport = 'X' message_output = space EXCEPTIONS OTHERS = 1.
PRGN_AUTH_ACTIVITY_GROUP CALL FUNCTION 'PRGN_AUTH_ACTIVITY_GROUP' EXPORTING activity_group = gd_role action_display = 'X' EXCEPTIONS not_authorized = 1 OTHERS = 2.
PRGN_SHOW_EDIT_AGR CALL FUNCTION 'PRGN_SHOW_EDIT_AGR' STARTING NEW TASK 'PFCG' PERFORMING show_err_msg ON END OF TASK EXPORTING agr_name = gd_role mode = 'A' screen = '1' sicht = '0' EXCEPTIONS communication_failure = 1 MESSAGE ld_msg_txt system_failure = 2 MESSAGE ld_msg_txt OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.