Charting a page item

I´d like to use the line chart function to chart a previously selected page item;
I´d like to do something like this:
select null l,
TIME,
VAR
from(select
to_char(timestamp, 'HH24:MI:SS') TIME, P100_PAGEITEM VAR
from TABLE
where VARIABLE2 = x
order by TIME)
where the P100_PAGEITEM is pulled from a selector box on the page.
Sergio, if you´re reading this, it´d be like a one variable ad hoc chart function...
Any ideas on how to do this?

This basically means that there is an object that has its top left corner at x: 34 y: 488 which is too large to be rasterized, it could be due to any large object that is extreme wide or tall.
Try to check page content and then resize it to verify the behavior. Please let me know how it goes.
Thanks,
Sanjit

Similar Messages

  • Charts based on page items

    Hello,
    I want to create a Pie chart based on page items. There are 3 page items that I want to use for an Pie chart. The page items are calculated in an page process PL/SQL block and they are numbers. I want all PL/SQL in that page process and from there built the Pie chart. Is this possible to use the page items for the pie chart, I can only find information to build charts with querys.
    I use apex 4
    Edited by: Martijn Brands on 1-sep-2010 2:46

    I have used an function with three values as input and returning an pl/sql table with the three values.

  • Computed page item no longer working after upgrade to 1.6

    Hi team,
    I noticed that the pages where I was using conditional computations based on sql queries for setting the value of items are no longer working as before.
    If I run the page in debug mode however I see that the computation is actually performed and the correct value is retrieved indeed. The value is also present in the session window.
    This values are used inside chart region titles, but for some reason they do not show up.
    Are you aware of any known problems?
    In case you want to check, the application is 21670, page item is P64_CATEGORY_NAME (page 64, of course) and it is recalled inside the chart region's title.
    Thanks,
    Flavio

    Flavio,
    I think it's working now. The source type of the item was 'Always..' and the source was 'Always null'. Changed to 'Only..' and 'Static Assignment'. The computations are working right, as you said. It was just that the item's current value (in the memory arrays) was null and that's what was used in the &ITEM. substitution.
    Scott

  • Trouble with using javascript $s function to populate a page item

    Hello Oracle APEX Community,
    I'm working on a drilldown dashboard page and have been encountering a problem when i try to populate a Text Page Item (hidden or not) using the javascript built in $s function.
    The function works great when the data is a number such as dept_id (even if the field type is varchar). However, trying to pass anything which is a text the process fails, except when a value is hard-coded as a parameter for the function. So for example, I have a chart with counts of constituents by state. I would like to populate (filter) a table based on when you click on a bar for a state without having to submit the page. I'm using dynamic actions and a built in javascript function in the SQL for the chart to accomplish this; but again, it works great when I use a varchar field like the FIPS code (i.e. the FIPS for Texas is '48'), but when I try to populate the page item using the state abbreviation 'TX' (again varchar) it fails.
    Here's an example of code that works:
    SELECT 'javascript:$s("P1_DEPTNO",'||d.deptno||')' LINK,
    d.dname LABEL,
    sum(e.SAL) sal
    FROM emp e, dept d
    where e.deptno = d.deptno
    group by 'javascript:$s("P1_DEPTNO",'||d.deptno||')', d.dname And here's an example of code that does not work:
    SELECT 'javascript:$s("P1_DEPTNO",'||d.loc||')' LINK,
    d.dname LABEL,
    sum(e.SAL) sal
    FROM emp e, dept d
    where e.deptno = d.deptno
    group by 'javascript:$s("P1_DEPTNO",'||d.loc||')', d.dname However, when I hard code a text value the script works:
    SELECT 'javascript:$s("P1_DEPTNO","BOSTON")' LINK,
    d.dname LABEL,
    sum(e.SAL) sal
    FROM emp e, dept d
    where e.deptno = d.deptno
    group by 'javascript:$s("P1_DEPTNO","BOSTON")', d.dname
    ORDER BY d.dname I'm encountering this problem on several versions of APEX: (4.0.2.00.07-local installation) and (4.1.0.00.28-apex.oracle.com)
    Does anybody know of this problem and how to solve it? I've looked for settings on the page item itself, and can't figure it out.
    I've re-written my sql to utilize the value fields of my tables instead but I have some objects on the page which are really going to depend on the character based data instead.
    Thanks,
    Wayne

    In your javascript you are generating, surround your value with double-quotes and it'll should then always work with both numbers and strings (your strings are probably being interpreted as variable names and they don't exist at runtime, hence erroring out).
    Example:
    SELECT 'javascript:$s("P1_DEPTNO","'||d.loc||'")' LINK,Edited by: gti_matt on Aug 16, 2011 9:50 AM

  • Submit page item using AJAX

    Hi All,
    Thanks for any help in advance.
    I am trying to submit an item into the session by using AJAX iin version 4.1
    I have a application process which is an on demand: run this application process when requested by a page process.
    begin
      :P4_FISCAL_YEAR2 := :AJAX_4_FISCAL_YEAR2;
    end;then in the item :P4_FISCAL_YEAR2 have the html form element attributes set to:
    (also the page item is set to None(Default) on page action when value changed.
    onchange="selectChanged6(this)"and a page process
    <script type="text/javascript">
    function selectChanged6(filter)
    var get = new htmldb_Get(null,$v('pFlowId'), 'APPLICATION_PROCESS=SET_4_FISCAL_YEAR2',0);
    get.add('AJAX_4_FISCAL_YEAR2', filter.value);
    var ret = get.get();
    </script>The item doesnt seem to be submitting into the session and I cant figure out why, Thanks

    Marie,
    I think I have acomplished what you are looking for but if your goal is quick response time then this can fluctuate since there is 1 ajax call made to set your item value and another ajax call for every chart you want to refresh.
    This solution assumes the following:
    1. all reports are in the same language and in english.
    2. all reports are flash charts.
    here is a demo: http://apex.oracle.com/pls/apex/f?p=43401:23:0
    Go into your chart template and add the class refreshable_chart
    <div class="rounded-corner-region refreshable_chart" id="#REGION_STATIC_ID#" #REGION_ATTRIBUTES#>
    ...Create the following dynamic action on your chart page:
    Name: refresh_chart
    Event: Change
    Selection Type: Item(s)
    Item(s): P4_FISCAL_YEAR2
    True actions:
    Sequence: 10
    Action: execute pl/sql code
    Code:
    NULL;
    {code}
    Page Items to Submit: P4_FISCAL_YEAR2
    Sequence: 20
    Action: Execute JavaScript code
    Affected Elements:
    -- Type: jQuery Selector
    -- jQuery Selector: .refreshable_chart
    Code:
    {code:javascript}
    this.affectedElements.each(function(){
      apex_RefreshFlashChart(&APP_PAGE_ID., this.id.substr(1), 'en');
    {code}
    Good Luck,
    Tyson Jouglet
    Edited by: Tyson Jouglet on Dec 14, 2011 10:33 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How do I remove the drop shadow from the value labes on my bar chart in Pages?

    How do I remove the drop shadow from the value labes on my bar chart in Pages?

    As far as I know, you must use brute force in the index.xml file describing the document.
    Search the descriptor of your values labels
    It starts with : <sf:SFCBarSeriesValueParagraphStyleProperty>
    and delete the three items describing the shadow.
    I highlighted it with red.
    Yvan KOENIG (VALLAURIS, France) vendredi 8 juillet 2011 19:08:31 iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Creating Chart Links Using Items and Labels.

    Hi Guys,
    I have created a chart with the following query:
    Series 1
    select null link, COUNTRY label, COUNT(UPGRADE_COMPLETED) "Upgrade Completed"
    from "IBHP_SCHEMA1"."APAC_IBHP_TRACKING"
    where REGION='ASEAN'
    AND UPGRADE_COMPLETED='Y'
    and account_classification <> 'Multiple Revenue'
    and account_classification <> 'Duplicate'
    and account_classification <> 'Partner'
    group by COUNTRY
    Series 2
    select null link, COUNTRY label, COUNT(UPGRADE_INPROCESS) "Upgrade In Process"
    from "IBHP_SCHEMA1"."APAC_IBHP_TRACKING" where REGION='ASEAN' AND UPGRADE_INPROCESS='Y'
    and account_classification <> 'Multiple Revenue'
    and account_classification <> 'Duplicate'
    and account_classification <> 'Partner'
    group by COUNTRY
    and two other series.
    Now when i click on teh values in chart, i want it to show in a report e.g. If total Upgrade complete for Philippines is 4. When i click the value of 4 it should show me 4 records for philippines.
    Help will be appreciated.

    Ok So here is the full detail:
    I have 1 bar chart with 4 series, codes are below. THis is one Page 4
    Series 1
    select null link, COUNTRY label, COUNT(UPGRADE_COMPLETED) "Upgrade Completed"
    from "IBHP_SCHEMA1"."APAC_IBHP_TRACKING"
    where REGION='ASEAN'
    AND UPGRADE_COMPLETED='Y'
    and account_classification <> 'Multiple Revenue'
    and account_classification <> 'Duplicate'
    and account_classification <> 'Partner'
    group by COUNTRY
    Series 2
    select null link, COUNTRY label, COUNT(UPGRADE_INPROCESS) "Upgrade In Process"
    from "IBHP_SCHEMA1"."APAC_IBHP_TRACKING" where REGION='ASEAN' AND UPGRADE_INPROCESS='Y'
    and account_classification <> 'Multiple Revenue'
    and account_classification <> 'Duplicate'
    and account_classification <> 'Partner'
    group by COUNTRY
    Series 3
    select null link, COUNTRY label, COUNT(UPGRADE_PLANNED_NYC) "Planned but not Committed"
    from "IBHP_SCHEMA1"."APAC_IBHP_TRACKING" where REGION='ASEAN' AND UPGRADE_PLANNED_NYC='Y'
    and account_classification <> 'Multiple Revenue'
    and account_classification <> 'Duplicate'
    and account_classification <> 'Partner'
    group by COUNTRY
    Series 4
    select null link, COUNTRY label, COUNT(UPGRADE_CANDIDATE_INYK) "Candidate Intention not Known"
    from "IBHP_SCHEMA1"."APAC_IBHP_TRACKING" where REGION='ASEAN' AND UPGRADE_CANDIDATE_INYK='Y'
    and account_classification <> 'Multiple Revenue'
    and account_classification <> 'Duplicate'
    and account_classification <> 'Partner'
    group by COUNTRY
    So the chart looks like a stacked bar chart, showing Each Series per 7 countries in the ASEAN region
    THEN- I have created another page where i have a report which is page 22
    The code for this report is:
    select     "APAC_IBHP_TRACKING"."COUNTRY" as "COUNTRY",
         "APAC_IBHP_TRACKING"."ACCOUNT_NAME" as "ACCOUNT_NAME",
         "APAC_IBHP_TRACKING"."REVENUE_BAND" as "REVENUE_BAND",
         "APAC_IBHP_TRACKING"."GCM_ACCOUNT_ID" as "GCM_ACCOUNT_ID",
         "APAC_IBHP_TRACKING"."REGION" as "REGION",
         "APAC_IBHP_TRACKING"."SALES_INDUSTRY" as "SALES_INDUSTRY",
         "APAC_IBHP_TRACKING"."NEW_IMPLEMENTATION" as "NEW_IMPLEMENTATION",
         "APAC_IBHP_TRACKING"."PRODUCT_VERSION1" as "PRODUCT_VERSION1",
         "APAC_IBHP_TRACKING"."PRODUCT_VERSION2" as "PRODUCT_VERSION2",
         "APAC_IBHP_TRACKING"."ACCOUNT_CLASSIFICATION" as "ACCOUNT_CLASSIFICATION",
         "APAC_IBHP_TRACKING"."UPGRADE_COMPLETED" as "UPGRADE_COMPLETED",
         "APAC_IBHP_TRACKING"."UPGRADE_INPROCESS" as "UPGRADE_INPROCESS",
         "APAC_IBHP_TRACKING"."GO_LIVE_DATE" as "GO_LIVE_DATE",
         "APAC_IBHP_TRACKING"."UPGRADE_PLANNED_NYC" as "UPGRADE_PLANNED_NYC",
         "APAC_IBHP_TRACKING"."UPGRADE_CANDIDATE_INYK" as "UPGRADE_CANDIDATE_INYK",
         "APAC_IBHP_TRACKING"."UPGRADE_TIMEFRAME" as "UPGRADE_TIMEFRAME",
         "APAC_IBHP_TRACKING"."NOTUPGRADING_OLDREALASE" as "NOTUPGRADING_OLDREALASE",
         "APAC_IBHP_TRACKING"."NOTUPGRADING_FUSION" as "NOTUPGRADING_FUSION",
         "APAC_IBHP_TRACKING"."NOTUPGRADING_MAYSWITCH" as "NOTUPGRADING_MAYSWITCH",
         "APAC_IBHP_TRACKING"."NOTUPGRADING_NODECISION" as "NOTUPGRADING_NODECISION",
         "APAC_IBHP_TRACKING"."NOTUPGRADE_NOTUSINGAPP" as "NOTUPGRADE_NOTUSINGAPP",
         "APAC_IBHP_TRACKING"."GLOBAL_CUSTOMER" as "GLOBAL_CUSTOMER",
         "APAC_IBHP_TRACKING"."COMMENTS" as "COMMENTS",
         "APAC_IBHP_TRACKING"."SALES_REP" as "SALES_REP",
         "APAC_IBHP_TRACKING"."CC_MANAGER" as "CC_MANAGER",
         "APAC_IBHP_TRACKING"."IMPLEMENTATION_PARTNER" as "IMPLEMENTATION_PARTNER",
         "APAC_IBHP_TRACKING"."OCS_CS_MANAGER" as "OCS_CS_MANAGER",
         "APAC_IBHP_TRACKING"."GCM_OPP_ID" as "GCM_OPP_ID",
         "APAC_IBHP_TRACKING"."REVENUE_APPS" as "REVENUE_APPS",
         "APAC_IBHP_TRACKING"."REVENUE_TECH" as "REVENUE_TECH",
         "APAC_IBHP_TRACKING"."REVENUE_SYS" as "REVENUE_SYS",
         "APAC_IBHP_TRACKING"."REVENUE_OFM" as "REVENUE_OFM",
         "APAC_IBHP_TRACKING"."REVENUE_OCS" as "REVENUE_OCS",
         "APAC_IBHP_TRACKING"."REVENUE_ACS" as "REVENUE_ACS",
         "APAC_IBHP_TRACKING"."TOTAL_REVENUE" as "TOTAL_REVENUE",
         "APAC_IBHP_TRACKING"."GCM_STATUS" as "GCM_STATUS",
         "APAC_IBHP_TRACKING"."CLOSE_DATE" as "CLOSE_DATE",
         "APAC_IBHP_TRACKING"."NEW_DEAL_ADDED" as "NEW_DEAL_ADDED",
         "APAC_IBHP_TRACKING"."REFERENCE_CUSTOMER" as "REFERENCE_CUSTOMER",
         "APAC_IBHP_TRACKING"."LOCAL_NAME" as "LOCAL_NAME"
    from     "APAC_IBHP_TRACKING" "APAC_IBHP_TRACKING"
    where "APAC_IBHP_TRACKING"."COUNTRY" = :P22_COUNTRY
    Within the same report i have created a Hidden page item information is below:
    Sourced Used- Always replacing any existing value in session state
    Source Type- Database Column
    Database Column Name- Country
    CHART SERIES AREA- So going back to page 4 and taking first series for example, i have the following action item:
    Action link- link to custom target
    Target- page in this application
    Page- 22
    Item 1- Country
    VALUE=#LABEL#

  • Report- Pl/sql function returning sql query parsing page items as text?

    Hi Team,
    I am facing a strange issue .
    I have four page items namely
    1)JOB_CODE
    2)MIN_EXP
    3) MAX_EXP
    4) SOURCES1
    I have a report of the type "Pl/sql function returning sql query"
    declare
    v_sql varchar2(4000);
    begin
    if (:JOB_CODE IS NOT NULL and :MIN_EXP IS NOT NULL and :MAX_EXP IS NOT NULL and :SOURCES1 IS NOT NULL) then
    v_sql:= 'select v_candidate_id, v_fname,v_current_employer,v_Experience_years from candidature where V_REQUIREMENT = :JOB_CODE and v_experience_years >= :MIN_EXP and v_experience_years <= :MAX_EXP and source like ' || '''' || '%'|| ':SOURCES1' || '%' || '''';
    elsif (:JOB_CODE IS NULL and :MIN_EXP IS NOT NULL and :MAX_EXP IS NOT NULL and :SOURCES1 IS NOT NULL) then
    v_sql := 'select v_candidate_id, v_fname,v_current_employer,v_Experience_years from candidature where v_experience_years >= :MIN_EXP and v_experience_years <= :MAX_EXP and source like ' || '''' || '%'|| ':SOURCES1' || '%' || '''';
    elsif (:MIN_EXP IS NULL and :JOB_CODE IS NOT NULL and :MAX_EXP IS NOT NULL and :SOURCES1 IS NOT NULL) then
    v_sql := 'select v_candidate_id, v_fname,v_current_employer,v_Experience_years from candidature where v_experience_years <= :MAX_EXP and V_REQUIREMENT = :JOB_CODE and source like ' || '''' || '%'|| ':SOURCES1' || '%' || '''';
    elsif (:MAX_EXP is null and :JOB_CODE IS NOT NULL and :MIN_EXP IS NOT NULL and :SOURCES1 IS NOT NULL) then
    v_sql := 'select v_candidate_id, v_fname,v_current_employer,v_Experience_years from candidature where V_REQUIREMENT = :JOB_CODE and v_experience_years >= :MIN_EXP and source like ' || '''' || '%'|| ':SOURCES1' || '%' || '''';
    end if;
    insert into query_list values (v_sql);
    insert into debug values (:JOB_CODE , :MIN_EXP , :MAX_EXP , :SOURCES1);
    return v_sql;
    end;
    Please not that I am insertin the query into a table called Query_list and the page item values into the table called Debug thru the pl/sql function which returns teh query.
    Now I select the data from the debug tables.
    select unique(query) from query_list;
    select v_candidate_id, v_fname,v_current_employer,v_Experience_years from candidature where V_REQUIREMENT = :JOB_CODE and v_experience_years >= :MIN_EXP and v_experience_years <= :MAX_EXP and source like '%:SOURCES1%'
    select * from debug;
    JOBCODE     MINEX     MAXEX     SOURCE
    21     1     10     donkeyHire
    And if I run the query in sql I get some records returned
    select v_candidate_id, v_fname,v_current_employer,v_Experience_years from candidature where V_REQUIREMENT = 21 and v_experience_years >= 1 and v_experience_years <= and source like 'donkeyHire'
    V_CANDIDATE_ID     V_FNAME     V_CURRENT_EMPLOYER     V_EXPERIENCE_YEARS
    2     Vengu     Andale Tech     4
    But the record does not show up in the report!
    does this type of report parse page items as text?
    Why is it so?
    Waiting for an early reply.
    Thanks,
    venkat

    Venkat - You don't want to put ':SOURCES1' in quotes like that.
    Scott

  • Text wrap on Master Page items

    RE:  InDesign CS2 on Windows Vista
    Hello,
    I inserted a graphic on both of my master pages and applied a text wrap to them.  However, on my document pages, my text does not wrap around the graphics.  (In the Text Frame Options dialog box, the "Ignore Text Wrap" box is not checked.)  I know I can either override my master page items (and insert the graphic again) or control-shift-click on the graphic and force the text to wrap around it.  But that puts another link to the graphic in my document...and I'm trying to minimize the file size.
    Do you have any ideas on how to make the text wrap on the master pages work on the document pages?

    Text wrap on masters is not honored on live pages in CS2. It was added as feature in CS3.
    Bob

  • Set page item from a stored procedure

    Dear reader
    We would like to have a stored procedure to run every 10 minutes. When the procedure starts, the user has to be warned that the update process is running.
    When the procedure is finished, the user should receive a message that the update process is finished.
    What I had in mind was to set a Page 0 item 'P0_REFRESH' and set his value depending on the status of the update. Then add a dynamic action with a change event. So everytime the value of this page item changes, the user will receive a correct message.
    Does anyone know if it is possible to set a page item from a stored procedure?
    Kind regards
    Xnni

    AndyPol
    I found a solution by querying the user_jobs table. In Apex, I created two page 0 items that hold the current status of the job (online, offline) and the old value of the job.
    Online of offline in the current status item is determined by a decode on "this_sec".
    The enext step was to include a html region in P0 that contains some javascript. This javascript will display a message when the values of the new status is different from the old status ;)
    Many thanks for bringing up the ideas.
    Greetz
    Xnni

  • Problem with dynamic change a page item value

    Hi,
    I'm trying to dynamically calculated the value of an item based on a simple formula that involves the multiplication of two elements from the same page.
    To do this, create dynamic action as follows:
    Event: Change
    Selection Type: Item(s)
    Item(s): P19_DURATION
    Action: Set value
    Fire on page load: TRUE
    Set Type: SQL Statement
    SQL Statement: SELECT :P19_DURATION * :P19_RATE FROM DUAL
    Page items to submit: P19_DURATION
    Selection Type: Item(s)
    Item(s): P19_AMOUNT
    When altering the P19_DURATION get no change in P19_AMOUNT
    Since my knowledge of javascript is almost zero, I'm trying to do this with pl / sql or sql. Try the dynamic action with a function or a PL / SQL statement and nothing works.
    Have to use javascript for this?
    Searching the forum I think it's something simple, but I did not find an example similar to what I need.
    Regards

    Event: Change
    Selection Type: Item(s)
    Item(s): P19_DURATION
    Action: Set value
    Fire on page load: TRUE
    Set Type: javascript
    javascript Code:
    amount = $v('P19_DURATION') *  $v('P19_RATE');
    $s('P19_AMOUNT',amount);

  • Chart and text items are not synchron

    hi all,
    i am a newbie in apex 4.0.
    i have two regions. the first shows a chart, based on pl/sql-code. second shows text items for possible filter an the current statement of the chart.
    when user clicks on a bar in the chart then
    1. i set the the first text item as filter,
    2. a pl/sql-code runs, build a sql statement, assign the sql statement string to the second text item and
    3. returns the statement for the chart.
    it works fine. the chart refresh. and the data i can see are correct.
    but the text items in the other region doesn't refresh.
    when i press "refresh"-button at browser level everything is fine. chart and text items fits together.
    what can I do to refresh all regions when the chart changes the sql-statment / User clicks?
    Is there any way to read out the current statement of a chart?
    thx in advance
    jogi
    Edited by: Jogi on 09.05.2011 12:31

    Bernd: the reason I asked about views is that you don't have any error messages. This might indicate that (a) you have no items in the view, or (b) there's something wrong with view-role-user assignment.
    To check for (a), please go to the published procurement catalog, and go to Views tab. Check that your View is Active. Click on your View ID link to display view details. You should see a list of characteristics assigned to your view in Assign Characteristics sub-tab (the list should not be blank!). Go to Assign Items sub-tab. Navigate in your schema to find items that are supposed to be assigned to your view. You should see "Yes" in the "Assigned" column for those products. If you don't, then you simply don't have any items in your view.
    Another thing I'd like you to check: when the user calls your procurement catalog for search, do you see the name of the catalog displayed just below the drop-down "Select Categories Hierarchically"?
    Cheers,
    Serguei

  • Discoverer Viewer Report with Page Items Slow Performance

    I created a report in Discoverer User that has page items and parameters and runs fine (under 3 minutes) in Discoverer User, but when I try and run it in Discoverer Viewer it takes a long time. It took over 70 minutes before manually terminating it. I made a copy of the report and removed the page items and tried to run it again in Discoverer Viewer and now the report runs in under 3 minutes. Any idea why a report with page items would run in Discoverer user fine, but not discoverer viewer?
    I am using Oracle Business Intelligence Plus 10g (10.1.2.55.26)

    As long as you can access the middle-tier server where Discoverer Viewer is running, you should be able to run and view Discoverer worksheets.
    While it is difficult to even start guessing what the problem might be, if the machine you installed Discoverer on has DHCP addressing, you will run into problems.
    Thanks
    Abhinav
    Oracle Business Intelligence Product Management
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN : http://www.oracle.com/technology/products/bi/
    Discoverer : http://www.oracle.com/technology/products/discoverer/
    BI Software : http://www.oracle.com/technology/software/products/ias/devuse.html
    Documentation: http://www.oracle.com/technology/documentation/appserver1012.html
    BI Samples : http://www.oracle.com/technology/products/bi/samples/
    Blog : http://oraclebi.blogspot.com/

  • Report row highlight based on a page item

    Is there a way to highlight a report row based on the value of a page item?
    In my case I have a report where the application user requests data in a detail report using a column link in the master report. This loads an id number from my report into a page item (say :P8_ID for example). If this item is null, I want the report rows to all render normally (nothing is selected or the detail report has been closed). If there is an id in that field then I want the row containing the information about that item to highlight (its column link has been clicked selected it to bring up a detail report).
    At first glance, this looks similar to Vikas solution (Change the Report row color when clicked but I am trying to make the connection between what has already been done and where I need to be.

    After looking back, I discovered my value was being set after the report rendered. When I re-organized my calculations and the rest, it worked.

  • IR Report based off of page item value

    Hey all,
    I want to create an IRR region and have the report update based off of a a page item.
    The page item will be a drop down of the tables I want to show, so something like:
    Select * from '||v('P1_TABLES')
    This will work with the normal report but not with the IRR. Is the syntax incorrect?
    Help is appreciated!
    Edited by: Ben C on Feb 23, 2012 6:42 AM

    Zooid,
    but always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always always
    use bind variables !!!!
    Regards,
    Richard
    blog: http://blog.warp11.nl
    twitter: @rhjmartens
    If this question is answered, please mark the thread as closed and assign points where earned..

Maybe you are looking for