Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

GR55 transaction

Former Member
0 Kudos

Hi,

I want to know about this transaction(GR55) and what is report group?

If there is any performance issue with this how do i check the code?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

GR55 is the report group that contains the respective reports. You need to look in GRR2 or GRR3 to look at the respective reports to looka their layouts which is independent of the report group

5 REPLIES 5

Former Member
0 Kudos

Hi,

GR55 is the report group that contains the respective reports. You need to look in GRR2 or GRR3 to look at the respective reports to looka their layouts which is independent of the report group

0 Kudos

Hi,

i have a query regarding how to find the abap program.

i knw its by going to technical info.. but i didnt find any ..

Please help.

0 Kudos

hi,

all programs r stored in table TADIR.

u can reduce search if u know who created or which package.

just give tht person name or package name and prog as z* and execute.

reward points if hlpful.

Former Member
0 Kudos

In order to output reports and parallel reports, you must include them in a report group.

A report group is a group of reports and parallel reports from the same library which need to be processed together in one run.

You should group together several reports and parallel reports in one report group if you want the reports to evaluate what is basically the same data. Here, the data is only read once, and distributed to the various reports and parallel reports.

It is not possible to process reports and parallel reports from different libraries in one report group.

Technical note:

When you generate a report group, the system generates several ABAP programs:

Program for processing the initial screen

Program for selecting (reading) the data

Program for multiple selection (multiple selection and output for different entry data - only if relevant indicator is set).

There are two different procedures for finding the name of the ABAP program for your report group:

On the selection screen: Environment -> Technical Information

On the output list: Extras -> Technical Information

If you change a set or report definition after the report group has been generated, the system regenerates the report group automatically at the next selection, providing this function was not explicitly deactivated in the report group definition.

Former Member
0 Kudos

HI..

Poonam..

GR55 is basically a transaction for executing report group...

Report used to generate GR55 is: SAPMGRWJ

Internal Tracking ID: 8210

In transaction GR55 (to execute the report group), when the user entersthe selection criteria for the report group, I want to validate the

'Profit Center group' and 'Profit center values' fields. The way itshould be validated is, it should check the entry for the 'profit centergroup' or 'values' entered against the 'user name' in a Ztable for thatuser. If there is no entry in the Ztable matching that 'User name' and'profit center group or values' , it should give an error message. Ihave seen that there is a user exit 'EXIT_SAPFGRWX_001' (Authorizationcheck on initial screen).

But my problem is, in this functional module (code is shown below), thetable 'I_T_SELSCREEN_PARAMS' has only one filed for both 'Profit centerGroup' and 'profit center values'.

Report group :-- its basically collection of many report in combined one..