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

Similar Messages

  • 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

  • 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/

  • 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.

  • Calendar itmes not showing end date in list view/when opened

    Hi,
    Got a client with a very strange issue with meetings.
    Few of the meetings are not showing end date after accepting those although he can see all meetings in calendar.
    I have already checked below on his machine
    switched the month view to ''low detail'' then back to "high detail"
    Show end date is visible in views
    Reseted view options to default
    Strange thing which I have noticed during troubleshooting is that issue is happening with Exchange cached mode only and not in Online view.
    Client is using Windows 7 Enterprise with office 2010 on his machine.
    I hope someone can help here. Let me know if any further infomation is required.
    Thanks

    Outlook 2010 would read the local data in local email profile and the view setting is also stored in local configuration when someone runs it in cached mode.(Email profile in online mode would read the data from Exchange store directly)
    At this point, I recommand that we create a new profile to check if we could see the end date in Outlook calendar view.
    http://support.microsoft.com/kb/829918/en-us
    Tony Chen
    TechNet Community Support

  • 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.

  • SharePoint 2010 Site Web Analytics - Top Pages report not showing complete data

    Hi,
    I have a custom page in a team site which takes list ID as an argument and shows the relevant data e.g.
    ../Dashboards/View%20Briefing.aspx?BriefingID=1078
    ../Dashboards/View%20Briefing.aspx?BriefingID=1079 etc
    When i look at the Top Pages report under Site Web Analytics all i can see is data for:
    /dashboards/view briefing.aspx
    I need stats for individual list items i.e. how many time BreifingID 1078 was viewed etc. Is it possible to achieve this using OOTB reports or can i write a custom report to achieve this? If yes then how...
    Any help would be appreciated.
    Regards,
    Kashif

    You’re dynamically filtering content on a single page with values on the query string. Your users are still only hitting one page (View%20Briefing.aspx). Analytics only sees that 'View%20Briefing.aspx' is being hit; it won’t record stats for what’s specified
    on the query string.
    I expect you could pull this data out of your IIS logs using log parser. Some links on this subject:
    http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?ID=85
    http://blogs.technet.com/b/corybu/archive/2008/02/26/sharepoint-iis-traffic-analysis.aspx
    http://social.technet.microsoft.com/wiki/contents/articles/16072.sharepoint-2010-create-analytic-reports-using-logparser-and-powershell.aspx
    http://blogs.msdn.com/b/carlosag/archive/2010/03/25/analyze-your-iis-log-files-favorite-log-parser-queries.aspx
    http://logparserplus.com/Examples

  • Report not picking correct data

    Is it possible for vendor aging report to dispaly for Particular Vendor the
    amount ( bsik-dmbtr ) using Purchase organization field.
    There are two Purchase Organizations C100 ( for CPU ) and D100 ( for Monitor ) in my case.
    data is picked from bsik , lfm1 ,lfa1 tables.
    Example : if D100 is for  Monitor-screen  and has amount 1000.
    c100 is for CPU  and has amount 2000.
    In that case report with Vendor , comp code, Pur. Orga and period should disply
    c100 amount 2000.
    D100 amount 1000.
    my report is showing that vendor is existing for C100 or D100.
    but for vendor that exist in both C100 and D100. ( Say vendor number 200 )
    the amount is coming for vendor number 200 in  c100 and d100    equal to   1000.
    but it should come c100 = 2000
    and for d100 = 1000.

    hi
    I am not sure about this point in vendor aging report. i have added a pur Organization field in this report.
    I am asking
    If vendor no 123 is in D100  and C100 ( D100 and C100 are Pur Organizations )
    Initially no transaction is there.
    Suppose vendor  no 123  created a Puchase Order of 500 /- using D100 Purchase Organization in duration 01.01.2008
    to 01.01.2009
    But vendor no 123 in Purchase Organization C100 has no transaction.
    Then 123 with D100 is sould show 500/-
    and 123 with C100 is 0 /-.
    output of this report should show above results ?
    If output is like this then how to rectify my report  ?
    Or it shoud show the result like this
    Then 123 with D100 is sould show 500/-
    and 123 with C100 is 500 /-
    My output is showing like above same
    Thanks

  • 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.

  • Crystal report not showing correctly in firefox after windows update

    From the past six months, crystal reports has been displayed without the print toolbar and the formatting is completely lost in firefox. Previously we found that when we uninstall the windows updates KB2836942, KB2836943, KB2836946, KB2836947, the problem is resolved. But with more and more windows updates that are automatically updated on the servers, it is getting practically impossible to track which windows update creates the problem. There is absolutely no issue in Chrome, IE and Opera; it is only with firefox that this problem occurs; so we feel it is more of a firefox issue than a windows update problem. It is not just in one machine, but we found the same issue at all our customer's servers (more than 10). The servers are a mix of windows 2008, windows 2012 with iis 7. We also observed the same problem on windows 7 machines. We have been recommending firefox as the best browser for our software to all our customers, and with this problem cropping up, we are badly handicapped. Kindly let us know how to sort this issue. We have provided the link below for your perusal. When you open it in chrome it works fine, but on firefox it does not display correctly:
    http://54.209.141.3/Reports/Report.aspx?reportname=RptProductWiseSalesDetails.rpt&paramlist=@FromDat,01/01/2011;@ToDat,01/26/2014;@BranchSlno,1;@FranchiseSlno,1;@FirstCol,B;@DateType,B;@SaleChannel,A;@ProductTypeSlno,0;@ProductSlno,6;@ColorSlno,0;@FinancierSlno,0;@ChannelTypeSlno,0;@ChannelSlno,0;@SalesPersonSlno,0;@SaleStatus,L;@BillingType,A;@LoginUser,admin;@LoginBranch,Keerthi%20Triumph%20Bangalore;@Franchise,Triumph;@AddCustomerDetail,0;@SaleCodeSuffix,&loadfromsql=0

    Those four updates all relate to the .Net framework, and involve how an ASP.Net application recognizes different browsers.
    * http://support.microsoft.com/kb/2836942
    * http://support.microsoft.com/kb/2836943
    * http://support.microsoft.com/kb/2836946
    * http://support.microsoft.com/kb/2836947
    Each contains this Note:
    <blockquote>There is a configuration switch to be used to revert back to the old behavior: <br>
    <pre>&lt;appSettings>
    &lt;add key="aspnet:UseLegacyBrowserCaps" value="true" />
    &lt;/appSettings></pre>
    </blockquote>
    I think the downside of turning off the changes is that IE 11 will not be well supported.
    That's all I know so far...

  • Purchase requisition report not showing any data R12.04

    when i run "Printed Requisitions Report". Report run without any information.
    EBS R12.04

    Please refer to Note: 472332.1 - R12: Printed Requisition Report Ends With "No Data Found"
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=472332.1

