Re : Report Painter / Creating a link among 2 variations in Report Painter

Hi everyone,
In my report painter, there are 2 variations which are 2 seperate fields of a table. I have a request which demands to link those variations to one to display as a hierarchy.
For example :
The variation 1 stands for the field of 'Company Code' (GLPCT-RBUKRS)
The variation 1 stands for the field of 'Business Area' (GLPCT-GSBER)
The new display of the variaton would be :
Company Code 1
|-- Business Area 1.1
|-- Business Area 1.2
|-- Business Area 1.3
|-- ...
I tried to create a variable for a multiple dimention set, and several settings concerning variation. But they didn't work at all.
Do you have any ideas to link those 2 different fields??
Reward points for your helpful suggestions for sure.
Many thanks,
Best regards,
Huong

Hi
Try using Sets. Create set using T.code GS01 and click on Hierarchy Maintenance and create Hierarchy.
In report painter, select edit - general selection data - select set or Hierarchy, enter the set you have created.
Next Go to Variation, select business area and select the button explode.
It is show you Hierarchy of business area in the output of report painter.
Please let me know if you need more information.
Assign points if useful.
Regards
Sridhar M

Similar Messages

  • Create a Link to another (custom) Report

    Hi guys,
    I'm back again as I'm stuck with trying to create a link between two custom reports.
    I'll make it simple, this is the current result when I run the main custom report:
    This is its query (I removed all the exlusions to make it short):
    SELECT distinct ARPDisplayName0, Count(rsv.ResourceID) AS 'Count' , Publisher0
    FROM v_R_System_Valid rsv
    LEFT JOIN v_FullCollectionMembership fcm on fcm.ResourceID=rsv.ResourceID
    LEFT JOIN v_GS_INSTALLED_SOFTWARE arp on arp.ResourceID=rsv.ResourceID
    WHERE fcm.CollectionID = @CollectionID
    --- List of Software ---
    and (
    ARPDisplayName0 LIKE '%Access%'
    or ARPDisplayName0 LIKE '%office%'
    --- Run the query only on any vendor which includes the word Microsoft ---
    and Publisher0 LIKE '%Microsoft%'
    --- Exclude/Include any hostnames which contains the following ---
    and (rsv.Netbios_Name0 NOT LIKE '%STC%')
    GROUP BY ARPDisplayName0, Publisher0
    ORDER BY count desc, Publisher0
    Now, I'd like to click on the Software name and run this query against it:
    SELECT Netbios_Name0
    FROM v_R_System_Valid rsv
    LEFT JOIN v_FullCollectionMembership fcm on fcm.ResourceID=rsv.ResourceID
    LEFT JOIN v_GS_INSTALLED_SOFTWARE arp on arp.ResourceID=rsv.ResourceID
    WHERE ARPDisplayName0 LIKE 'Microsoft Visual Studio 2005'
    GROUP BY Netbios_Name0
    ORDER BY Netbios_Name0
    Where "Microsoft Visual Studio 2005" is going to be the variable passed once clicked on it. The above will return a list of hostnames where that software is installed to.
    I appreciate any help. Thanks :)

    Can you also explain me the alias part aside please? Thanks a lot.
    Using your Query above. Notice the Count(rsv.ResourceID) statement.
    rsv is an alias for v_R_System_Valid
    Each column should have an alias. so ARPDisplayName0 should be arp.ARPDisplayName0, etc. This will prevent conflicts between the various views and ensure that you get the right data returned.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Help Creating A Link In An IR Report Passing The Value From A Different Col

    Version 4.0.2.00.07
    Hello,
    I have an Interactive Report with a column that I need to create a link on but I need to pass the value of another column.
    This report shows the Features of a particular Release. There is a select list for the Release that is selected and executes the report.
    There is a column that indicates whether the Feature has a Commitment attached to it. If there is have that a link to another report that shows all the Commitments for that Feature by passing the FEATURE_ID which is also a column on the Feature report.
    Query:
    SELECT
          ,CASE WHEN ft.feature_id IN (SELECT cc.feature_id
                                       FROM customer_commitments cc
                                       WHERE ft.feature_id = cc.feature_id
                                      ) THEN 'Yes' ELSE 'No'
           END "Commitment Exists"
              ,ft.feature_id
    FROM ....If "Commitment Exists" has a 'Yes', the 'Yes' is a link that will pass the FEATURE_ID to another report that will show the Commitments for that Feature. If the "Commitment Exists" has a 'No' then no link.
    I was also wondering if the Commitment report could open in a seperate window and make it modal?
    I hope this is clear and someone could help me.
    Please let me know if it's not clear or more information is needed.
    Thanks,
    Joe

    To accomplish this I would build the link as part of the value. So if Yes the Yes itself would be a link, if No is simply text as today.
    It would look something like this:
    SELECT
          ,CASE WHEN ft.feature_id IN (SELECT cc.feature_id
                                       FROM customer_commitments cc
                                       WHERE ft.feature_id = cc.feature_id
           THEN
            '<a href="f?p=&APP_ID.:NEW_PAGE:&SESSION.::::Pn_FEATURE_ID:' || ft.feature_id || '">Yes</a>'
           ELSE
            'No'
           END "Commitment Exists"
              ,ft.feature_id
    FROM ....One problem with this approach is when you export the report (as a CSV for example). There are a few ways to handle this, one is to simply duplicate the column with clear text yes and no and set this column to be included on export and only visible on export. The other column, with the link, set it to no export.
    The other option is to add another condition on the REQUEST value.
    SELECT
          ,CASE WHEN ft.feature_id IN (SELECT cc.feature_id
                                       FROM customer_commitments cc
                                       WHERE ft.feature_id = cc.feature_id
           THEN
                  decode(:REQUEST, 'CSV', 'Yes'
                , '<a href="f?p=&APP_ID.:NEW_PAGE:&SESSION.::::Pn_FEATURE_ID:' || ft.feature_id || '">Yes</a>'
           ELSE
            'No'
           END "Commitment Exists"
              ,ft.feature_id
    FROM ....It seems that the link itself is getting replaced with a #. The link would look something like this:
    'f?p=&APP_ID.:NEW_PAGE:&SESSION.::::Pn_FEATURE_ID:' || ft.feature_id
    Hope this helps.
    Oh and of course, in order for the link to display you need to change the Display Type to "Standard Report Column" otherwise the HTML will be escaped.
    Thanks
    -Jorge

  • How to Create a Linked Subreport in Crystal Report for Enterprise

    Hi All
    I am developing a monthly report grouped by cost centre, I want to create a second table for each cost centre showing year to date, underneath the monthly data for that cost centre.  My thoughts on how to achieve this is to create a linked subreport in the group footer of the cost centre grouping.  However every time I try to set this up the report crashes.  Am I doing something wrong, can this be done in crystal reports for enterprise?  Can anyone give me a pointer on how to set up a linked subreport so that it passes the particular cost centre the report is grouped upon into the subreport so it only shows data relevant to that cost centre?
    Any help will be appreciated as I am going in circles at the moment.
    Thanks
    Neil
    Edited by: SmiddyLad on Feb 6, 2012 2:49 AM

    Hi Neil,
    You are doing right. You can create linked subreport in crystal report for enterprise.  Please refer below link to see the elearning tutorial  in which a simiar scenario is explained step by step. Here its an unlinked subreport. Enable subreport filter to make it linked and try. It should work.
    [http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/200c56fc-5a02-2e10-36a1-ba3d28e31fc2]
    Hope it helps you.
    Regards,
    Nikhil Joy

  • Create calendar linking dates to a report

    I would like to create a calendar with HREF links to a report. The calendar date is a link that you can click to pass the date to the report. The report will select average of a data column on that date and displays it, that's all. How do I do all the parameter passing....etc and create a report that takes a parameter.
    I looked at the Apex documentation and I studied the HTML links HREF tags in the Sample Application's "Orders" calendar page but I couldn't find documentation on what the parameters do : APPS ID, SESSION.....etc ??

    Hi,
    Your code seems to be fine. Looks like there is some problem with your report. Are you able to run the report
    independantly?
    Please try a simple one with department like this. It works fine for me.
    Declare
    mdeptno NUMBER;
    Rep_Url Varchar2(2000);
    begin
    mdeptno := p_session.get_value_as_number(
    p_block_name=> 'DEFAULT', p_attribute_name=> 'A_DEPTNO');
    Rep_Url :=
    'http://toolsweb.us.oracle.com:2000/pls/mb/MYBUGS_DEMO.NEW_TEST_RPT.show?p_arg_names=department&p_arg_values='||mdeptno;
    MYBUGS.wwa_app_module.set_target(Rep_url,'CALL');
    end;
    This code I have entered in the success section of the form.
    If even this does not work, then there is a problem in your build.
    Thanks,
    Sharmila

  • Creating a Linked Report in SC 2012 - Operations Manager fails with Error

    Hello everyone,
    I was trying to create a linked report based on an availability report recently. I found Emre Guclu's scom linked report creation guide here:
    http://blogs.technet.com/b/emreguclu/archive/2011/10/13/using-linked-reports-in-scom-to-create-custom-availability-reports-for-specified-monitors.aspx
    I go to SSRS web console and select a report (Which is Microsoft.SystemCenter.DataWarehouse.Availability in Microsoft.SystemCenter.Datawarehouse.Reports), select "Create a Linked Report" from context menu, select another location for storing the
    report just like on this guide but i get an error rsWrongItemType with exact text:
    "The operation you are attempting on item ' Microsoft.SystemCenter.Datawarehouse.Reports/ Microsoft.SystemCenter.Datawarehouse.Availability' is not allowed for this item type. rsWrongItemType"
    Does anyone know why is this error happening and better how to fix this?
    Below is the screenshot of SSRS.

    Hi,
    Please check the report path you have set, the location must specify the full report path, such as
    /custom report folder/MyReport.
    Alex Zhao
    TechNet Community Support

  • How to create a link to a unix document in interactive report??

    on the same UNIX server where APEX 4.2 is installed I have a directory with pdf documents - /d01/apex/docs/mydoc.pdf for example.
    How can I create a link in APEX interactive report to point to the document and allow users to view or download on their PC's?
    Thanks.

    Hello,
    In your report source, you should use something similar to:
    Select empno , ....., '<a href= "#IMAGE_PREFIX# ........" >' Download from server '</a>' as "Download" from empWhere #IMAGE_PREFIX# stands for Static resources "i" in your web server. it should be in your case (for Windows):
    C:\apex\imagesYou may need to use CASE Clause for multiple Docs
    Please see this example:
    http://apex.oracle.com/pls/apex/f?p=63066
    worksapce: somefeto
    user: test
    pwd: test
    Regards,
    Fateh
    Edited by: Fateh on Oct 24, 2012 11:35 PM

  • Binding Sub Report based on link clicked in main report in BIDS

    Is it possible to bind Sub Report based on the link clicked in main report which is the parameter for sub report in BIDS?

    Hi Thanuja534,
    If I understand correctly, you want to add a drillthough action on a report to jump into another report with a specified parameter. 
    A report can contain links to other reports. The report that opens when we click the link in the main report is known as a drillthrough report. Drillthrough reports are a type of report that we access by clicking a link in the current report. When we click
    a text box that has a drillthrough action, we open the drillthrough report. If the drillthrough report has parameters, we must pass parameter values to each report parameter.
    Besides, drillthrough reports must exist on the same report server as the main report, but they can be in different folders. We can add a drillthrough link to any item that has an Action property, such as a text box, an image, or data points on a chart.
    For more information about adding parameters to pass to a Drillthrough Report, please see:
    http://technet.microsoft.com/en-us/library/aa337477(v=sql.105).aspx
    If you have any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Variations in Report painter?

    can anyone explain about variations and elements in Report painter elaborately.

    Hi,
    Report Painter is also a Tool provided by SAP to write/design the Reports without the need of a true programmer/developer. It is helpful to functional people to create the reports depending on their requirement.
    Especially useful in FI CO.
    The output of report painter will be similar to other reports which we develop.
    whereas the Report Painter enables you to report on data from various applications. It uses a graphical report structure that forms the basis for the report definition. When defining the report, you work with a structure that corresponds to the final structure of the report when the report data is output.
    link for report painter --
    https://forums.sdn.sap.com/click.jspa?searchID=221874&messageID=1818114
    Thanks,
    Shankar

  • Create a program, based on a report painter query

    Hi!
    I would like to create a program, which contains the same data, what I can get from a report, which is made by report painter in transaction GRR2. The given report is for checking the service orders.
    This report has a key (order number) and additional columns, like material cost, personal cost, external service cost, money income, etc...
    I would like to know, how can I identify the tables, columns and table entries, where these values come from?
    How can I retrieve from the SAP, for example the material cost of the service orders?
    And of course with the less hard-coding.
    Thank you
    Tamá

    How to find the cost element to filter
    - Ask your FI-CO team.
    - Analyze the Customizing (IMG): "Materials Management", "Valuation and Account Assignment", "Account Determination" to find the cost element/account used for MM. go to "Account Determination Without Wizard", "Configure Automatic Postings"
    - Look at table T030 which links Operation/Transaction key and Account, and filter KTOSL on Operation Group T030A-GRUP = 'RMK' for MM.
    Ask also the CO team if they maintain a hierarchy of cost element that you could use in your report.
    Also use SE30, when analysing the result you could find the way used by the generated program to spread the cost elements in column.
    Regards

  • How to create a dynamic action from link column in classic report

    I Have an apex page that display a modal window utilizing jquery. In the modal window I have a classic report with a link column that I want to capture its click event.
    I was thinking I could create a dynamic action with selection type=jquery selector. Not for sure if I need to do anything on link column and do not know the syntax
    for jquery selector. Would appreciate any help or direction???

    Thank you for your response. I am very new to Jquery so don't understand all that well.
    What I did:
    I created a dynamic action
    Event: Click
    Selection Type: jQuery Selector
    jQuery Selector: tdheaders
    Created True Actions
    I created an alert to see if this is being executed.
    Alert 'I made it here'
    What I have:
    I created a report region with the following query:
    Select empno, ename, 'SELECT' from emp
    where (ename like '%'||ltrim(rtrim(:P2_SEARCHPU))||'%'
    or :P2_SEARCHPU is null)
    I created 'SELECT' column as Link Column
    Report Attributes
    Link Text Select
    Target Page in this Application
    Page 2
    Region Header
    <div id="ModalForm2" title="Employee List" style="display:none">
    Region Footer
    </div>
    This report is displayed in a modal form when a button is clicked.
    Code for modal window in Page Header
    <script type="text/javascript">
    $( function() {
    $('#ModalForm2').dialog(
    { modal : true ,
    autoOpen : false ,
    buttons : {
    Cancel : function() {
    closeForm2();
    function openForm2()
    $('#ModalForm2').dialog('open');
    function closeForm2()
    $('#ModalForm2 input[type="text"]').val('');
    $('#ModalForm2').dialog('close');
    </script>
    I am trying to capture the click event on the link column of the report in the modal form. I want to pass a couple of column values
    back to the main form and close the modal window. I do not want to do the submit that happens if I click on the link column and link back to the main page(2)
    If I let the submit to happen, all other entered fields are cleared on my main form.
    Just don't understand the jQuery selector. I have no problem catching the button clicks on the modal form.

  • Create a link to a page from a report query

    version Application Express 3.2.0.00.27
    I have done this 10s of times but for some reason its not working this time.
    I am creating a link in a report sql query region. When the user clicks on one of the rows in the sql rpt region, it will take them to the page where they can edit the record selected. I select edit the report attribute in the report region, then select the column that will display as the link. It is the column that is the pk(app_id).
    I go to the column link section. I enter the target page(8), select what icon to display, enter the item name that is the target for a value in page 8(P8_APP_ID).
    And finally I enter the value that will be copied to P8_APP_ID. That is I enter #APP_ID#(row item from source page). I then run the page and click a row in the rept region(page 6). HOwever I get an error of ORA-01403: no data found. I look at what value was copied into the targe page item and its not what I expected.
    I go back and verify I set up the link correctly but this is what I see for the page item and value to link to and copy its value.
    Instead of P8_APP_ID and #APP_ID# as I entered, the #APP_ID# is getting changed to &APP_ID. I can't figure out why this is happening!!! Every time I enter
    #APP_ID#, APEX is changing it to &APP_ID.
    Any ideas folks?

    It doesn't sound like a good idea to me to use your own APP_ID. APP_ID is already the application ID of the current application.
    Give app_id in your query an alias and see if that works.

  • Create a program, based on a report painter query issue continues

    Hi!
    I would like to create a program, which contains the same data, what I can get from a report, which is made by report painter in transaction GRR2. The given report is for checking the service orders.
    This report has a key (order number) and additional columns, like material cost, personal cost, external service cost, money income, etc...
    I found the COSP table, which can be very useful. Unfortunately COSP table contains only the costart (KSTAR) and I don't know, which costarts can be attached to the material costs, which costarts to the services, which costarts belong to the money income, etc...
    Could you please tell me, where can I find this assignment?
    Thank you
    Tamá

    Solved, here:
    Create a program, based on a report painter query

  • Report Painter:create a transaction, transport DEV to PRD

    Dear all,
    I have created my first report in GRR1 (Report Painter / Writer), modifying a standard report that uses the library 8A2 (EP PCA).
    In all, i created the following objects:
    1) report ZRPRT (created with T. GRR1 (Report Painter / Writer))
    2) report group Z8XY(created with T. GR51), that contains only this report
    3) Account group Z_CO_XY (created with T. KDH1),with the GLPCT table, field RACCT. Z_CO_XY is  input parameter as group account, via selection screen, of the report ZRPRT. 
    Now i would like:
    1. Create a transaction to run this report from the mainmenu.
    2  Transport everything,  from DEV to PRD.
    I would like to have everything in a PRD, also for maintenance reasons.
    If in the future, i need to modify this report, I would be able to bring everything from PRD to DEV to make those changes (if, in the meantime, the objects were deleted from DEV, for whatever reason)
    Please, can you give me an explanation step-by-step what I should do. Any advice is welcome!
    Thank you in advance.

    Add custom reports to an existing Report Tree (SERP)
    For example:
    Add custom report to:  Project System/Information System/Financials/u2026
    Find u201CPS91u201D from SERP
    Add a report to PS91
    The trick is find the existing report tree related to standard main menu.
    Or create a new report tree where you house all custom or selected reports in one place.
    May also consider using area menu (SE43): create a structure, for example, to house all custom reports.  A useful tool to manage custom/specifc reports

  • Document/hyper link among webi reports

    Hi Gurus,
    I am trying to link webi documents,
    I hav 2 options
    1.)hyperlink and
    In hyper link I am using this link but i am not able open the target document..
    https://bodev.pg.com/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=ATjA2dUY7u1Hldh9n6imWmM&lsSR=[Run Date]
    2.) document link
    I am  not able to see the document link tab  in report elements (as in attachments). I would like to know how to view that option
    regards
    mahi

    Hello Victor,
    I am able to apply doc linking on horizontal/vertical  tab successfully but I want to apply doc linking on crosstab..
    And the linking should be row wise linking.. I have 7 rows in my main rep where when i click on each row it should get navigated to respective detailed report.
    Please advice me..
    thanks
    mahi
    Document/hyper link among webi reports 

Maybe you are looking for