Wrong data when i create a report on infoset in BI 7.0

Customer No has the master data(C100,C200,C300,C400) and C300 and C400 are not performed any transaction in the cube.
Created a infoset with left outer join on infoobject (Customer No) and the Infocube(which has the transactions done by the Customer)
i kept the Customer No in the rows and the Netsales in the column of the report in BI 7.0 query desiner and when i run the query i got the result as C100 and C200 only  not C100,C200,C300,C400
But the result should show C100,C200,C300 And C400
Please clarify me what could be the problem ?

Did you select Customer from the cube or the Infoobject for Infoset?

Similar Messages

  • Report returns wrong data when run on server

    Hi,
    I'm runing CRS XI R2 on Windows Server 2003 SP2.  When I refresh a report in the Crystal Reports XI Designer, I'm getting correct data.  But when I schedule the report to run on the server it returns wrong data.  The data is different from what I see when I refresh it from the designer.  In the report I have running totals set up to count customers that meet a certain criteria.  The report is very large.  It take almost 2 hours to refresh.
    I was wondering what is causing the difference in running total data between refreshing it on the designer and running it on the server.  Is it returning wrong data b/c of it not reading all the records?  Should I be making any changes to the server settings?  I saw that under pageserver, there are options for  setting the 'Minutes Before an Idle Report Job is Closed' and 'Database Records To Read When Previewing Or Refreshing a Report".  Do either of those have anything to do with the report returning incorrect data when being scheduled to run on the server?
    Thanks,
    Kim

    Hi Xuandao,
    You would need to Use Cell Binding and Trigger concept to accomplish this.
    Its simple, however, you would have to work on a trial and error basis to understand this concept as implementing the same is subject to your dashboard and WEBI Design.
    Open you LiveOffice.
    Insert your WEBI, Now, go to Object Properties of your WEBI, select the second tab that says Prompt, Here, it lists the prompts that you have for your WEBI. This would also enlist your BEx variables as well. Select this BEx variable and click on the button that says Prompt at the bottom of this window. Here, select choose Excel Data Range and click on the cell select button on the right (small button that lets you choose what cell you want to bind this prompt to), Now select a free cell that would not be even populated later on when you run the dashboard say A1 (remember the value that you select). Click on OK and again OK. The WEBI Refreshes and you can see all the prompt values at the cell A1. These are all the possible values stored for your BEx prompt variables (these values are fetched from BW system dynamically).
    Now, save this LiveOffice, Go to you dashboard. Connect your dashboard to your Live office. Go to Data-> connections-> Now, select the WEBI and in the right hand pane  go to Usage tab, here, Click on Trigger cell button on the right hand side and select A1 in you LiveOffice.
    It should work fine.
    Let me know.
    Rgds,
    Sreekul Nair

  • Photos on my Mac show the wrong date when imported from a portable Hard Drive

    I’ve got loads of photos that I had imported from my old PC.Last night I decided to start going through them and trying to get them sorted  
    prior to importing into iphoto. I discovered that some of the pictures (in particular ones I have taken from my old Iphone) all had the same date and time
    assigned to them. When I checked the Exif details, it listed the correct camera etc, but the date created seems to have changed to the date I copied them to my portable hard drive.  
    I thought this was strange as when they were on my PC I thought they were correct. I booted my PC up and checked the portable hard drive on Windows. When viewed on my PC the pictures all have the correct time and date assigned to them. However when I plug the same portable hard drive into my Mac the same files show up as being created on a more recent date (say 20th Jan 2013).
    I’ve done a lot of research last night, although I can find no forum with this exact problem, I feel it must have something to do with compatibility. The portable hard drive is FAT32, and I am assuming that in order to ensure all of the photos information is transferred correctly in needs to be NTFS.
    The problem I have is how do I transfer my files again from my PC to an NTFS drive, whilst keeping all of the correct date and time information assigned to the photos. My understanding is that the 2 aren’t compatible.
    Has anyone ever had this problem? It mainly seems to be with photos I have extracted from my Iphone or edited in some form by rotating them.
    I have a 13" Macbook Pro Retina with OSX Mavericks installed.

    What you may want to do is archive as a Zipfile the photos and then transfer them to the Mac.     It is possible some of the metadata is being lost on the FAT32 formatting.    USB Flashdrive might work better than a FAT32 formatted hard drive, as I do know that most USB Flashdrives are formatted about the same as SD media cards, which manage to preserve the data when copied from camera to Mac.    My big question is, do you still have the photos on media cards?  You might just want to get a media card reader on your Mac, if the photos are not on SD cards, and transfer them over with the media card reader.
    I do believe Retina MacBook Pros all have SD card readers built-in.
    Note: I've asked this be moved to the MacBook Pro forum.  MacBook without the secondary name refers to the consumer notebook Apple stopped making in 2011.

  • Is it possible to use an XML Data Template to create a report in APEX?

    Hi,
    I have created an XML Data Template in BI Publisher passing one parameter and running two queries, then created an RTF Document Template to present the data.
    I can create a nice report in BI Publisher using the two elements. I have used RTF Document Templates to publish reports in APEX but the data comes from a Report region running a single query.
    I would like to run a report based in this kind of XML Data Template, in order to use several children queries related to a parent query. Is it possible to do it in APEX, or you have to use BI Publisher?
    Francisco
    ===========================
    Below is a simple data template definition:
    <dataTemplate name="cotizacion_template" description="Prueba de data template para cotizaciones" dataSourceRef="dbxprts">
         <parameters>
              <parameter name="p_id_cotizacion" dataType="character" defaultValue="1009" include_in_output="true"/>
         </parameters>
         <dataQuery>
              <sqlStatement name="header_query">
                   <![CDATA[select id_cotizacion, fecha_cotizacion, id_clipro from f_cotizaciones where id_cotizacion = :p_id_cotizacion]]>
              </sqlStatement>
              <sqlStatement name="detail_query">
                   <![CDATA[select id_cotizacion as id_cot_child, id_detalle_cotizacion, partida, cantidad, id_producto from f_detalle_cotizaciones where id_cotizacion = :id_cotizacion]]>
              </sqlStatement>
         </dataQuery>
         <dataStructure>
              <group name="F_COTIZACIONES" source="header_query">
                   <element name="ID_COTIZACION" value="ID_COTIZACION"/>
                   <element name="ID_CLIPRO" value="ID_CLIPRO"/>
                   <element name="SUMA_CANTIDAD" value="F_DETALLE_COTIZACIONES.CANTIDAD" function="SUM()"/>
                   <group name="F_DETALLE_COTIZACIONES" source="detail_query">
                        <element name="PARTIDA" value="PARTIDA"/>
                        <element name="CANTIDAD" value="CANTIDAD"/>
                        <element name="ID_PRODUCTO" value="ID_PRODUCTO"/>
                   </group>
              </group>
         </dataStructure>
    </dataTemplate>

    Hi,
    I have the similar question. I used data templates in BI Publisher but now I want to use the same data template in Apex to print some reports.
    I tried to some examples but these were only using report queries. I also tried with the Web Service but this didn't work for me either maybe because I didn't
    used it in the right way. When I used the WS I received the binary of the report so the WS worked it was just the how and where to use it that didn't work for me.
    Now this older entry is BUMPED maybe we find a solution for our problem this way.
    regards,
    Steven

  • I think I have two Apple IDs but must have typed in the wrong birthdate when I created my main one, because I can't recover it, but need to.

    I have read all the Apple ID support notes, but cannot find how to recover my account in my case.  I mistakenly thought I should change my AppleID to my new email, and when I tried to do that, I lost the thread.  I recieved a verification email sent to my new email (so it must have added ok) but when I go to change my password, I never get that confirmation email.  So when I try to access the account by answering security questions, I must have typed in the wrong birthdate way back when, and I can't get past that screen.  What now?  I seem to be able to access an AppleID that does not include any of the games I've purchased over the years, so it must be a newer one I inadertently set up.  Thus, I haven't been able to access my main working account for awhile now, and I really want to buy some things and have them on my iPad & new iPhone.  How do I get access to my old account with all my past purchases in it?

    I too added 2nd apple ID when I tried to get Free app from apple store just to get to NONE on the credit card needed. It said it sent confirmation email to my new apple ID email that I have to confirm. Problem is I can not get to the new apple ID email account.  On my ipad it logs into my original email account and I see no where to log into another email account.  If I go to my laptop, the new apple ID I created does not let me log into email where apple said it was sent to.  It did not send to back up email account either.
    Can I log into 2 email accounts on my ipad where it says mail at bottom?
    Can I have 2 apple ids?
    If I created a 2nd apple id to get to NONE on credit card needed, can't I log into it also on another laptop in gmail?
    (won't let me)
    If I used my original apple id I created when I got my new ipad, it will not let me get free app without credit card, there is no where it says NONE needed. I am too new to apple to start with credit cards etc until I get use to it.

  • Why does the Photos app not put photos in order of date when you create albums?

    I have a lot of photos taken on holiday in Iceland and wanted to create an album of just the best ones to show friends. When you look through the whole lot in 'Collections' they are in date order, but in the 'Album' they are jumbled up. Anyone know how to reset them into order? I know you can move them around by 1. holding it till it wobbles then 2. moving to another place in the sequence ... but this is both impractical and horribly complex when dealing with a large number of photos. There should be a 'sort' feature that allows different options within albums, As an IT professional since 1967 (yes there were computers then ;-) it just seems odd that such a basic feature is missing. Come on Apple, get your act together!

    Bug in iPhoto '11. Apple just released iPhoto 9.1.3 designed to fix this.

  • Error in Planned GI Date when delivery created from APO TP/VS

    Hi All,
    The problem being faced here is that the Planned GI date & Planned pick up date in delivery is changing to the date on which the shipment ends, when generated through 'OLTP Generation of Deliveries'.
    I will explain the problem more in details
    I created the Sales order for a customer today i.e. on 21/11/07. The system calculated the MAD & RDD correctly in Sales Order. Shipment formed against this Sales order in TP/VS. TP/VS suggested correct shipment activities such as Goods Issue, Loading & Shipment end considering transit Time of 24 Hrs. I then
    generated deliveries through 'OLTP Generation of Deliveries' & delivery also got created successfully in R/3. However the Planned GI date in the delivery is shifted by one day & falling on next day i.e. on 22/11/07 (the date on which the shipment is completing). Also the material availability date also gets shifted accordingly.
    This is not matching with TP/VS results where the Goods Issue as per TP/VS is 21/11/07. Hence the Planned GI date in delivery should be 21/11/07 & not 22/11/07.
    I have checked the Time Zone consistency in APO & R/3 & both match with each other.
    For your information the system used are SCM 4.1 SP10 & ECC 5.0
    Can any one suggest how to resolve this issue ?
    Thanks
    V Vasudevan

    I hope by this time you must have resolve this issue or your query. If possible, Please share your observations

  • Wrong data when consuming web service via ABAP

    Dear all,
    we tried to consume a web service via ABAP and used one of the various existing how-to papers from the internet in order to develop everything.
    The development was not that difficult, but when we now execute our ABAP, we noticed that
    - the first 100 returned rows from the webservice are completely correct
    - then we receive 10-15 completely incorrect rows (empty fields, redundant lines, etc.)
    - the rest of the data (60 records) is correct again
    As we nearly all objects have been generated automatically via SE80, I do not really know where this problem might come from. We double checked the original data and there everything is correct.
    Any ideas?
    Thanks for your feedback,
    Andreas

    Marcelo  Almeida wrote:
    > You can use Logial port for it in LPCONFIG ( Transaction). See this examplo Below:
    >
    > TRY.
    >
    > CREATE OBJECT my_proxy
    > EXPORTING
    > logical_port_name = 'LP01'.
    > CATCH cx_ai_system_fault.
    > ENDTRY.
    >
    > TRY.
    > input-airline_id = p_carrid.
    > input-connection_id = p_connid.
    > input-flight_date = p_fldate.
    >
    > CALL METHOD my_proxy->flight_get_detail
    > EXPORTING
    > input = input
    > IMPORTING
    > output = output.
    > CATCH cx_ai_system_fault.
    > CATCH cx_ai_application_fault.
    > ENTRY.
    >
    > Its necessary create a connection in SM59 (type H) and setting in the call parameters logical port (LPCONFIG).
    Hi,
    thanks for your answer. It´s working!
    Cheers,
    Andy

  • Wrong date when importing video from AVCHD

    Hi,
    I encountered a problem with the new Photos application: when importing photos and videos from my camera (Sony α5000, fairly recent), the dates of the videos are all wrong. In fact, all videos have the same date as the AVCHD directory on the SD card, instead of using the corresponding clip file date. I checked with iPhoto, and the app put the correct date on the file.
    Could you fix this bug? Or is there a better place I could submit the bug to?

    Welcome to the family, Shane's material will get you started.
    Also, search the forums for Nikon, DSLR, and related terms. You also need to read the manual that came with the Nikon, it clearly explains the codec in use. There are literally millions of Nikon and Canon DSLR video geeks out there and they support each other's efforts on the manufacturers' supprot sites as well as hundreds of other forums. You will find may more Nikon shooters who use FCP on Nikon forums than you will find FCP users who use Nikons here.
    bogiesan

  • Showing Wrong Data in my Portal Activity Report.

    Hi all,
    I have created a Portal Activity Report which shows the
    Details about the users who logged on.
    Im trying to show the details of fixed period some what between 2008.for this I have given some fixed period date in  the Reporting Period tab.
    but the data which is showing on the report is of 2006 n 2007 data...im not getting the data of 2008...not even single record is of 2008.
    I have checked with Data Collection Service Configuration setting...it is showing true thr...i tried with restarting that service also but there is no affect to report data...
    What to do...plz help...
    Thanks and Regards,
    Visweswar.

    Hi,
    The property is called Monitor Users. Set to Yes (default is No).
    Hope this helps.
    Daniel

  • Wrong date when synchronizing from Photoshop elements 3.0/4.0

    When I synchronize my photos from photoshop elements (I have tried both version 3.0 and 4.0) the dates displayed above the thumbs in the different folders become February 2040.
    I have put my photos in different collections in PE which are recognized nicely within Itunes. I turned on the "enable disk use" and "include full-resolution photo" options. I can also see that the database structure built within the Ipod is correct (year->month->day) still the date displayed above the folders when scrolling through the thumbs is incorrect.
    I have been busy quite a while now, but I can't find the answer, anyone there who knows the solution?
    ipod   Other OS   ipod

    I am experiencing the same thing. Regardless of what photos I sync to my iPod 60GB, the date on top is always February 2040!
    iPod / Windows / Photoshop Starter Album ver 3.0   Windows XP Pro  

  • Java.util.Calendar calculates wrong date when any duration is added

    Hi friends,
    I am trying to calculate the date through java.util.Calendar object and getting wrong value. Let me explain the scenario -
    Scenario1:
    I have taken start date and added some duration to that and expecting a new date which should be calculated as (start date+ duration). The value is as below -
    start date = 2012-01-09 (9 January 2012 )
    duration = 1year, 1month, 20 days
    new date = 2013-02-28 ( 28 February 2013)
    *Here new date I am expecting is 2013-03-01 (1 March 2013).
    Scenario2:
    I have taken another set of values as below -
    start date = 2011-02-15 (15 February 2011)
    duration = 1year, 1month, 15days
    new date = 2012-03-30 (30 March 2012)
    *Here new date is as expected.
    Scenario1 data is giving me wrong result. Please let me know if any more information is required. Any help will be appriciated. Thanks in advance.
    Edited by: user560316 on ९ जनवरी, २०१२ ६:२३ अपराह्न
    Edited by: user560316 on ९ जनवरी, २०१२ ६:२४ अपराह्न

    It all looks pretty straightforward to me. Try running the following code:
    public class TestCalendar {
        public static void main(String[] args) {
            java.util.Calendar myDate = java.util.Calendar.getInstance();
            java.text.DateFormat df = new java.text.SimpleDateFormat("dd MMMM yyyy");
            myDate.set(2012, java.util.Calendar.JANUARY, 9);
            System.out.println("Start date = " + df.format(myDate.getTime()));
            myDate.add(java.util.Calendar.YEAR, 1);
            myDate.add(java.util.Calendar.MONTH, 1);
            myDate.add(java.util.Calendar.DAY_OF_MONTH, 20);
            System.out.println("End date = " + df.format(myDate.getTime()));
    }This gives the following result:
    Start date = 09 January 2012
    End date = 01 March 2013

  • Wrong data in Reports

    HI,
    I have a characteristic( ex. ID number) in my report for which i am getting wrong data.
    when i go and check in the respective info providers i can see the data properly for that characteristic. But when i run the report i m getting data as
    08/ZR923854A  (correct  - ZR923854A)
    08/YS890040D (correct - YS890040D)
    #/YY879565C   (correct - YY879565C)
    I have checked in Query designer for Characterstic Values, there also the same wrong data is coming.
    Please help if you have any clue for this.

    Hi,
    Adding it to free cha. will not make much difference to the output. If you want ZR923854A only you have to create new infoobject which is not componded and then write routine in the transactional data flow to fetch  ID number from this compounded object.
    If it is a standard infoobject I would not recommend anyone to use single infoobject as SAP has desinged many objects considering the business functionalityies. We should not change it. You can convince business same way. If you need more info on Compounding please refer below link,
    http://help.sap.com/saphelp_nw04/helpdata/EN/ff/f470375fbf307ee10000009b38f8cf/frameset.htm
    Hope this helps.
    Kind Regards,
    Viren

  • Database error when creating a report

    Hi all,
    When we are creating a report with a universe based on BW, we are getting this error message:
    "A database error occurred. The database error text is: An error occurred while trying to load the provider for transport sap. Failed to load library mda_sap. System error message: 0509-022 Cannot load module /Apps/BOEXI31/bobje/enterprise120/aix_rs6000/libmda_sap.so.
    0509-150 Dependent module
    /Apps/BOEXI31/bobje/enterprise120/aix_rs6000/librfccm.o could not be loaded.
    0509-103 The module has an invalid magic number.
    0509-022 Cannot load module
    /Apps/BOEXI31/bobje/enterprise120/aix_rs6000/libmda_sap.so
    0509-150 Dependent module
    /Apps/BOEXI31/bobje/enterprise120/aix_rs6000/libmda_sap.so could not be
    loaded.. (WIS 10901)"
    When I test the connection of the universe in Designer, the result is ok. Also, when I create a report on Rich Client, the report is created fine.
    This is the Environment details:
    BusinessObjects XI 3.1 Service Pack 3 Fix Pack 3.2 (distributed installation)
    Windows Server 2008 R2 (CMS)
    AIX 5.3 Level 10 (Other BO services)
    Integration Kit SP3 fp 3.2 installed on both servers
    Thanks,
    Alvaro

    Because the customer wanted the functionallity of single sign-on with Vintela. We used this guide for the installation: http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/d0f6ac3c-b3ac-2b10-1b95-c9bd46194977?quicklink=index&overridelayout=true
    Regards,
    Alvaro

  • Where validation happens before showing create expense report page.

    Hi,
    I am trying to find out code where validation happens in travel management while creating expense report like if there is no approved travel request you can not create expense report.
    Also when we create expense report associated with travel request we get the header of expense report page as Create Expense Report for travel ID (XXX).
    Where is the code written to populate the context attribute?
    Kindly help.
    Regards,
    Madhvika

    Hi,
    As i told, it is done in this Class CL_FITV_POWL_FEEDER_TRIPS and in the method IF_POWL_FEEDER~get_actions.
    If you want to do enhancement in this, click the Pre-Exit or Post-Exit button and enter your own code.
    We have done like this:
        data: lr_action_def type ref to powl_actdescr_sty.
        data ls_action type powl_actdescr_sty.
        loop at c_action_defs reference into lr_action_def.
          if ( lr_action_def->actionid = 'CREATE_EXP' and lr_action_def->text = 'Create New Expense Report' ).
            lr_action_def->text = 'Create New Claim'.
            lr_action_def->tooltip = 'Enter New Claim'.
            ls_action-actionid = lr_action_def->actionid.
            ls_action-cardinality = lr_action_def->cardinality.
            ls_action-placement = lr_action_def->placement.
            ls_action-enabled = lr_action_def->enabled.
            ls_action-placementindx = lr_action_def->placementindx.
            ls_action-imagesource = lr_action_def->imagesource.
            ls_action-text = lr_action_def->text.
            ls_action-tooltip = lr_action_def->tooltip.
            ls_action-add_separator = lr_action_def->add_separator.
            ls_action-act_choices = lr_action_def->act_choices.
            modify table c_action_defs from ls_action.
          endif.
        endloop.
      endmethod.  
    Regards,
    Ani

Maybe you are looking for

  • Table For Purchase Order Version Number and Version Created Date

    Dear Sir, Whenever we make any change in Purchase Order , then a new Version Number  along with Created Date is assigned . In Me23n the Version Number and It's Created date is also displayed ( at PO Header Level) . We request you to kindly guide us a

  • Exporting as .flv

    I have a 5 minute FCP5 project I am wanting to export as a Macromedia flash video. The settings are: MP3 audio at 160kbps, and the video is 1200kbps, frame rate is same as source, key frame placement is automatic, and has been encoded as On2 VP6. It

  • Dates of images different (incorrect) when viewed in Finder to iPhoto

    I want to give to family some images (stills [JPEG] + video [AVI] - all taken on my Pentax camera) to view on their Windows computers. The dates within iPhoto display correctly in the 'Information' window on the left whenever I click on an image. How

  • Can anyone tell what are the fact tables and dimension tables available in banking domian

    what are the fact and dimension tables available in banking domain. maximum how many fact and dimension tables we can keep in the banking project

  • Distributed database

    Hi Everyone, We are looking at different options to connect the forte application to distributed database. Any help greatly appreciated Thanks & Regards Raju (Pothuraju Katta) [email protected] Phone: 847-969-3000 Fax: 847-995-8287 To unsubscribe, em