Chart not appearing in Interactive report

Hi,
I have a nice interactive report. When I try to display a chart using the tools of the report, nothing appears. There is only a message, a kind of progression message saying "loading xml..... 100%", and then nothing appears.
I am using Application Express 3.1.0.00.32.
Thank you for your answers.
Christian

Hi Dimitri,
Firs of all thank you for your patience. I do not oblige you to answer or whatever. it was kind of showing you the error.
There are date columns but they were not selected for the chart.
SELECT
     a."FICHE_ID" "N°",
     b."AGENT_ID" "AGENT_ID",
     b."NOM" || ' ' || b."PRENOM" "Agent",
     a."EQUIPE_ID" "EQUIPE_ID",
     c."LIBELLE" "Equipe",
     a."DATE_ACTIVITE" "Journée",
     a."TOTAL_HEURES",
     a."TOTAL_HEURES_EXCEPTIONNELLES" "H. excep.",
     a."FICHE_CREE_PAR" "Fiche créée par",
        a."DATE_CREATION" "Le"
FROM
     "OBSERVATOIRE"."FICHE" a,
     "OBSERVATOIRE"."AGENT" b,
     "OBSERVATOIRE"."EQUIPE" c
WHERE
     a.AGENT_ID = b.AGENT_ID
AND     a.EQUIPE_ID= c.EQUIPE_ID
AND     (a.total_heures IS NOT NULL
         OR a.total_heures_exceptionnelles IS NOT NULL)
group   by a."FICHE_ID" ,  b."AGENT_ID" ,
        b."NOM" || ' ' || b."PRENOM" ,
           a."EQUIPE_ID" ,
           c."LIBELLE" ,
           a."DATE_ACTIVITE" ,
     a."DATE_CREATION" ,
     a."FICHE_CREE_PAR",
     a."TOTAL_HEURES",
     a."TOTAL_HEURES_EXCEPTIONNELLES"
ORDER BY
     a."DATE_CREATION" DESCThank you
PS if you want we stay here, no problem I you do not want to go further with this thread.