Maybe you are looking for

  • Can i use my apple ID on the US Store?

    I have an Apple ID and I download apps from the Lebanese store. Can I use this Apple ID and download apps from the US or France Store?

  • Need help with a mapping

    Hi, I have problems to create an update on the NULL values in a table with the mapping operators of the OWB mapping editor. The SQL syntax is the following: UPDATE T006_SITE SET T006A11FK_COUNTRYID = (select MAX(T002A01PK_COUNTRYID) from T002_COUNTRY

  • When I double click a CS3 Illustrator file in finder, it opens in preview, not in Illustrator CS4.

    When I double click a CS3 Illustrator file in finder, it opens in preview, not in Illustrator CS4. Is anyone having this same issue? Is there a quick and easy method to convert to CS4. I have 4000 ads, 3,000 are from freelancers that are CS3 or CS2.

  • Shared technologies install error with PSE9

    I'm having trouble installing PSE 9, it continues to fail the install at the Shared technologies install. I've already been through the other discusson threads on the forum to see if they could help with the install, so I've turned off AV and Firewal

  • Assorted frustrations with paths

    Please, if anyone has some suggestions, I'm about to throw my computer out the window.  Before we begin, I'm in CS2 (can't upgrade at the moment) 1.  Having great difficulty working with paths...particularly cutting and joining.  The cutting tool cur