Discoverer Viewer not showing correct data when scheduled

Hi All,
I have a bit of an ongoing issue and cannot find an answer through Oracle.
We have an issue that when a cross-tab workbook is run manually in Desktop this returns correct data, when scheduled in desktop it returns correct data in desktop, but when opening the scheduled workbook in viewer, incorrect and irrelevant data is returned
Here is a little information on the field that is not returning correct data;
The field is based on a calculation, the calculation (lets call BOB) contains PL/SQL function concatenated with an NVL calculation, this other calculation is a DECODE. I have been playing with changing the content of the BOB calculation, by removing the PL/SQL function and the DECODE calc from BOB and scheduling the report, the data is returned in viewer, in fact i've attempted one without the other and this still does not return the correct data.
This version of discoverer that is not returning data is V 10.1.2.50.05. I've tested this on a later environment with Discoverer V 10.1.55.26 and the data is returning correctly through the sceduled report in viewer.
My questions;
1. Has anyone ever come across something similar to this in version 10.1.2.50.05
2. Is there any detail available regarding what upgrading to 10.1.55.26 offers?
3. Know any workaround for using PL/SQL calculations in a scheduled workbook? I am aware that not aggregable items will not be returned in v11 when scheduling workbooks.
Many thanks in advance for any help.
Simon

Bumping this thread
Thanks
Si

