Data not adding for the same Key up in Infocube

Hi,
My Dataflow goes like this:  Datasource  -> DSO -> Infocube.
I have created 2 DSO's for Deliveries Header & Delivery Item Seperately which gets data from 2LIS_11_VCHDR & 2LIS_11_VCITM Datasources.  Both DSO's have Delivery Number & Fiscal Year variant as Key.  20 records are getting loaded to each DSO's seperately.  Both the DSO's have the same Delivery Numbers & Fiscal year Variant for this 21 Records in their respective Loads as given below:
                                 DSO 1                                                                  DSO 2
S.No.       Deliver No.    Fiscal Year Var.                          Delivery No.       Fiscal Year Var.
   1               12345                     V3                                          12345                         V3
   2               28456                      V3                                          28456                        V3
   3               34986                      V3                                          34986                        V3
Now, I am loading data from this 2 DSO's to one Infocube, Deliveries Infocube.  The problem is, after the Data load, when i go to the Contents of the Infocube, I could see 42 records.  As per Infocube, it should add up the values for the same key.  My Delivery numbers & Fiscal year vairant are the same in both the DSO's, so i should have got only 21 records.  Why is the Infocube not adding up the records in this case, am i missing anything here?
Thanks & Regards,
Murali

Hi Murali,
As you are loading data from two different sources, there are two different requests and that is why you are getting 42 records, if you want to check the data consistency then create a query on top of this infocube and then check the values of key figures for delivery no's. or verify your data through query.
If you don't want to create query then you can use aggregation option from the display data of Infocube.
If you compress both the requests then you will see only 21 records in infocube.
Regards,
Durgesh.