Similar Messages

  • POP LOV in classic Report not in a interactive Report

    My oracle version Oracle Express Aplication 11g
    Dear Forum
    We need a CLASSIC report where i can define what information my report will show.
    For example:
    My Report contain
    ID NAME DATE
    In Drag and Drop layout I create two data pickers cause I need to choose information between Date_picker_1 and Datepicker_2. both of them correspond to DATE
    In my region source in classic report I write something like this:
    Select id, name where DATE between :Date_picker_1 and :Datepicker_2 then Ichoose the months but nothing happen.
    I know that in the report interactive you can do that, but my boss doesnt' like interactive report (I dont know why) so my problem is in the Classic report.
    Danny Lima
    Ecuador
    PD: I'm not speak english very well

    >
    Please update your forum profile with a real handle instead of "897381".
    Also the subject of this thread—POP LOV in classic Report not in a interactive Report—doesn't appear to be relevant the question asked. There's no mention of a Pop-up LOV here?
    My oracle version Oracle Express Aplication 11gAlways state full version numbers, and include
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    as well.
    We need a CLASSIC report where i can define what information my report will show.
    For example:
    My Report contain
    ID NAME DATE
    In Drag and Drop layout I create two data pickers cause I need to choose information between Date_picker_1 and Datepicker_2. both of them correspond to DATE
    In my region source in classic report I write something like this:
    Select id, name where DATE between :Date_picker_1 and :Datepicker_2then Ichoose the months but nothing happen.Always post code wrapped in <tt>\...\</tt> tags. And always post the actual code or a realistic reduced test case: that query is not valid SQL.
    I know that in the report interactive you can do that, but my boss doesnt' like interactive report (I dont know why) so my problem is in the Classic report.Nothing to do with the report type. It's because all APEX items are actually VARCHAR2s. For proper comparison semantics with NUMBERs or DATEs in SQL explicit conversion is required:
    select id, name
    from foo
    where bar between to_date(:date_picker_1, 'DD/MM/YYYY') and to_date(:date_picker_1, 'DD/MM/YYYY')Where 'DD/MM/YYYY' is the format mask used in the datepicker items.

  • Lead time values are not appearing in the report for current year.

    Hi friends,
    Iam checking a report in production.  where lead time values are displayed as 0 for 1 key figure lead time3 (w/0 dim) . i found there is a formula for this it shows like NODIM ( 'Lead Time 3' ).and there is a value for cal.lead time
    how can i get values in the report.
    Thanks ,
    VRV.

    Hi,
    Although your question is not clear, I understood that the formula built on that KF is NODIM. Basically it means, units of measurement is not considered when calculating.
    Eg: 5 Minutes + 5 Kilograms = 10
    You please try to analyze your KF by the above logic. Then you would be able to figure out why the data is not appearing in the report..
    Assign if helps...
    Regards,
    Suman

  • WHT amount not appearing in FBL1N report for Document type RE

    Dear Friends,
    While running FBL1N report for any vendor where TDS is applicable, the WHT amount is appearing for KR document type. But when it is RE document type the WHT amount is not appearing in the report. How can we resolve this? Any enhancement/any note to be applied?
    Regards,
    Ramkumar

    Hi,
    FBL1N is having the classic withholding tax field hence please don't refer the those fields.
    please don't refer those fields.
    Please review attached note 363309 for detailed explanation.
    BSEG-QBSHB is designed to fill for the classic withholding tax. And
    extended withholding tax information is stored exclusive in table
    WITH_ITEM.
    You can check in table BSEG for the fields and will find that system
    do NOT update field BSEG-QBSHB.
    In your line layout,you define a field BSEG-QBSHB. But actully the field
    of vendor/customer line item is filled with zero from FI. Thus,it shows
    zero in line item display.
    And as note 363309 says,
    "Remove the field which contains the withholding tax information
    from your display variant.
    If you want to display the withholding tax information, double-click on
    the document number and subsequently choose 'Withholding tax'."
    Regards
    Madhu M
    Edited by: M Madhu on Jan 18, 2012 9:13 AM

  • Regular Expression functions not supported in Interactive report filters ??

    I'm using APEX 4.0.2 and I'm trying to create a row filter in an interactive report which uses regexp_instr and regexp_replace functions and I'm getting the message:
    Invalid filter expression. regexp_instr
    The code runs fine in SQL Workshop
    select cytogenetics from z_patient
    where regexp_instr(regexp_replace(cytogenetics,'(\,+|\"+|\s)',''),'(^46XX$|^46XY$|^46XX\[..\]$|^46XY\[..\]$)')=1
    CYTOGENETICS
    "46,XX [20]"
    "46,XY[20]"
    "46,XX"
    "46,XY[20]"
    "46,XY[30]"
    "46,XY[26]"
    "46,XY [33]"
    "46,XX[32]
    etc...
    my filter is just the where clause above i.e.
    regexp_instr(regexp_replace(cytogenetics,'(\,+|\"+|\s)',''),'(^46XX$|^46XY$|^46XX\[..\]$|^46XY\[..\]$)')=1
    *Are regular expression functions just not supported in interactive report filters?*
    thanks in advance
    Paul P

    Hi Paul,
    regular expression functions are supported in interactive report filters, but it looks like that REGEXP_INSTR hasn't been added as valid command. Only REGEXP_SUBSTR and REGEXP_REPLACE are valid commands for computation expressions and REGEXP_SUBSTR, REGEXP_REPLACE and REGEXP_LIKE for row level filters.
    I have filed bug# 12926266 to fix this issue. Sorry for the inconvenience.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Controlling Chart Axis limits in Interactive Report

    I have set up a bar chart in an Interactive Report where the x-axis is supposed to be a percentage. Currently, the bar chart's x-axis goes out to 120. Is it possible to limit it to 100 without having to create a chart region?
    Thanks in advance!

    Hi Dimitri,
    Firs of all thank you for your patience. I do not oblige you to answer or whatever. it was kind of showing you the error.
    There are date columns but they were not selected for the chart.
    SELECT
         a."FICHE_ID" "N°",
         b."AGENT_ID" "AGENT_ID",
         b."NOM" || ' ' || b."PRENOM" "Agent",
         a."EQUIPE_ID" "EQUIPE_ID",
         c."LIBELLE" "Equipe",
         a."DATE_ACTIVITE" "Journée",
         a."TOTAL_HEURES",
         a."TOTAL_HEURES_EXCEPTIONNELLES" "H. excep.",
         a."FICHE_CREE_PAR" "Fiche créée par",
            a."DATE_CREATION" "Le"
    FROM
         "OBSERVATOIRE"."FICHE" a,
         "OBSERVATOIRE"."AGENT" b,
         "OBSERVATOIRE"."EQUIPE" c
    WHERE
         a.AGENT_ID = b.AGENT_ID
    AND     a.EQUIPE_ID= c.EQUIPE_ID
    AND     (a.total_heures IS NOT NULL
             OR a.total_heures_exceptionnelles IS NOT NULL)
    group   by a."FICHE_ID" ,  b."AGENT_ID" ,
            b."NOM" || ' ' || b."PRENOM" ,
               a."EQUIPE_ID" ,
               c."LIBELLE" ,
               a."DATE_ACTIVITE" ,
         a."DATE_CREATION" ,
         a."FICHE_CREE_PAR",
         a."TOTAL_HEURES",
         a."TOTAL_HEURES_EXCEPTIONNELLES"
    ORDER BY
         a."DATE_CREATION" DESCThank you
    PS if you want we stay here, no problem I you do not want to go further with this thread.

  • Charts not appear in Web Intelligence canvas view result

    Hi Experts,
    I have the next situation, when I use charts in my webi in view result this not appear but when I put the view structure or export my report the chart appear.
    I cant understand.  I have BOBJ XI 3.2 and I am using web intelligence rich client standalone for do some test.
    Thank you very much.
    Regards,
    Jeysi

    Can you let me know the Chart type and Objects you have for chart.
    In case of Measure objects, those are directly coming from back-end level or created at report level?? If at Report level give me the Formula of that.
    Thank You!!

  • Order plan cost not appearing in PS report.

    Dear PS friends,
    I have an issue in order plan cost updation ( budget report ).
    Used the prescribed WBS in maintenance order ( additional data ), but its not appearing in planned cost of CJ31 screen.
    Checked the following
    a)  WBS is account assignment element.
    b) Network type order appended indicator in OPSV.
    c) Setting in network type parameters for " determine plan  
        cost".
    d) WBS and order - both are showing plan cost when booked separately, but not integrated.
    Can anybody help me to resolve this ! 
    Thanks in advance
    --  Sri  --
    Edited by: Srinivasan Madaswamy on May 18, 2008 2:15 PM

    Hi,
    In case of the maintenance order (Order Category:30)
    Please check the follwoing in Tcode OPSV:
    1. type is maintained default i.e ++++ (this will consider all the order types mantioned for maintenance order.
    2. Please selelct the appropriate controlling area.
    3. Appended plan indicator has to be checked mark,
    4. Assigned funds in the plan indicator has to be checked mark,
    5. In Tcode IW32: In the additional data Tab assign the WBS Element. Save the maintenance order.
    Hope its useful.
    Reward point if useful. Revert abck if any other issue.
    Thanks..

  • Web client and desktop client not available for Interactive reporting 11.1.2.2

    Hi team,
    Currnetly we are usning EPM 11.1.2.2 , we are trying to install and configure
    Interactive reporting in Linux 64 bit system.
    we are few questions jotted below:
    Interactive reporting studio client & Interactive reporting Dashboard Development Studio client are disabled.
    post installation we are not able to see IR Client folder in <EPM HOME> location.
    while launching workspace we are not able to see the WEB Client Interactive reporting under TOOLS-->INSTALL.
    we read in a blog, which states it  Interactive reporting needs a license. whether it needs any special License for using it?
    we downloaded the Entire Dump of EPMS 11.1.2.2  from Oracle Edelivery website.
    Kindly let us know we are missing any where?
    we are strucked at this point.
    Regards
    Chinu

    If you want the 11.1.2.0 assemblies you will need to contact Oracle as they have been removed from edelivery.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Order by not working on Interactive Report

    I have created an Interactive Report. My select statement contains an ORDER BY. When the report displays it is not in the correct order. How can I control the display order of an Interactive Report?

    hi Alfred,
    Where can I define the sorting order ? I would like the first call of the report already have a sort.
    I know the user can customize the sorting in the report but not at the first call!
    I hope it is understandable ;-)i think when the page upload u want to sort the report.
    then
    in report attributes>column attributes >edit the each column>column definition>remove the tick on sort all >apply changes and give order by i n your query
    Regads
    pavan

  • Tabular form validation(Checkbox) is not working for Interactive report

    Hi,
    I am using the oracle apex 4.0 and oracle 11g.
    I have written a below select query on interactive report as
    select
    apex_item.checkbox(1,RESIDD)||apex_item.hidden(2,RESIDD) row_selector,
    apex_item.text(3,RESNUM) as resnum
    from "PDRRES"
    and written the validation to display the error message( Function returning error text ) as
    DECLARE
    vRow BINARY_INTEGER;
    BEGIN
    -- apex_application.g_print_success_message := NULL;
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
    vRow := apex_application.g_f01(i);
    apex_application.g_print_success_message := apex_application.g_f01(i)||'-'|| apex_application.g_f03(vRow) ;
    END LOOP;
    END;
    Output : No data found error message
    As far as it work for sql report with above logic because apex built in row selector
    but it fails in case of interactive report for some reason.
    Please suggest.

    Saroj Nayak wrote:
    Hi,
    I am using the oracle apex 4.0 and oracle 11g.
    I have written a below select query on interactive report as
    select
    apex_item.checkbox(1,RESIDD)||apex_item.hidden(2,RESIDD) row_selector,
    apex_item.text(3,RESNUM) as resnum
    from "PDRRES"
    and written the validation to display the error message( Function returning error text ) as
    DECLARE
    vRow BINARY_INTEGER;
    BEGIN
    -- apex_application.g_print_success_message := NULL;
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
    vRow := apex_application.g_f01(i);
    apex_application.g_print_success_message := apex_application.g_f01(i)||'-'|| apex_application.g_f03(vRow) ;
    END LOOP;
    END;
    Output : No data found error message
    As far as it work for sql report with above logic because apex built in row selector
    but it fails in case of interactive report for some reason.
    Please suggest.NO DATA FOUND usually occurs when an i mplicit select does not find anything. It can also occur when referencing a collection element that has not been defined.
    You have 2 collectinons in the code you posted, apex_application.g_f01() and apex_applciation.g_f03. Since you are looping therough the COUNT attribute of g_f01 its reference ("I") is probably okay and the value store in vRow is probably not right. You can check this by using RAISE_APPLICTION_ERROR to see the value something like
    raise_application_error(-20000,'vRow="'||vRo2||'"');Remember that working with checkboxes is tricky. If the box is not checked nothing will be sent. You may need to define a default value when no value is submitted.

  • Multiple event not working in interactive report

    Hi Experts,
    I am developing a interactive report used Set-PFstatus '100' , AT user-command and At line-selection in a single program.
    Here At line-selection is not working but at user-command is working fine.
    After commenting set-PF ststus '100' event at line selection is working.
    Ii want at to use at-user command and at line-selection both to work with set pf-status.
    Please help me out.

    Hi,
    You can use these events together but in case while
    creating your GUI status for your program you have
    to give Function Code 'PICK' with F2 short cut key
    because for at line selectino double click 'PICK' function
    code is trigerred.
    hope it helps,
    Regards
    Mansi

  • GL not appearing in PCA report S_ALR_87013336

    Dear Experts,
    For acct XXXX, there's balance & we can view line item thru FI (tcode: FBL4N). We can see PC been assigned to those line items, but the GL XXXX not reflecting in PCA report (tcode S_ALR_87013336).
    GL XXXX is a Balance Sheet GL (not a Reconciliation GL). This GL is not added to 3KEH. There are other GLs too, which are not added to 3KEH, but still those are appearing in PCA report S_ALR)87013336.
    If you can please advice about this discrepancy.
    Regards,
    Hussein.
    Edited by: Hussein  Merchant on Apr 18, 2011 5:05 PM

    After adding 'trip type expenses in the layout' in the layout, save the layout as a variant and give it a name.
    Next time when you run the report, put that variant and then run
    Values will come

  • 'gReport' is null or not an object - Interactive Report

    I'm getting a "'gReport' is null or not an object" error when attempting to use the Search bar in an Interactive Report. Based on googling and searching this forum, it seems likely that the Javascript on the page is interferring w/ the Interactive report somehow. I don't know enough about APEX and Javascript (I snagged the code from another application, and made some changes) to debug it, so I was hoping you guys could help.
    Here's the Javascript on my page:
    Header Text:
    <script language="javascript">
        function OnPageLoad() {
            var cmdButton;
            cmdButton = document.getElementById('CMD_P10_BASEPRODUCT');
            cmdButton.onclick = null;
            cmdButton.attachEvent("onclick", cmdSelectBaseproduct_onClick);
            cmdButton = document.getElementById('CMD_P10_CUSTOMER');
            cmdButton.onclick = null;
            cmdButton.attachEvent("onclick", cmdSelectCustomer_onClick);
            cmdButton = document.getElementById('CMD_P10_PRODUCT');
            cmdButton.onclick = null;
            cmdButton.attachEvent("onclick", cmdSelectProducts_onClick);
            cmdButton = document.getElementById('CMD_P10_VERSION');
            cmdButton.onclick = null;
            cmdButton.attachEvent("onclick", cmdSelectVersion_onClick);
            cmdButton = document.getElementById('CMD_P10_RUNREPORT');
            DisableItems();
        function cmdSelectBaseproduct_onClick() {
            PopupCriteriaListButton1_onClick('H_P10_BASEPRODIDLIST', 'TXT_P10_BASEPRODUCT', 26, 350, 300);
            DisableItems();
            GetPageURL();
        function cmdSelectProducts_onClick() {
            PopupCriteriaListButton3_onClick('H_P10_PRODUCTIDLIST', 'TXT_P10_PRODUCT', 22, 1350, 575);
            DisableItems();
        function cmdSelectVersion_onClick() {
            PopupCriteriaListButton4_onClick('H_P10_VERSIONIDLIST', 'TXT_P10_VERSION', 21, 1550, 575);
            DisableItems();
        function cmdSelectCustomer_onClick() {
            PopupCriteriaListButton3_onClick('H_P10_CUSTOMERIDLIST', 'TXT_P10_CUSTOMER', 14, 1350, 575);
            DisableItems();
        function PopupCriteriaListButton1_onClick(hiddenInputControlName, strTextControlName, intPopupPageID,
    intWidth, intHeight) {
            var strIDList = document.getElementById(hiddenInputControlName).value.replace(new RegExp(/,/g),
    "_") + ',' + document.getElementById('CBO_P10_PRODUCTLINE').value;
            var itemVal = document.getElementById('CBO_P10_PRODUCTLINE').value;
            var returnValue = OpenDialog(intPopupPageID, true, intWidth, intHeight, 'H_P' + intPopupPageID +
    '_IDLIST,CBO_P10_PRODUCTLINE', strIDList);
            if (returnValue != undefined && returnValue != null && returnValue.length > 0) {
                document.getElementById(hiddenInputControlName).value = returnValue.split('|')[0];
                document.getElementById(strTextControlName).value = returnValue.split('|')[1];
        function PopupCriteriaListButton3_onClick(hiddenInputControlName, strTextControlName, intPopupPageID,
    intWidth, intHeight) {
            var strIDList = document.getElementById(hiddenInputControlName).value.replace(new RegExp(/,/g),
    "_") + ',' + document.getElementById('H_P10_BASEPRODIDLIST').value;
            var returnValue = OpenDialog(intPopupPageID, true, intWidth, intHeight, 'H_P' + intPopupPageID +
    '_IDLIST,H_P10_BASEPRODIDLIST', strIDList);
            if (returnValue != undefined && returnValue != null && returnValue.length > 0) {
                document.getElementById(hiddenInputControlName).value = returnValue.split('|')[0];
                document.getElementById(strTextControlName).value = returnValue.split('|')[1];
    function PopupCriteriaListButton4_onClick(hiddenInputControlName, strTextControlName, intPopupPageID,
    intWidth, intHeight) {
            var strIDList = document.getElementById(hiddenInputControlName).value.replace(new RegExp(/,/g),
    "_") + ',' + document.getElementById('H_P10_PRODUCTIDLIST').value;
            var returnValue = OpenDialog(intPopupPageID, true, intWidth, intHeight, 'H_P' + intPopupPageID +
    '_IDLIST,H_P10_PRODUCTIDLIST', strIDList);
            if (returnValue != undefined && returnValue != null && returnValue.length > 0) {
                document.getElementById(hiddenInputControlName).value = returnValue.split('|')[0];
                document.getElementById(strTextControlName).value = returnValue.split('|')[1];
    </script>
    Page HTML Body Attribute:
    onload="OnPageLoad();"

    Hi Jari,
    The below function used work perfectly in APEX 3.2 for
    Pulling Page2 IR Report into Page1 Region having
    but in APEX 4.0, I am getting "gReport is undefined" when I click on IR Toolbar/Control panel like Action or Go
    function periodRep(){
    $.ajax({
    type: "POST",
    url: "wwv_flow.show",
    data: {
    p_flow_id : $v('pFlowId'),
    p_instance : $v('pInstance'),
    p_flow_step_id : "2",
    p_request : ""
    dataType : "html",
    success : function(data){
    var startTag = '<apex2ajax>';
    var endTag = '</apex2ajax>';
    var start = data.indexOf(startTag);
    if (start > 0) {
    data = data.substring(start+startTag.length);
    var end = data.indexOf(endTag);
    data = data.substring(0,end);
    $("div#XXHOLDER").html(data);
    $x_Value('pFlowStepId', "2");
    if($('#apexir_CONTROL_PANEL_COMPLETE').length > 0){
    if(!($('#apexir_CONTROL_PANEL_COMPLETE').css('display') == 'none')){
    gReport = new apex.worksheet.ws('');
    gReport.toggle_controls($x('apexir_CONTROL_PANEL_CONTROL'));
    }); //ajax
    }//periodRep
    Please help
    Thanks
    -Senthil K

  • Substitution string not working in interactive report

    Hi all,
    I am using a substitution string in the no data found message of the interactive report. But instead of the actual message, &my_message. is displayed when there is no data found. I noticed that this problem is also occuring when a substitution string is used in the column headers of the interactive report. In the non-interactive report it is working as it should. Am I doing something wrong or is it a bug?
    Hope anybody can help me. Also when you have a workaround for my problem.
    Many thanks in advance!
    Jacob
    Message was edited by:
    Jacob_B

    Jacob,
    Thanks for reporting that, it does appear to be a bug. I've logged it and we'll look at including a fix in a future release.
    Thanks,
    Marco

Maybe you are looking for

  • I can't get iTunes to work on Apple TV

    Since Tuesday I keep getting the message that iTunes is down or unable to connect.  However I was able to rent a movie from my mac and I've been trying to somehow play it on apple TV or my iPhone and is not working.  HELP please!

  • G5 as a Server for Online Gaming?

    I am curious as to if a G5 can be used for a Server for Online Gaming prior to my going out and purchasing one. I am new to Apple computers and would like to know if i bought the Full Upgraded version.. would the game work and be able to handle the a

  • Can I create a pdf with clickable links which open new pdfs?

    Hi, My client now wants me to create pdf with links to open new pdfs (in an offline mode). He wants to put all the content onto memory sticks to hand out at a conference. I have suggested the alternative of links which redirect to other pages within

  • DLSw - Backup Delay

    I have DLSw redundancy configured. My circuits often drop from the primary dlsw peer and connect to the backup. I assume it's missing a certain number of responses back from the primary peer. Is there a way to change the timers and cause the router t

  • Error code 13019 after upgrade

    Updated to 3 on my 3G and phone no longer had ipod tunes available. Put it in to resync and it took forever to back up, then, eventually it crapped out with an error code 13019. Checked these posts and tried the suggestion of unchecking all syncs; sy