Cascading Interactive Reports - issues

Hello,
i am trying to make Cascading IRs, because i need master-detail table/table UI for some of my pages. I found this previous thread :
Re: Cascading interactive reports
and i am following the advices of Hari_639. I have made the detail IR/form pages and also the master IR. Now in Link Column of the master, that should target the IR of the detail, it says "pass the FK and PK" values. But there are no items brought if press the Find Item of Name1 and Name2 button, since this is an IR and not a Form. Any idea how to do this ?
TIA

Hello,
atm i have managed to create the detail IR below the master IR and succeeded in synchronizing them by using the "edit" link in the master IR.
http://i48.tinypic.com/2ed8cj4.jpg
What i would like to do now is:
1. The detail IR, although in Printer Friendly mode, still displays the elements that i have in Page 0 (logos etc). How do i hide/not display these elements also ?
2. The detal IR, does have an edit link too. This edit link redirects to the edit page (Form) of the detail item. That page though is displayed in that Frame. Is it
possible to display that page without the master IR (as if the IR was not master detail) and return to master after cancel/save ?
3. The master IR does have pagination. So, when i navigate to next set of records the master is updated but not the detail. Is it possible to achieve this and
detail displays the records that correspond to first record in master displayed ?
TIA

Similar Messages

  • Interactive Report issue ( hw to come 5th list to back 2nd list directly )

    Hi Experts,
                      I have one issue regarding Interactive report.
    -->  I am in 5th list , and i want go directly to the 2nd list .
    --> Hw we select multiple line of data in one list and pass to another list.
    Helpful answers will reward.
    Regards,
    Vinai.

    JUST HARD CODE
    SY-LSIND = 2. IN YOUR FN CODE WHERE YOU HAVE TO GO.
    i.e.
    if sy-ucomm = 'BACK' and Sy-lsind = 5.
    sy-lsind = 2.
    endif.
    regards
    shiba dutta

  • Interactive Reporting issue on Windows Server 64 Bit

    Hi All,
    I am facing on Interactive reporting couldn't run on workspace, here are my Hyperion enviroment.
    1. Hyperion version 11.1.2.1
    2. All Hyperion component are running on Windows Server 2008 64 Bit
    3. Installed Essbase client on the server that Workspace running.
    Do you have any solution on this? Could you please help me on this issue?
    Regards,
    Nick

    Hi All,
    I am facing on Interactive reporting couldn't run on workspace, here are my Hyperion enviroment.
    1. Hyperion version 11.1.2.1
    2. All Hyperion component are running on Windows Server 2008 64 Bit
    3. Installed Essbase client on the server that Workspace running.
    Do you have any solution on this? Could you please help me on this issue?
    Regards,
    Nick

  • Interactive Report, issue with backgroud color of Column Heading.

    Hi,
    I am using Theme -16
    and there is a Interactive Report with the following columns Headings
    Employee Name   Employee No  DOB
    Now, the label of the first column is changed from Employee Name to Employee<br>name.
    The column heading is now displayed as follows.
    Employee   Employee No   DOB
    Name         problem is when I add a break in any of the column heading..the background color of the column headings is different than the first one (little bit darker).
    Why the background ground of the column heading is different in both these cases??.
    Thanks,
    Deepak

    Why the background ground of the column heading is different in both these cases??.The report heading background is controlled by the CSS rule
    .apexir_WORKSHEET_DATA th {
      background: #4e4e4e;
      font-weight: bold;
      color: #fff;
      border-top: 1px #ccc solid;
      border-bottom: 1px #aaa solid;
      white-space: nowrap;
      vertical-align: center;
      letter-spacing: 1;
      font-size: 8pt;
      background-image: url(../ws/report_bg.gif);
      background-repeat: repeat-x;
    }This uses a [gradient image|http://apex.oracle.com/i/ws/report_bg.gif] that is repeated horizontally to provide a shaded background from light to dark grey. As the background image doesn't repeat vertically, when the height of the heading is more than the height of the image the gradient is replaced by the underlying background colour (#4e4e4e). This is what's happening when the break is inserted into the header text: the height of the heading increases, causing more of the darker area of the background image/underlying colour to be visible.

  • Interactive report : issue with french special characters

    Hi,
    We have many interactive reports and we can't use any french special characters in the filter clauses. For example, Montréal becomes montréal.
    What parameters do we have to change to make it work?
    Thanks.

    I found the answer in this thread : Interactive Report Character Set Issue

  • PL/SQL Interactive Report issues - Piped function or Collections

    Hi,
    I have a report where I either want to limit the return by date or return all. PL/SQL didn't work in the Interactive Report (is it available in 3.2?) then my second idea (2 reports; one for each option) didn't work as you can't have more than one IR on a page. Searching here I found people guiding others to here for collections and here for piped functions.
    Ok I finally understood the collections thing (didn't realise that "function_returning_query" would be replaced with your code) but I'm not sure it can be used in my situation? I want it to be dependent upon a LOV on the page with my predicted code like:DECLARE
    q VARCHAR2(30000);
    BEGIN
    q := 'select UPD_ID, PROJECT,DATABASE,REF,DESCRIP,STATUS,PERSON,
    TO_CHAR(INS_DATE, ''HH24:MI DD-MON-YY'') AS INS_DATE
    from TBL_ENV_LOG';
    IF :P5_DAYS != 1337 THEN
    q := q || ' where TBL_ENV_LOG.INS_DATE >= TO_TIMESTAMP(SYSDATE - :P5_DAYS)';
    END IF;
    q := q || ' order by TBL_ENV_LOG.INS_DATE desc';
    return(q);
    END;So the value of :P5_DAYS would need to go there somehow, can it be passed as a parameter?
    Is there another way to do this? Making lots of hidden fields is annoying :/
    Edit: I used a CASE statement for a column before, could I use that for entire queries?
    Mike
    Edited by: Dird on Oct 14, 2009 10:45 AM

    Hi,
    CREATE OR REPLACE FUNCTION BLOG_FUNC RETURN VARCHAR2 IS
    q VARCHAR2(30000);
    BEGIN
    q := 'select UPD_ID, PROJECT,DATABASE,REF,DESCRIP,STATUS,PERSON,
    TO_CHAR(INS_DATE, ''HH24:MI DD-MON-YY'') AS INS_DATE
    from TBL_ENV_LOG';
    IF :P5_DAYS != 1337 THEN
    q := q || ' where TBL_ENV_LOG.INS_DATE >= TO_TIMESTAMP(SYSDATE -' || :P5_RAD|| ')';
    END IF;
    q := q || ' order by TBL_ENV_LOG.INS_DATE desc';
    return(q);
    END;Error at line 8: PLS-00049: bad bind variable 'P5_RAD'
    I assume I need to pass parameter values like P5_RAD but how do I relate it to:Select *
    From apex_collections
    Where collection_name = ‘IR_TEST’;
    is it...
    Select *
    From apex_collections(:P5_RAD)
    Where collection_name = ‘IR_TEST’;
    ??Edit: The IR query changes to BLOG_FUNC(:P5_RAD) right?
    Edit 2: Nope that doesn't work :/
    Mike
    Edited by: Dird on Oct 15, 2009 8:35 AM
    Edited by: Dird on Oct 15, 2009 8:38 AM

  • Interactive Report Issue - Control Brake for Group By

    Hi all,
    is it possible to create "Control Brake" for the Group By view of the interactive report?
    I have the following IR with group by (Take a look at the GROUP BY View!!!): https://apex.oracle.com/pls/otn/f?p=2071:212
    Now I would like disable the lines with repetitive values. The report should be the following:
    CPU Type    CPU Speed    Count (CPU Types)
    ==========  =========    =================
    Celeron           366                    1
    Pentium I         100                    1
                      166                    1
                      200                    2
                     1200                    1
                     1700                    1
    Pentium II        366                    1
                      667                    1
    .Is it possible to realize it with interactive reports?
    Regards

    S-Max wrote:
    Perhaps any way using Javascript, jQuery, and s.o?
    Any Ideas?Use a standard report with break formatting or a custom row template.

  • Cascading interactive reports

    Dear all,
    I want to develop a master page with an interactive report
    which leads me via the EDIT-link to a detail page,
    which contains the HTML report of the record of the Master page
    plus an interactive report for the details linked to that master record.
    I tested a lot but always run into trouble like “… needs an updatable record”.
    Any hint appreciated. Thanks in advance!
    Regards
    lucio

    Lucio,
    In this case master-detail form may not help you much.
    You may..
    First create 'Form on a table with report' for 'Detail table' and select report type as IR. So APEX will create two pages, say Report_on_TBL_DETAIL and Form_on_TBL_DETAIL
    Next create IR on 'Master table' and set the link column to "Link to custom target". Target this link to Report_on_TBL_DETAIL page and pass the PK and FK values.
    Now in Report_on_TBL_DETAIL page, create a new region above IR and display 'Master table' row details (using PK value you have passed). Change the IR query so that it will only display records for the 'master row'
    Cheers,
    Hari

  • Interactive Reports Issue Quality System

    Hi experts,
    This is regarding Interactive reporting fucntionality available in SAP CRM 7.0
    I have configured this fucntionality in our DEV environment & actually created the various types of reports by assigning 10 custom fields which have z extensions.
    Now, i have transported every custom field to Quality System but while creating a report, & while selecting the fields, i am unable to see those custom fields which i use to see in DEV box. I can only see the standard field
    I would appreciate if someone can suggest or give some solution on this in order to fix in our Quality box.
    Thanks & Regards,

    >
    SAPRPT wrote:
    > Now, i have transported every custom field to Quality System but while creating a report, & while selecting the fields, i am unable to see those custom fields which i use to see in DEV box. I can only see the standard field
    Hi!
    Provided you created the extension fields with the Application Enhancement Tool, you will have to transport the enhancement into your target system first. Then generate it locally with report AXT_EXT_ACTIVATE_LOCAL.
    Regards,
    Sven Kriebel

  • Interactive report issue

    Hello,
    I have develop an APEX intereactive report but by default, the report does not display anything. In Order to display contents, I explicitly have to go to search bar, click on select columns and then display all columns to display it.
    How can I by default, display entire content as soon as the page is run?
    Thanks,
    R

    Hi,
    This generally happens if you change the query after creating interactive report.
    1) Select all the columns which u want to display , then click on the menu and select SAVE REPORT and save as default.
    2) Copy the interactive report query.. delete the current report and re-create.
    Regards,
    Shijesh

  • Hyperion Interactive Reports issue

    Hi,
    We have designed an IR report with Scenario, Version, Currency, Period and Year will be selectable from drop down and the grid will contain Account and Entity dimensions. The query result is showing correct but, in the dashboard, we can not see the version members in the drop down list. One member is selected for all other dimenaions, but not for the Version dimension. Please advise how this issue can be resolved.
    Thanks.

    Hi,
    I have changed the order of the distribution list and waiting for a confirmation from the users but we are having a new issue.
    One of the scheduled job is not sending out the emails to anyone. I tried to run the report manually and it runs perfectly. Right now we are exporting the file in the format 'Microsoft Office Web Archive.'
    The scheduler was running perfectly untill 5/18 but didnt sendout after 5/18. I have ran report manually and exported as Web Archive and observed that the file size is 17MB. I have checked the previous outputs and all were under 11MB from the time since it was scheduled.
    I suspect this is because of the file size. I have also did a trail run by changing the export option from Web Archive to Excel and it did send out the report and excel file size was 3MB.
    Any ideas on this limitation? We are on version 11.1.2.1.
    .

  • Interactive Reporting Issue

    We are changing the table definition, lets say a column name. And that column is referenced in a BQY. Is there a way that we can identify that changing a table definition impacts which BQY's

    I am not 100% sure but there is a utility called Impact management.You should check the documentation for the same.

  • Question on Interactive Report feature sorting

    Hi,
    I have about over 10,000 records and used the interactive report feature on Apex. For some reason, on the timestamp column, I tried to resort in the latest date and it only shows the latest date of last year and didn't show the latest date of 2010. I tried changing the timestamp column to sort by descending, and it doesn't show any latest date in 2010, only 2009.
    Could this be an issue with the interactive report issue.
    Thanks,
    Michael

    Hi,
    If you have default 10,000 row limit in interactive report , sorting work only for that record set.
    Increase rows that report show, or you can use ORDER BY in report select to get e.g. 10,000 latest row.
    Br,Jari

  • Problem passing parameter to Interactive report

    Morning!
    I'm having problems when passing a parameter value to a report - I'm using IR_<column_name>, which works fine most of the time, except when the value I'm passing has a leading '#' ie. '# No People' - I have tried encoding it ie. '&#36. No People' but it still doesn't work. Anybody know how I can work around this one?
    Thanks for your help

    Another thread < a href="http://forums.oracle.com/forums/message.jspa?messageID=9319781#9319781">Interactive reports - Issues with column link values </a> discusses the same issue.
    Strangely enough,that thread is still showing in the first page as I am posting this reply,, you could have just done a quick scroll and seen it.

  • Performance issue with Hyperion Interactive Reporting  Report

    Hi,
    We created a report in Hyperion Interactive reporting using Hyperion Essbase as database connection file .
    Report performance was good in Interactive reporting Studio we don't have any problem in studio.
    when we open the report in Hyperion Workspace report performance is very very slow. We are using system 11.1.1.3
    Any suggestions to resolve performance issue will be really helpful.
    Thanks in advance
    Regards
    Vamsi

    Thank you so much, It is working fine when the report is in table structure (List Report. I mean insert a table and drag and drop the fact items and dimention items in to the table)
    The requirement is looks like that, it is not a pivot table. Now I want apply the different color or shadow for Item1 and Item 2 in all groups... Please help me.
    Total Fact Fact 1 fact 2 Fact 3 ......
    Group 1
    Item 1 Item 1 000 000 000 000 ...
    Item 2 Item2 000 000 000 000 ....
    Group 2
    Item 1 Item 1 000 000 000 000 ...
    Item 2 Item2 000 000 000 000 ....
    Group 3
    Item 1 Item 1 000 000 000 000
    Item 2 Item2 000 000 000 000
    Thanks and Regards,
    Murugan

Maybe you are looking for

  • Help with TCP/IP communication via Teststand and Labview

    Hello, I am trying to create a sequence of tests and need to communicate between LabView vi's and another program over a TCP connection. When I have the sequence hard coded in LabView everything works fine, but my goal is to break up the sequence int

  • Downpayment clearing

    Hi guys I am using doc types KR and KN for downpayment. if i use doc type KR, i can clear the downpayment with no problem - however if i use doc type KN, i cannot. Can anyone suggest what i need to do to fix this? I am using F-47 for downpayment and

  • How to prepopulate child process form in access policy

    Hi, I have different groups in access policy and corresponding to each group we have different roles. This group and role mapping is stored in a lookup.I have to fetch the value from the lookup to the process form child table according to the group a

  • Permissions error on Azure website

    Our site hosted in North Europe (with subscription ID: <removed for security purposes> has just started throwing permissions errors when attempting to write to one of the folders.  I have just attempted a redeployment, but this is failing giving the

  • XML Template could not find error when submitting for other than English

    Hi All, When I try to submit my custom xml report through SRS window, in NON english language, I get following error "The simultaneous application program could not find an xml template for the program. Check the configuration of the data and informa