Report Painter: How to find report group of a report?

Hi experts,
I have a report that a user created in report painter, I created a transaction (normal report transaction) to acess this report, but the transaction isn't executing right (I don't have the option to see the results only to print it), and I want to try creating a parameter transaction, however nobody knows the report group the report are vinculed.
I want to know if are possible to consult the report group a report is in.
P.S. Sorry my english, points will be awarded for good answers.
Regards,
Fabio Gross
Edited by: GrossFabio on Feb 8, 2011 6:39 PM

Thanks to all for the help, I solved my problem looking into older topics from the forum.
To all who may have the same problem:
1 - Go to SE93, create a parameter transaction;
2 - Report = 'START_REPORT' / skip initial screen = 'X' / Inherit GUI attributes = 'X';
3 - In the parameters table you will type:
     D_SREPOVARI-NOSELSCRN = blank
     D_SREPOVARI-VARIANT = blak
     D_SREPOVARI-REPORT = blank
     D_SREPOVARI-REPORTTYPE = RE
     D_SREPOVARI-EXTDREPORT = KP  01RPSCO_X                       NAME_OF_YOUR_REPORT
4 - Special atention to the last parameter as it is the most important in this transaction, the first part (including spaces) are always the same, the last one is the name of the report you created through the CJE*.
Regards,
Fabio Gross