Similar Messages

  • Siebel BIP report not show correct data when current view=my programs view

    Dear All,
    I have report that contain field approval,
    which is when i login as 'SASKIA' as example then i want to print report budget request,
    this report contain field approval like :
    Employee Login
    HOKIONO     
    BAMBANG
    PONGKY
    SASKIA
    but when i print the report it just show:
    Employee Login
    SASKIA
    and it happened only if i print report in 'MY Programs' view,
    the report show ok in 'All Programs' view.
    and when checked in siebel tools, IO Program Container(that used in report), the link already set to all.
    Please help me on this.
    Best regards
    Cecilia

    try adding a user property to your integration object:
    User Property Name: "ViewMode"
    User Property Value: "All"
    see if it has any effect - for me it solved some issues with data not being displayed!
    Benny

  • Fonts not showing correctly only when on my account page on app store

    fonts not showing correctly only when on my account page on app store

    Firstly, make sure that your device is not hidden (left hand pane). If it just reads device then toggle between SHOW and HIDE.
    Secondly, try all the other ports on your computer, even a number of times.
    Thirdly, if you have another computer try plugging your device into it without taking any action, give it a moment, remove it and try it back in your other computer again.
    Failing all that, see here - http://support.apple.com/kb/TS1538 for Windows and http://support.apple.com/kb/TS1591 for Macs
    And failing all that put the device into Recovery mode. See here and note the paragraph 'If you restore from a different computer.... ' down near the bottom of the page -
    http://www.apple.com/support/ipad/assistant/itunes/

  • Not showing correct output when parsing the date

    //WAP the gives the details of employees
    import java.io.*;
    import java.util.*;
    import java.text.Format;
    import java.text.DateFormat;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    class employee
      private String nm,curr_dt;
      private Date dob,doj;
      private int salary;
               employee()
                  nm="\0";
                  dob=null;
                  doj=null;
                  curr_dt=null;
                  salary=0;
               void getdata()throws IOException
                  String dt;
                  BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
                  //we can create date with these 3 type of objects
                  Format fm=new SimpleDateFormat("dd-mm-yyyy");
                  DateFormat df=new SimpleDateFormat("dd-mm-yyyy");
       //object of base class are type compatible with the object of derived class
                  SimpleDateFormat sdf=new SimpleDateFormat("dd-mm-yyyy");
                  System.out.print("\nEnter the name of Employee : ");
                  nm=br.readLine();
                  try{
                  System.out.print("\nEnter the date of birth of Employee : ");
                  dt=br.readLine();
                  dob=(Date)fm.parseObject(dt);
                  System.out.print("\nEnter the date of joining of Employee : ");
                  dt=br.readLine();
                  doj=df.parse(dt);
                  }catch(ParseException e){
                  Date d=new Date();
                  curr_dt=sdf.format(d);
                  System.out.print("\nEnter the salary of employee : ");
                  salary=Integer.parseInt(br.readLine());
               void putdata()
                  System.out.println("\n\n\nEmployee Name : "+nm);
                  System.out.println("\nDate of birth : "+dob);
                  System.out.println("\nDate of joining : "+doj);
                  System.out.println("\nCurrent date : "+curr_dt);
                  /*if((doj-curr_dt)>1)
                       salary+=3000;
                  System.out.println("\nSalary of Employee : "+salary);
    class emp
      public static void main(String str[])throws IOException
           employee emp[]=new employee[1];
           System.out.println("\nEnter the detail of employees \n\n");
           for(int i=0;i<1;i++)
                emp=new employee();
    emp[i].getdata();
    System.out.println("\n\nDetail of employees are\n\n");
    for(int i=0;i<1;i++)
    emp[i].putdata();
    }*Output:*
    Enter the detail of employees
    Enter the name of Employee : Rajendra Sharma
    Enter the date of birth of Employee : 10-10-1979
    Enter the date of joining of Employee : 05-09-2004
    Enter the salary of employee : 2000
    *it is not showing date in the "dd-mm-yyyy" format and not showing correct month as well*
    Detail of employees are
    Employee Name : Rajendra Sharma
    Date of birth : Wed Jan 10 00:10:00 IST 1979
    Date of joining : Mon Jan 05 00:09:00 IST 2004
    Current date : 17-08-2008
    Salary of Employee : 2000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi,
    Use below code that will help u to sort ur problem.
    import java.io.*;
    import java.util.*;
    import java.text.Format;
    import java.text.DateFormat;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    class employee
    private String nm,curr_dt;
    private Date dob,doj;
    private int salary;
    private String dobb,dojj;
    employee()
    nm="\0";
    dob=null;
    doj=null;
    curr_dt=null;
    salary=0;
    void getdata()throws IOException
    String dt;
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    //we can create date with these 3 type of objects
    DateFormat fm=new SimpleDateFormat("dd-mm-yyyy");
    DateFormat df=new SimpleDateFormat("dd-mm-yyyy");
    //object of base class are type compatible with the object of derived class
    SimpleDateFormat sdf=new SimpleDateFormat("dd-mm-yyyy");
    System.out.print("\nEnter the name of Employee : ");
    nm=br.readLine();
    try{
    System.out.print("\nEnter the date of birth of Employee : ");
    dt=br.readLine();
    dob=(Date)fm.parseObject(dt);
    dobb= fm.format(dob);
    System.out.print("\nEnter the date of joining of Employee : ");
    dt=br.readLine();
    doj=df.parse(dt);
    dojj = df.format(doj);
    }catch(ParseException e){
    Date d=new Date();
    curr_dt=sdf.format(d);
    System.out.print("\nEnter the salary of employee : ");
    salary=Integer.parseInt(br.readLine());
    void putdata()
    System.out.println("\n\n\nEmployee Name : "+nm);
    System.out.println("\nDate of birth : "+dobb);
    System.out.println("\nDate of joining : "+dojj);
    System.out.println("\nCurrent date : "+curr_dt);
    /*if((doj-curr_dt)>1)
    salary+=3000;
    System.out.println("\nSalary of Employee : "+salary);
    class emp
    public static void main(String str[])throws IOException
    employee emp[]=new employee[1];
    System.out.println("\nEnter the detail of employees \n\n");
    for(int i=0;i<1;i++)
    emp=new employee();
    emp[i].getdata();
    System.out.println("\n\nDetail of employees are\n\n");
    for(int i=0;i<1;i++)
    emp[i].putdata();
    thanks,
    prabhu selvakumar.

  • Discoverer Report opened from Portal does not show correct data

    Hi,
    When I try to open a Discoverer report from a portal that I created, it shows stale data but when I click on "Analyze", it shows all the data correctly.
    Does anyone know what the reason could be for this?
    Thank you,
    Santoshi

    I assume you used the Discoverer Portlet Provider. A discoverer portlet is never live data. When you define the portlet you specify how often to 'refresh' the data. If you skipped this step, then you just get the data as-of when you created the portlet.
    Generally you specify the refresh time to be sometime after your usual database load completes.

  • Export to PDF from Infoview does not show correct data - CRS 2008

    I have a problem where users attempt to export a report from the Infoview interface to a PDF.  The report shows correctly in Infoview while in Crystal Reports format, but when the use exports the data, the data changes and shows different values.  To troubleshoot, I have tried this on different clients - without a change in the result.  I have also pulled the latest instance of the report from this history on the Central Management Console.  Interestingly enough, the same thing happens when I export to a PDF from there as well.  Any insight or help would be greatly appreciated.  Thanks!

    Hello,
    I can't tell you offhand on what the issue is here, as various factors come into play.
    Here are a few troubleshooting steps you can try:
    - Try opening the report in Crystal Report designer and export to pdf from there. Does this work?
    - Instead of viewing the report and export; schedule a report to PDF and check the results.
    - there is currently a know issue in regards of certain formulas and using font type "arial Unicode MS" that gives incorrect export to pdf. Maybe alter the font used.. or see if you take out any questionable formulas and try again to export.
    Regards,
    Duncan

  • Not showing year data when we export into infoview

    Hi All,
    We had a issue with Crystal reports .We  created crystal report  through BW query .When we run in local machine it is working fine  . When we exported in the info view one of year column data is not showing  . What could be the reason behind on this ?
    Thanks
    Praveen

    Hi Praveen,
    It could be a problem with the patching on the XI3.1 server compared to the CR client machine. Have you checked that both client\server are patched to the same level?
    If CR is installed on the XI3.1 server can you test the report there, does it refresh ok?
    Have you checked that the latest SAP Transports have been imported into the BW system from the XI3.1 Service Pack\FixPack?
    If the problem is still persisting I would recommend that you log a message with SAP Support.
    I hope this is a very helpful answer to you.
    Kind regards,
    John

  • Captivate 5 quiz review not showing correct answers when loaded to LMS

    Hello All. I would really appreciate some help please. Despite the quiz review working correctly when published, i.e. both 'your answer' and 'the correct answer' captions appear in the review, on loading to LMS the review caption does not show the 'the correct answer is' , but instead 'you did not answer this question completely'.
    Any ideas why this should be the case? I've attached screen shots of my quiz preferences for completenes.
    Many thanks in advance.
    Janey

    Do the same modules evidence this behaviour when published and played outside the LMS, e.g. from a web server or on your hard drive?
    If not, it's possible that some setting in the LMS is over-riding what happens at playback.  You could try checking the box under LMS Customisation for Never Send Resume Data and see if that seems to make any difference.  If the LMS is maintaining a record of some previous attempt at the same module then turning off Resume Data might show that up.

  • LastDataRefresh(ROLLUPTIME)-does not show correct date for multiprovider

    Hi,
    The Last data refresh (Rolluptime) shows incorrect date for multiprovider and we use lot of multiproviders.
    Removing the last data refresh from the "Information" button of the Bex Web Analyzer which is using the "Information field web item",  shows an empty space and a colon ":" and an empty box.
    Please let me know if there is any other way to remove the last data fresh without showing the empty space.
    We are on SPS 7 and FEP 7. Is this problem still exist in SPS 8/FEP 8?
    Thankyou,
    -Sini
    Message was edited by: Sini Kumar

    Depends on your definition of correct. Your initial question was that this time does not display. This time should display. For a multprovider, it uses this formula
    first(last(<All InfoProviders under Multi - ROLLUPTIME>))
    It uses the earliest rollup time from the last rolluptime of all the base providers.

  • Links in Reports Not Showing Correct Data

    Good Afternoon!
    I've recently found that the links in some reports are not working as they should.  Below is an example from a report I just tried:
    Example
    I ran the report "Count of all instances of specific software registered with Add or Remove Programs" and selected a specific Collection I had created.  The report ran as it should and displayed a list of all software titles and versions for all of
    the collection's workstations combined.
    One application has 5 different versions installed amongst the collection and I need a list of them.  Each of the 5 versions was listed and each had a link.  When clicking on the link, though,
    it showed a list of "all systems" workstations which had the application / version - not just the number of or machines from the collection the report was run on.  Long story short, the report displayed about
    11 machines, but clicking on the link showed a list of about 40.
    I don't know if this is by design, but it's really difficult to work with.  I am having to make individual queries for the data which takes much longer.  Is there a resolution to this?
    Thank You!
    Ben K.

    Yes, I know this is an old post, I’m trying to clean them up, Did you figure this out, if so how?
    Yes this is be design however you can modify the "Computers with specific software registered in Add Remove Programs" report and have it filter on both the SW title and collection.
    http://www.enhansoft.com/

  • Query on multiprovider not showing correct data

    Hello Gurus,
    I have to display 3 keyfigures in my report.
    Each key fig comes from different data targets.So I have used a multiprovider for it.
    The key figs are namely
    1)Actual sales value 2)forecasted value and 3)Annual target and are in one structure .
    the first and second keyfigure shows data 0calmonth wise(when drill across) which is correct.
    The third key figure should be displayed only at the end .But right now the third key figure column is seen
    in each column when drill down monthwise.
    Is there any way bu which I can only show the values of 'Annual Target'at the end.
    Please suggest on this.

    Hi,
    You can try using Cell Definition in BEX, try to search on SDN and you will find the step by step instructions of doing the same.
    Regards,
    Arminder

  • Hard drive storage issue - "Other" and not showing correct data usage

    I'm currently using a MacBook Pro (Retina 15" Mid 14') which I purchased less than a month ago.
    Based on my "about this mac" storage summary, I'm using over 190GB, yet I can only account 67GB of usage. I've restarted and reindexed my spotlight search twice (once via terminal, next through system preferences).
    Where is all my disc space? What am I missing?

    You might run OmniDiskSweeper and Grand Perspective in Root.  This mat find the discrepancy.
    These are the commands that you will have to enter for each in Terminal
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    sudo /Applications/GrandPerspective.app/Contents/MacOS/GrandPerspective
    Naturally you will run one at a time, not simultaneously.
    Look at this as a guide:
    http://www.macobserver.com/tmo/article/how_to_recover_missing_hard_drive_space
    Note that when you enter your password, it will not be displayed.
    Before you start any thing, MAKE CERTAIN THAT YOUR DATA IS BACKED UP!
    Ciao.

  • Zen not showing correct album when correct one is on mp3 f

    I have come to notice that if you have two artists with the same exact album name, all those files will show the album art from the first atrist that comes alpahbetically. So if I have Artist A with album name Album and Artist B which also has the album name Album, when playing a song from Artists B from Album, it will display the album art from the Artist A Album. I hope I made that clear enough. Creative has to change the way the Zen handels album art because this is just not acceptable. I worked very hard to makre sure all my songs have the right album are and the right mp3 tags and then I go and am not able to appriciate my hard work. Does this happen to anyone else?

    dominican44 wrote:
    I have come to notice that if you have two artists with the same exact album name, all those files will show the album art from the first atrist that comes alpahbetically. So if I have Artist A with album name Album and Artist B which also has the album name Album, when playing a song from Artists B from Album, it will display the album art from the Artist A Album. I hope I made that clear enough. Creative has to change the way the Zen handels album art because this is just not acceptable. I worked very hard to makre sure all my songs have the right album are and the right mp3 tags and then I go and am not able to appriciate my hard work. Does this happen to anyone else?
    I cannot tell by your post. Did you embed each cover in the ID3 tag?

  • Table Refresh not showing correct data

    Hi ,
    Jdeveloper version 11.1.2.2.0
    I am facing issue regarding data refresh on table whenever value changes in LOV. Here goes the usecase :
    Please not I m not using ViewLink ( as some constraint in my project.. this is a sample to replicate )
    LOV to select department. - AutoSubmit ( true) . Value change listener code :
    +// Add event code here...+
    +setExpressionValue("#{bindings.DepartmentsEOView1.inputValue}",+
    +valueChangeEvent.getNewValue());+
    +OperationBinding operationBinding =+
    +findOperation("setBindVarForEmployeeVO");+
    +operationBinding.execute();+
    AMImpl method which takes the deptId and executes the Employee. ( This method is the default activity of the taskflow and called whenever the value selected in Department LOV changes)
    +public Integer setBindVarForEmployeeVO(){+
    +Integer deptIdVar = new Integer(-1);+
    +DepartmentsEOViewImpl deptVO = this.getDepartmentsEOView1();+
    +if(!deptVO.isExecuted()){+
    +deptVO.executeQuery();+
    +}+
    +if(deptVO.getCurrentRowIndex()==-1){+
    +deptIdVar = (Integer)deptVO.first().getAttribute("DepartmentId");+
    +}else{+
    +deptIdVar = (Integer)deptVO.getCurrentRow().getAttribute("DepartmentId");+
    +}+
    +this.getEmployeesEOView1().setDepartmentIdVar(deptIdVar);+
    +this.getEmployeesEOView1().executeQuery();+
    +System.out.println("Salary of emp "+ this.getEmployeesEOView1().first().getAttribute("Salary"));+
    +return deptIdVar;+
    +}+
    Editable Table displaying Employees for selected department ( I have a viewCriteria in-memory applied on my VO when exposed in AM ) . Partial Trigger points to LOV .
    I did following on page and not getting expected results :
    1. For Department 340, I changed the salary of the first employee shown from 25000 to 15000.
    2. Selected another department 10 in department LOV.
    3. Reselect the department 340, and ... what I see is salary is 15000. Even though we are re-executing the VO.
    How do i know it is refresh issue :
    In my am method I am printing the salary of the first employee for a department. ... it is getting printed 25000.
    Am i missing something ..
    Sample application ... http://dl.dropbox.com/u/70986236/Question%20Posted%20on%20OTN/TestViewCriteriaMode.zip
    Thanks,
    Rajdeep
    Edited by: Rajdeep on Aug 7, 2012 5:51 PM
    Edited by: Rajdeep on Aug 8, 2012 2:18 AM

    thats wht i am saying.. if you are using an inputText then the refreshed values will not be shown immediately.. it needs an externa laprtial refresh.. ok do one thing. change the salary value in the UI to outputText and see if the value is refreshing or not. if it refreshes then the issue is with the inputText refresh.. otherwise we have to investigate further.. by the way the app that you gave.. was giving some bc4j error.. for which i need time to investigate.. will look into it later..

  • Usage Tracking not showing correct data.

    We have configured usage tracking in our project.while creating a report with(Subject Area,Query,Request ) it shows the dashboard filter query of all subject area in a particular subject area.
    Eg : If Subjuct area SA1 has a dashboard prompt query "@@@@' ,and Subjuct area SA2 has dashboard prompt query "$$$$$' ,both the querys are shown in Subjuct area SA3 in the usage tracking reports.

    Hello,
    We implemented usage tracking too
    Make sure you are not running into the following BUG pre-10.1.3.4.1:
    BUG 7233756 - USAGE TRACKING DOESN'T CAPTURE AD-HOC REPORTS CORRECTLY
    We found this issue and verified it was resolved in 10.1.3.4.1.this problem is still there, and we are getting value of random subject are populated for drill down queries. is there any bug for this too?

Maybe you are looking for

  • Tiffen Dfx for Premiere CS5 or above?

    does anyone know if Tiffen have plug in for Premiere? i found something but not sure if it will work with Premierea CS5? any advice pls

  • Error- while assigng FF-Owners to FF-Id's in GRC-10 AC

    Hi Experts, Iam  facing  issue as below.. while configuring Super user assignment (while assigning owners to FF Ids) Please let me konow if nay one of you encountered same issue and how you resolved.. Error while processing your query What has happen

  • OBIEE 11.1.1.5 bp3 - You are not currently signed in to the Oracle BI Server

    hi all, I am constantly receiving below error obiee+win 2008R2 +SSO enabled You are not currently signed in to the oracle Bi server. If you have already singedin, connection might have timed out, or a communications or server error may have occured.

  • Problems with Grub, Dualbooting, and a software raid

    Been searching through google and any forums i could find regarding a possible fix and can not find anything that works. I have 2 Hard drives, First one is windows, second one is Archlinux.  They are setup through a software raid and i can not get gr

  • Very unresponsive UI on WSUS 3.0 server

    I have a Windows 2008 R2 server running WSUS 3.0 SP2 and I have noticed that the performance when trying to pull up reports is just incredibly painful and sometimes it can't pull up a report on a machine at all.  I ran the server cleanup and that rem