Similar Messages

  • Disable roaming data not works (in the same country)

    iPhone 2.1
    if disable roaming data and your carrier allows to connect to another carrier in the same country (for voice services) your iPhone continue to connect with the other carrier, even if you've disabled roaming data.
    that needs to be fixed as soon as possible ...
    i've spent a lot of money thinking that disable roaming data works also in the same country and not only abroad

    They should then add this features, a lot of people are in the same boat ... and receive tremendous bill due to this lack of capabilities of iPhone to do not lock data connection only with the own carrier in the same country.
    I know that there's the possibility to use only one carrier instead of setup in automatic mode the carrier, but, as said, many carriers all over the worls allow theis customers to connect to other carriers for free ONLY for voice BUT not for data ...

  • Delivery date not confirmed on the same day even though stock available

        Hi Experts - We are creating an STO in Brazil where stock is moving from 1 plant to another plant.
        Current ATP situation is as follows: which shows 22 EA still available.
    We are creating the STO from the plant 3004 to plant 3005.
    We are confused why the system is proposing the delivery date of March 17 instead of March 14, in spite of sufficient quantity being available.
    We do understand that it takes 03/17/2014 because of the upcoming weekend. But when stock is available on March 14, we would have expected this result.
    These are the key configurations that I have done:
    Material Master:
    MRP View: Planned Delivery Time is 0
    MRP Type: PD (MRP)
    Checking Group: 02
    Assign delivery type and checking rule config for Material Master is also done as follows:
    Request your help please!
    Regards
    Siddharth Sridhar

    Yes If Stock is available for material & still date is changing in STO creation than may be this could have happened due to time zone setting,
    2 option-I would request you   also go through Stock requirement List (MD04) & check where some pending order is lying & some purchase orders if yes then first block them,
    Sometime it heppens if earlier for same material you would have created Sales order (qty is 20) & stock available qty is 15 & still with 15 qty you would have done PGI.& after some time your would have done migo for the same shortage material & this time 5 qty material could be adjusted in shortage order that's why if you go through md04 then you would be able to block shortage qty which  is adjusted,n now date is showing deff,
    hope this would help,
    Thanks,
    Kamlesh

  • How can I create a hashmap() with multiple values for the same key?

    I am trying to write an application that will us something like a Map() with multiple values but some have the same key. Is this possible?

    i had the same question. just create a List, add all the values u want to it, and then put the List into the map like u would a normal single value. e.g.
    List list = new ArrayList();
    list.add(value1);
    list.add(value2);
    map.put(key, list);
    i bet u r doing the same course as i am =)

  • Dashboard data not visible for the users - buffer issue?

    It occurred several times last weeks that some out of 7 dashboards are not visible to the Dashboard users.
    The scenario is the same all the time: users fills in the data, reviews it and posts some comments. Next morning the user canu2019t see the data in the system.
    What can be the problem?

    Hi,
    IF your Company has NEtweaver License and the SAPNET User has access right to download section, you must be able to add SP Stacks to Download Basket.
    If you have license and use have access, then please contact with local SAP Subsdiary for this problem.
    But to be able to download some patches, you must have Solution Manager & Maintanance Optimizer to approve the items in basket.

  • Why two records for the same key???

    Hi,
    I'm finding that our database contains "duplicate" records even though it is set to disallow duplicated. In particular, from DbDump, here are two keys from our database:
    737201037870770c0001000000a6005a001471c678
    737201037870770c0001000000a6005a0014711678
    You can probably really think of them as
    737201037870770c 0001000000a6005a00147 1c678
    737201037870770c 0001000000a6005a00147 11678
    where only the middle part is "our key data". Use use Externalizable and have methods for the key:
    public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
              short oldVersion = in.readShort();
              this.primaryKey = in.readInt();
              this.orderPurpose = in.readChar();
              this.foreignKey = in.readInt();
    public void writeExternal(ObjectOutput out) throws IOException {
    out.writeShort(externalizationVersion);
    out.writeInt(this.primaryKey);
    out.writeChar(this.orderPurpose);
    out.writeInt(this.foreignKey);
    public int compare(Object o1, Object o2) {
    byte[] b1 = (byte[]) o1;
    byte[] b2 = (byte[]) o2;
    final int compareLen = b1.length;
    for (int i=0; i<compareLen; i++) {
    if (b1[i] != b2) {
    return (b1[i] < b2[i] ? -1 : 1);
    return 0;
    My question is basically this: what are the trailing bytes for in the key and why do they differ in my case? BTW, we're using an old version, 2.0.90, and we recently switched to Java 6 from Java 5... (just in the interest of full disclosure!)
    Thanks very much in advance,
    Dan

    Yes, you're right. That hint really helped me find
    my problem !!Glad to hear that.
    I still don't know what the leading and trailing
    bytes are used for but at this point, it doesn't
    really matter anymore.They're output by Java serialization when JE calls ObjectOutputStream.writeObject, so they should be defined here:
    http://java.sun.com/j2se/1.5.0/docs/guide/serialization/spec/protocol.html
    Thanks for your help,You're welcome,
    Mark

  • Spool no. not generating for the same shipement number

    Hi,
    I am working on shipment related forms. When i give the print of one shipment no., all the forms are going to one spool number. But my problem is when i take the same shipment number from second time onwards then all the forms are getting appended to the same spool number instead of creating a new spool number.
    For example my shipment no.:- 1277489 contains 8 pages, when i take the same shipment no. for second time all the 8 pages getting appended and total 16 pages are going to that same spoll no. For third time 24 pages and 4th time 32 pages and so on... in the same spool request.
    I have debugged the driver program, but i din't get any solution for that. So can any one suggest me of how to resolve this issue.
    Thanks & Regards,
    Ramana

    Hi,
    After selecting the print option, the print pop window appears. In that select the option New Spool Request.
    Then give the print, it will come on new page.
    You can also pass this option in the print program also. Pass TDNEWID = 'X' in parameter OUTPUT_OPTIONS.
    Regards,
    Vinod

  • Displaying a group of data or info for the given key in a property file

    Hi,
    I have a property file suppose queries.properties.
    it contains the propertys and values as
    profile_1=abc
    profile_2=dfg
    profile_3=ser
    name_1=qwe
    name_2=dfg
    name_3=cbvb
    my requirement is when i pass the key profile then it has to give
    profile_1=abc
    profile_2=dfg like all profile related properties and its values.

    it should display all the profile related keys and its corresponding values.
    the reason behind this requiremnt is to improve the performance .
    if we pass key then at a time we will get the value of that key.
    but if ihave set all the profile related properties and its values then i need to get all at once .

  • Can there be more than one port for the same logical system

    Can we have more than one TRFC port for tranferring data from one logical system to another?
    The requirement is to transfer same basic idoc type from one logical system to another through two different ports. Is it possible?
    For eg. some specific data (country specific) for the same basic idoc type can be sent through a separate port and the other data through a different port inorder to distinguish between the two.

    Hi Shital,
    I don't think so. Because of that what i told you. There would be a dirty trick (back routing) to solve your issue. But its quite difficult and not standard. You create two http receiver services  and two http sender services. You route your message depending on payload to the one or the other http receiver channel. The receiver is in both cases: THE XI! Now you have a second message, which you  can route to IDoc adapter. But in this case you have different sender and in the receiver determination you can put the sender, so you will be able to use different communication channnels and so different ports / destinations.
    Advantage: Your task would run, no performance problem (http: very good, asynchron)
    Handicap: You see every message double in the monitoring, the scenario is not easy to understand and it is a big task 4 other people to change it.
    Regards,
    Udo

  • Can we have multiple policies for the same gateway?

    Hi all,
    Is there a way in which we can have multiple policies for the default gateway?
    When I try adding a new gateway (which is not mentioned in the installer.properties file) and have policies, there is a 404 error.
    When I add another service to the same gateway, I get an error - that the service could not be added to default policy.
    Help me please...
    My need is as follows
    Want to have multiple policies, so that each of the web-service can be attached to same. The relation needs to be one-to-many. One policy can have multiple web-services.
    Thanks in advance...

    Its not possible for the same development object. Only 1 person can access an object at a time and if mutiple users modify an object new TASKs are created under the same TRANSPORT.
    Only after releasing the tr you can create a new tr on the same object.
    Message was edited by:
            Abhishek Jolly

  • Can we have multiple transports for the same object.

    Hi guys,
    Can we have multiple transports for same object in dev system. Can anyone tell me how can this be done.
    Thanks

    Its not possible for the same development object. Only 1 person can access an object at a time and if mutiple users modify an object new TASKs are created under the same TRANSPORT.
    Only after releasing the tr you can create a new tr on the same object.
    Message was edited by:
            Abhishek Jolly

  • HT4436 I am using IOS 4.1 in Ipod touch. I would like to take my data back using icloud. I am not able to enable icloud in to my ipod touch. please help me for the same.

    I am using IOS 4.1 in Ipod touch. I would like to take my data back using icloud. I am not able to enable icloud in to my ipod touch. please help me for the same. Basically I am trying to take back to upgrade my ios to 5 or 6 version.

    You can't back up to iCloud until you update to iOS 5 or higher.  You will have to back up your iPod on your computer using iTunes.  Update iTunes on your computer to the latest version, then connect your iPod to your computer, open iTunes, if iTunes give you a pop-up asking if you want to update your iPod, decline.  Then click on the name of your iPod in iTunes, go to File>Devices>Transfer Purchases to transfer any purchased media to your iTunes library.  Next, go to the Summary tab of your iTunes sync settings and click on Back Up Now to back up your iPod on your computer.
    When it's done backing up, click on Check for Update (or Update) on the Summary tab of your iTunes sync settings.  Allow your iPod to update, and leave it connected to your computer.  At the end, it will restart and give you the option to restore to the iTunes backup you made earlier.  Choose this option to restore your backup and sync your apps and other iTuens media to your phone.
    This process is outlined in this article: http://support.apple.com/kb/HT4972, under "If you are attempting to update using a Mac or PC with which you normally sync".

  • I originally purchase a ringtone on Jan 10, 2013 - it is no longer on my i-phone and it is not stored any where.  I have another purchase on my credit card statement for the same song on a different date??  How do i get the ringtone on my phone?

    I originally purchased a ringtone on Jan 10, 2013 and it is not longer on my i-phone 4s!  I have another charge for the same song and there is still no way to set as ringtone!

    Hello
    Try restoring the device and setting up as new.
    If it is still shows an iCloud activation lock, then it's on an iCloud account
               The wrong device was removed from an iCloud account.
    Check any other Apple IDs you might have at
                 iCloud.com
    Get signed into them and remove that device.
    I wish this was the first time I seen this.
    Best of Luck

  • Unable to load the tables in the Power Pivot Window – An Item with the Same Key has already been added

    Hi there,
    I recently had the following situation, where I changed the source of my CSV file in Power Query.
    Once I had reloaded the file, it would then not load into Power Pivot. So I disabled the loading from Power Query into Power Pivot. I then enabled the loading to the Data Model. Which then successfully loaded the data into Power Pivot.
    But once I went into Power Pivot, had a look, then saved the Excel file. Once saved I closed the Excel file. I then opened the Excel file again and all the sheets that interact with the Power Pivot data work fine.
    But if I go and open Power Pivot I get the following error: Unable to load the tables in the Power Pivot Window – An Item with the Same Key has already been added.
    This is what I get from the Call Stack
       at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
       at Microsoft.AnalysisServices.Common.LinguisticModeling.SynonymModel.AddSynonymCollection(DataModelingColumn column, SynonymCollection synonyms)
       at Microsoft.AnalysisServices.Common.LinguisticModeling.LinguisticSchemaLoader.DeserializeSynonymModelFromSchema()
       at Microsoft.AnalysisServices.Common.SandboxEditor.LoadLinguisticDesignerState()
       at Microsoft.AnalysisServices.Common.SandboxEditor.set_Sandbox(DataModelingSandbox value)
       at Microsoft.AnalysisServices.XLHost.Modeler.ClientWindow.RefreshClientWindow(String tableName)
    I would assume that the issue is with the synonyms and for some reason, when I disabled the loading of my data into the Power Pivot Model, it did not remove the associations to the actual table and synonyms.
    If I renamed the table in Power Pivot it all works fine. So that was my work around. Fortunately I did have a copy of the Excel workbook before I made this change. So I could then go and add back in all the relevant data to my table.
    Has anyone had this before and know how to fix it?
    http://www.bidn.com/blogs/guavaq

    Hi there
    I can share the work book, if possible to send me an email address. As the workbook size is about 9Mb.
    Thanks
    Gilbert
    http://www.bidn.com/blogs/guavaq

  • SharePoint Search Service upgrade to 2013 fails: "Inner Exception: An item with the same key has already been added."

    Here's the situation:
    Upgrading a SharePoint Server 2010 Search Service Application dB to our SharePoint 2013 SP 1 development environment, using the Management Shell
    Running the following commands: 
    $applicationPool= Get-SPServiceApplicationPool -Identity 'SearchService_AppPool'
    $searchInst = Get-SPEnterpriseSearchServiceInstance -local
    Restore-SPEnterpriseSearchServiceApplication -Name 'SearchServiceApplication' -applicationpool $applicationPool -databasename 'SearchServiceApplicationDB' -databaseserver SERVERNAME -AdminSearchServiceInstance $searchInst
    Creates the search dBs (crawl, links, analytics) successfully; however, in the end, I get....
    "Exception: Action 15.0.107.0 of Microsoft.Office.Server.Search.Upgrade.SearchAdminDatabaseSequence failed."
    Looking at the ULS logs, I find the following:
    Inner Exception: An item with the same key has already been added.
    at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)     at Microsoft.Office.Server.Search.Administration.OOTBSchemaDefinition.FindAndFixExistingManagedProperties()     at Microsoft.Office.Server.Search.Administration.OOTBSchemaDefinition.InstallManagedProperties(Boolean
    upgrade)     at Microsoft.Office.Server.Search.Administration.OOTBSchemaDefinition.Upgrade()     at Microsoft.Office.Server.Search.Upgrade.UpdateAllOOTBProperties.Upgrade()     at Microsoft.SharePoint.Upgrade.SPActionSequence.Upgrade()
    Exception: Action 15.0.107.0 of Microsoft.Office.Server.Search.Upgrade.SearchAdminDatabaseSequence failed.
    at Microsoft.SharePoint.Upgrade.SPActionSequence.Upgrade()     at Microsoft.SharePoint.Upgrade.SPDatabaseSequence.Upgrade()     at Microsoft.Office.Server.Search.Upgrade.SearchDatabaseSequence.Upgrade()     at Microsoft.SharePoint.Upgrade.SPUpgradeSession.Upgrade(Object
    o, Boolean bRecurse)
    Anyone encounter anything like this during their search upgrade process? I'm not honestly even sure what duplicate value to look for at this point, if I were to run a SELECT Id, ClassId, ParentId, Name, Status, Version, Properties FROM Objects on
    "SharePoint_Config" in SSMS. Any insight or opinions on the matter are welcome; and thanks to those who choose to reply to this, in advance.

    Hi ,
    You can enable the ULS log on verbose level (note, remember to reset to default level after finished troubleshooting) for more information per the following article, then check there should be more useful message for helping solve the issue.
    http://www.brightworksupport.com/enabling-verbose-logging-to-compare-against-c/
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/12c99279-d3aa-46de-bc57-d5d250692ff0/upgrade-of-search-service-application-from-2010-to-2013-failure?forum=sharepointadmin
    https://www.simple-talk.com/blogs/2014/04/22/sharepoint-2010-to-2013-search-service-application-upgrade-issueaction-15-0-80-0-fails/http://blogs.msdn.com/b/biyengar/archive/2009/10/27/psconfig-failure-with-error-an-item-with-the-same-key-has-already-been-added.aspx
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] 
    Daniel Yang
    TechNet Community Support

Maybe you are looking for

  • Mavericks Upgrade - App Store problems

    Hello, Since upgrading to Mavericks, I am having a strange issue regarding Mac Appstore. It functions bizzarely. Even after clicking "update all" or "update" for iLife apps, the app store keeps on asking about the apple ID & password again and again,

  • Is it possible to create a 'layer' over the top of a PDF in Captivate?

    I am trying to integrate a 3dpdf within captivate 8 for a software training program, for this it is important to retain functionality to the pdf menu, Captivate handles this well : ) HOWEVER on importing the pdf it becomes clear that the pdf 'trumps'

  • After Effects plugins for FCP 6

    Hi folks, I'm trying to install the plugins for AE 6.5 Pro into my nice new FCP 6 set up. When I fire up FCP, it rejects all the plugins and then shuts down. Any ideas? G5   Mac OS X (10.4.9)   Running FCP Studio

  • Compiling struts.jar

    compiling struts.jar email me [email protected]

  • ITunes Error message when dowloading

    When I try to download from a particular podcast, I get the error message "There was a problem adding [filename] to iTunes. The file might be corrupted or a file that iTunes cannot play." If I download the individual files from the web browser, it wo