Similar Messages

  • How to find user group from tcode

    Hi Experts,
    I have custom tcode from this i found report name as AQIDSYSTQV000001SD_RR_03======
    I am unable to find Queryname in SQ01 from this.
    When i saw some of the forums i  understood that IDSYST is the user group for my query but i am unable to trace such user group in SQ01.
    Please guide me how to find user group for my report
    Thanks&Regards,
    narasimha.

    Hi ,
    I found in table AQGQSTRUC but i didnt find the specified query
    Previously 401 client is there but at present it is not there .How can you justify it that it is 401 client.
    As 401 client data is moved to someother client is it the problem why i am not able to find query??
    Thanks&Regards,
    narasimha.
    Edited by: narasimha02 on Dec 7, 2010 9:54 AM

  • Report Painter: How to change the order of lines in selection screen

    Dear Gurus on Report Painter,
    how can I change the order of the lines (where the values for the variable selection of my cost center report are entered) in the selection screen of a report painter report? The Selection screen looks awful.
    Is there also a possibility to add another description to each line of the selection screen?
    Thank you very much for your advice.
    Best regards Timo

    I am afraid you have much choice in choosing the order of the selection parameters. However, with the developer's access you may.
    This is how!
    Step 1: If it is a standard report, copy to your own report. and assign it to a report group. and execute.
    Step 2: When you execute, and the selection appears, go to systems>status and here , copy the program name (it may look something like GP46LP6VEDORBSA2IHWYSR4TL58020)
    Step3: Go to SE38 and enter the above derived program name with a view to re-arrange the line withing the program, with reference to selection parameters. 
    For example: I have a selection screen in the following order:
      Controlling area            
      Fiscal Year                 
      From period                 
      To period                   
      Plan version                                                                               
    Cost center group           
      Or value(s)                 
      Cost element group          
      Or value(s)                 
    The corresponding program that drives this order is in the program and would look like this,
    SELECTION-SCREEN BEGIN OF BLOCK VALUE_SELECTION
                     WITH FRAME TITLE TEXT-003.
    <b> PARAMETERS: $1KOKRE  LIKE CCR1S-KOKRS .
      PARAMETERS: %1KOKRE  LIKE CCR1S-KOKRS MODIF ID IN4.</b>
    <b><i> for controlling area</i></b>
      PARAMETERS: $1GJAHR  LIKE COSP-GJAHR .
      PARAMETERS: %1GJAHR  LIKE COSP-GJAHR MODIF ID IN4.
    <b><i> for fiscal year</i></b>
      PARAMETERS: $1PERIV  LIKE COSP-PERBL .
      PARAMETERS: %1PERIV  LIKE COSP-PERBL MODIF ID IN4.
    <b><i> for period from</i></b>
      PARAMETERS: $1PERIB  LIKE COSP-PERBL .
      PARAMETERS: %1PERIB  LIKE COSP-PERBL MODIF ID IN4.
    <b><i> for period to</i></b>
    etc.
      PARAMETERS: $1VERP   LIKE COSP-VERSN .
      PARAMETERS: %1VERP   LIKE COSP-VERSN MODIF ID IN4.
      PARAMETERS: $1VALUTP LIKE CCR1S-VALUTYP MODIF ID IN4 .
      PARAMETERS: %1VALUTP LIKE CCR1S-VALUTYP MODIF ID IN4.
    SELECTION-SCREEN END OF BLOCK VALUE_SELECTION.
    ......... set variables ..............................................
    SELECTION-SCREEN BEGIN OF BLOCK SET_SELECTION
                     WITH FRAME TITLE TEXT-004.
      PARAMETERS: $1KOSET  LIKE RKSB1-KSGRU.
      PARAMETERS: %1KOSET  LIKE RGSBS-SETNR MODIF ID IN5.
      SELECT-OPTIONS _1KOSET  FOR CCR1S-KOSTL .
      PARAMETERS: $1KSTAR  LIKE RKSB1-KAGRU.
      PARAMETERS: %1KSTAR  LIKE RGSBS-SETNR MODIF ID IN5.
      SELECT-OPTIONS _1KSTAR  FOR CCR1Z-KSTAR .
    SELECTION-SCREEN END OF BLOCK SET_SELECTION.<i></i><b></b>
    If you want fiscal year to appear first, you try just copying the coding relating to fiscal year just above the coding for Controlling area.
    Extend the same logic for what you may want to get.

  • Discoverer Report: How to find Business Area name from Report Name.

    Hi
    I opened a report in Disco Desktop 4 -> Resonsibiolity --> Report Name.
    So I know Report name but don’t know which Business Area it belongs to.
    How to find Business Area Name from Report Name?
    Cheers
    Vijay

    Hi,
    There is no relationship between reports and business areas. Each report can be built from many folders. Each folder can be in many business areas.
    However you can try the following SQL which may give you the result you want for an v5 EUL. You will have to modify for Discoverer 4 EUL:
    select distinct doc_name, obj.obj_name folder_name, bas.ba_name
    from eul_us.eul5_documents doc
    , eul_us.eul5_elem_xrefs xref
    , eul_us.eul5_expressions exp
    , eul_us.eul5_objs obj
    , eul_us.eul5_ba_obj_links bol
    , eul_us.eul5_bas bas
    where xref.ex_from_id = doc.doc_id
    and doc.doc_name = &your_report
    and xref.ex_to_id = exp.exp_id
    and obj.obj_id = exp.it_obj_id
    and bol.bol_obj_id = obj.obj_id
    and bas.ba_id = bol.bol_ba_id
    Rod West

  • How to find the list of Queries/Reports which are using Exceptional Aggregation in SAP BI?

    Hi All,
    We are interested to know how to find the list of Queries/ Reports which are using Exceptional aggregation in SAP BI.
    Please let us know is there any table's to check the list of reports using Exceptional Aggregation in SAP BI.

    Hi,
    Here you go..
    1) Go to table RSZCALC and get list of ELTUID where AGGREXC is not INITIAL and AGGRCHA is not initial; now you get only exception aggregation set based on some chars. Also you can further add STEPNR = 1 since your intention is just to get query name , not the calculation details; this will reduce number of entries to lookup and save DB time for next steps.
    Here you will get list of exception aggregation UUID numbers from which you can get properties from RSZELTDIR.
    2) Pass list of RSZCALC-ELTUID to table RSZELTXREF - TELTUID and get list of RSZELTXREF -SELTUID - this table stores query to it's elements maping kind.
    3) Now again pass RSZELTXREF - SELTUID into same table but into different field RSZELTZREF - TELTUID and get RSZELTXREF - SELTUID
    This step you get query reference sheet or column or query general UUID for next step.
    4) Pass list of RSZELTXREF - SELTUID into RSZELTDIR - ELTUID with DEFTP as 'REP'. Now you get list of query names in RSZELTDIR - MAPNAME and description in TXTLG.
    Note: you can also get the reference chars used for exception aggregation from RSZCALC - AGGRCHA field.
    Hope this helps.
    Please keep in mind, it might take more time depends on how many query elements you have in the system...
    Comments added for better DB performance by: Arun Thangaraj

  • Report Writer, How to find tables?

    Hello -
    I have a Report developed using "Report Writer", and how do i find the tables used in that report?
    Appricate any help

    Thank you, Any idea how to find the Logic used inthe report?

  • How to find the group ids from which the mail has been sent

    Hi,
    We are able to see the list of mails have been sent to respective mail ids with the help of tcode SOST.
    Is there any way to find through which group ids the mails have been sent.
    Tehe details showing as the mail has been sent by Batchusr.
    Please suggest how to find the group id from where the the mails have been triggered.
    Regards,
    Jena.

    Hi
    This is not helpfull
    If you open any notification QM03, there you will get tab " Action Log"
    If you click on action log , there are two fileds
    Date and time for task release
    I want to fetch these fileds in one of Z report.
    I am unable to find table name for these two fileds
    Task release Date
    Task release Time
    Can we add 'QN CHANGE DATE' parameter in the selection screen (just like QN creation date) w/ range?  The user want to run the report by QN change date as well.

  • Reporting Services - How to open a second table inside report, for each number of client (each apears in first table)

    Reporting Services - How to open a second table inside report, for each number of client (each apears in first table)?
    Exemple:
    Table1
    Cliente name:
    John
    Client number:
    12345
    Survay number of negative answers:
    3
    Table2
    Questions and answers that were negative:
    Question: How much time where you waiting
    Avaluation: 3 (from 1 to 10)
    Answer: They only called me 1 mouth later
    Can you please help me?

    Hi,
    Based on the description, I understand that you want to add subreport in the main report. When previewing the main report, the subreport can be shown in detail. Please see the screenshots on my test:
    In Reporting Services, we can create parameters and pass them from main report to subreport in order to control the data dynamically.
    References:
    Subreports (Report Builder and SSRS)
    Add a Subreport and Parameters (Report Builder and SSRS)
    If I have any misunderstanding, please feel free to contact me.
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • How to find Function Group

    Hi All,
            How to find Function Group for already defined Function Modules.
    Regards,

    >
    Venkat Reddy wrote:
    > Hi,
    > In addition to jayant, and MxG i will tell you one more way to
    > find the function group of a particular function group.
    > Give your function module name in SE37 and just press(Ctrl+f5) its a key for
    > copy where the function group will be display for your function module.
    > I think mine is simple
    >
    > Cheers!!
    > VEnk@
    Ctrl-f5 is the same as'Display object list Button' from Jayant Sahu.  What's funny, is that I only found this out this year and I've been doing SAP for over ten years...!

  • In Report Painter, need to find out how a field is defined.

    I'm trying to find out how a field used in a current report is defined.  For example, columns 2-13 are monthly columns.  Double clicking on the column name (April), for example, brings up the box "Element Definition: April;$Year.  The Value Field is Net Sales.  Clicking the drop down box brings up a group of fields, including Net Sales. 
    The Field Name for Net Sales is MA0001.  How do I find out how this field is defined and what accounts are included in it?
    Thanks for any help you can give.

    Hi,
    Thank you for your answer.  I was able to track 'Net Sales' as a part of a Key Figure Structure and as an element of Key Figure 'Net Sales'.  However, when I get into CO-PA, Information System, there is no line for 'Report Components'. 
    There are the following lines/folders: Display Line Item List, Define Report,Current Settings, Background Processing.  I looked at all the possibilities in those line items/folders and nothing was there.  Is there another way to get at it?
    Thanks again.

  • Report painter: how to edit.

    Dear everybody,
    I would appreciate your help.
    I need to edit an existing report painter query, in which I need to add a new selection criteria and to add a print parameter into the header of the report.
    How can I edit an existing report? I know about the GR* transactions, but which is the correct one to use?
    The details of the report are:
    >Report type : Re
    >Extdreport : FBRD01RFRRD10
    >Report and Form name : zsapfd10-03
    Thanks,
    Azit.
    Edited by: Julius Bussche on Dec 7, 2008 12:00 PM

    Poonam , thanks for replying
    but can you tell me how I will know what report group or library i need to enter
    the GR22 OR GR52 so I can edit the form/report with the details I attached ,
    my problem is that I don't know all the parameters to enter the report
    editor ( library , report group ...)
    all I know is the details I attached and also I know that
    this report has a form attached in transaction FDI2 .
    but I can't find a way to edit it properly
    It will be wonderful if you could help me ,
    thanks in advance ,
    azit .

  • Report Painter - How to identity statistical orders in a Cost Center Report

    Hello,
    currently I am in the process of building a cost center report based on reporting tabel CCSS.
    This report should list all primary and secondary costs which are charged to a specific cost center/cost center group .
    The cost center or cost center group is given in the general data selection.
    All direct primary cost postings are identified in rows like this:
    - Cost Element (SET): cost element group A1, A2,...Axx
    - Business Transaction Type: COIN
    All primary cost postings deriving from (real) internal orders are identified like this:
    - Cost Element: 1 to 9999999999
    - Business Transaction: KOAO
    - Partner object number: 0 to 99999999
    Now here is the problem:
    The controlling department requests to identify all primary cost postings  to the given cost center which have been postet to a statistical internal order at the same time.  The most part of the primary costs have been directly postet to the cost center in the Additioanal Account Assignments. But some have been posted to the cost center and at the same time to a statistical internal order.
    Looking into BSEG I can quickly identify these line items as they have a value in BSEG-KOSTL and BSEG-AUFNR.
    How can I select these items in a report painter report?
    I would like to separate all items whith connection to statistical int. orders from those with no connection to internal ordes.
    Thanks for your help!

    Dear Elli,
    Dear SAP-Gurus,
    once again, thank you for your quick reply.
    You hints and remarks are very much appeciated.
    My problem seems to be slightly more complicated than what I had expected.
    All postings to the cost center/cost center group are actual postings. The cost center is the "real" cost element, there are no postings of value type 11 here.
    Most postings have the cost center as the only cost element, but others additionally mention a statistical order.
    My goal is to seperate those postings to the cost center [as (real) cost element] plus the statistical order from those with only the cost center.
    I would also like to sort these postings by the order number.
    I could easily write two reports:
    One  for the cost center and another one only for the statistical orders. The latter would use value type parameter 11 (as you proposed!). Unfortunately, I do not know all order numbers tied to the cost center. As table BSEG is not suitable for SAP Query,  I  run into deep problems here.
    I know I have problem in the design of my report here and  I would like to sort out, which options I have.
    Is Report Painter a suitable tool for me here anyway?
    Thanks again!
    Karsten

  • GRR1 report painter how to explode at GL account level ?

    Dear Experts,
    I am preparing a balance sheet using report painter GRR1. in the characteristic i assigned the group account number and set as explode. however when i see the report it is exploded at group account number only asterisk level i set is 01. do you guys have any idea how to explode at GL account level? do i need to define asterisk level upto 03 ? if yes how to create asterisk level ?

    Hi,
    For each head like Trade Receivables, Trade Parables, etc, Did you explicitly maintain the GL acct. range by selecting 'Account Number' as Characteristics in that line?
    Thanks,
    Nirav

  • Report Painter- How to make cost center report for Jun07-Jul08 ?

    Hi Experts,
    I need to make a P&L (Actual/ Plan) report for Jun 07 - Jul 08 by using Report Painter, but I'm having difficulty to make column for the next year period (2008) and some other things.
    We are using K4 Fiscal Year Variant in ECC 6.0.
    The layout is somehow like this:
    Header : Cost Center
                 Actual/Plan Report
                 June 2007 to July 2008
    Body:
    Cost Element     |   Total Actual   |   Total Plan |  Actual  June | Plan June .................Actual July | Plan July    
    xxxx       
    xxxx
    Account Group (total)
    xxxx
    xxxx
    Account Group (total)
    Grand Total  
    How to:
    a. make the header "June 2007 to July 2008" ?
    b. make the selection screen to provide parameter for June 2007 to July 2008? (e.g.: period 6 fiscal year 2007 to period 7 fiscal year 2008)
    c. provide layout (rows and columns) as described above? it should provide detail cost elements and also calculate it as the total per account group, then finally the Grand Total for all of account groups. 
    Thank you before,
    -=Meila.S=-

    Hi,
    1. Put Year and Month as your General Selection parameters
    2. In the label of the fields, if you put the parameter name with & before, it will display the value
    3. If you put cost element in General selection, it will come with a group, and when you selecting the group, the report does the sub-totals automatically.
    Regards,
    Eli

  • Report Painter - Define characteristic row by group field

    I am creating a report using report painter. I wish to define cost element as the characteristice row, by inserting the Cost element group. But the characteristic panel do not have the column 'group' for me to difine; it only consist on the following column:-
    Name
    SET or Hierarchy on/off
    variable on/off
    from
    text
    variable on/off
    to
    text
    More
    Explore
    how do I insert the column 'group'?
    Thank you

    Dear Cire,
    Tick the "Set" and give the group name
    Assign Points if useful
    regards
    Venkatesh

Maybe you are looking for

  • Default Collection Option Set

    I currently use multiple collectors that I have created to scan different locations based upon IP Ranges. I have created them so that the collection is spread out over a one week period to minimize network activity. I have been directed to change my

  • Setting default size for the information area in the main window

    Hi, I wonder if there is any way to change the default size of the information area in the main window (lower left corner). I want it a little bigger because I had some useful information set there and I had to change the size every time I log in. Th

  • Step type section is not visible in workflow builder.

    Hello Friends,                     Step type section is not visible in workflow builder even though I am in change mode. How to make it visible. Cheers, Senthil

  • Can i use firefox mobile on my RIM black berry 7100g

    My RIM BlackBerry 7100g cingular shows no browser in the menu and when i try to press what would have been its short cut to browser it displays that there is no browser configuration service book entries

  • DISAPPOIN

    I recently purchased the Zen Nano Plus GB. WOW!!! Lousy software... () The device automatically shutoff after playing a song. Of course, I downloaded the firmware update (fyi - the instructions are inaccurate; secondly, they do not work). After conta