Problem in Sequence of loads to BI from 2LIS_11_VAITM

Dear Experts,
We are facing issue in the data loaded from 2LIS_11_VAITM to a write optimized DSO. Data records loaded from the PSA to the DSO is not in the same sequence as they are present in the PSA. Please find below the details with an example.
Data present in the PSA as below.
Data Record     | Cancel. Ind     | Sales Order |Item     |Material     |Order Qty
1     |     |1000     |10     |201                  |10
10     |X     |1000     |10     |201                  |-10
11     |     |1000     |10     |205                  |10
In the above sales Order, the material no. is posted as 201 and then later it was changed to 205 in the same day. Hence there are 3-records for the same order and item.
The same data when loaded to the write optimised DSO, the sequence is changed as follows.
Record no. |     0RECORMODE |Sales Order |Item     |Material     |Order Qty
1     |        |1000        |10     |205     |10
2     |        |1000        |10     |201     |10
3     |X        |1000        |10     |201     |-10
When we load this data to a standard DSO with key fields as Sales Order and Item, the record which we are getting is with the material 201 as below.
Sales Order     |Item     |Material     |Order Qty
1000     |10     |201     |10
Now the basic problem is with the sequence change while loading from the PSA. This is a simple example with the change in the material. Similar to material, there are some other fields which are also changing which results to the same kind of situation.
Kindly help us in resolving this issue. Please get back for any further details.
Thanks in advance.
Regards,
Prab.

HI
Negative values in the sense those all are Image values. suppose if you see you total amount for one month in BI same check with your source it will match. when you will get negative values for perticular doc or material when you willl change the doc original value then it will reflect.
Regards,
chandra,

Similar Messages

  • I have a macbook pro OSX 10.5.8. My DVD player software 5.0.3 plays all DVDs without a problem. When I load a DVD from Netflix it shows that "the supported disc not available" on the blank, black screen?

    I contacted Netflix. They are unfamiliar with this problem. Anyone have any experience with this problem

    I have the same problem. I put a Dexter dvd from Netflix in my Macbook pro 0sx leopard. Nothing happened. Dvd player did not recognize the disk. To check whether the Dexter dvd was damaged, I put the dvd in my PC and it worked without any problems. I then put another dvd disk (Kubrick's Shining) in my Macbook and it worked fine, so there must be something in the Dexter dvd that messes up the Macbook. I've seen other posts specifically citing that the Dexter dvds do not work on the Macbook. This looks to me like a Showtime problem.

  • Cannot deactivate delta load of materials from R/3

    Hi,
    we have a problem deactivating the delta load of materials from R/3.
    I deactivated the adapter objects MATERIAL and PRODUCT_MAT in R3AC1.
    I even deleted the class MATERIAL in R3AC4.
    The Bdoc's are not created any more, but the queues are still getting generated in SMQ2:
    R3AD_MATERIA***
    Am i wrong in assuming that this settings have to prevent queue creation?
    Is this an error that anyone encountered or are there any other settings that I forgot to check?
    Thank you,
    Borut

    Hi,
    I have a similar problem. I have to deactivate delta flow of materials from ONE SITE only (F6A)  and keep it flowing from other sites N6A and A6A - our CRM system is connected to multiple backends.
    For the required site, i have removed all the conditions in the filter settings but still delta queue keeps on coming. Also, the queue is in SYSFAIL state - we are not able to download material from other sites - supposedly material from the other two sites gets queued up in this stuck queue.
    Is there any way to stop the download from one particular site only?

  • New document about sequence presets and codecs missing from Premiere Pro

    If you're having problems with sequence presets and codecs missing from Premiere Pro, see this document for solutions for this activation issue.
    This document relates to the following problems:
    - missing sequence presets when creating a new sequence
    - Encore error: "Encore will not launch in non-royalty bearing mode. The application needs to be serialized with a royalty bearing serial number."
    - When opening a project in Premiere Pro: "Error Adobe Premiere Pro: This project contained a sequence that could not be opened. No sequence preview preset file or codec could be associated with this sequence type."
    - When importing footage, the footage is missing audio or video.
    These failures are all because Premiere Pro and Encore use some codecs that require activation before they can be used. If activation of these codecs has failed, these codecs will not be available to use.

    Well done.

  • To load an Xlet from another one

    Hi verybody.
    I'm new about Xlets and mhp.
    I've a problem: I want to load an xlet from a running one.
    I've read about this in this forum, but the solutions I've found don't work on my project. Probably I mistake something.
    I use the following classes:
    Myremote:
    public interface MyRemote extends java.rmi.Remote {
    public void setValue (int a) throws java.rmi.RemoteException;
    public int getValue () throws java.rmi.RemoteException;
    } MyFilter:
    import org.dvb.application.AppAttributes;
    import org.dvb.application.AppID;
    import org.dvb.application.AppsDatabase;
    import org.dvb.application.AppsDatabaseFilter;
    public class MyFilter extends AppsDatabaseFilter {
    private String name;
    public MyFilter (String name){
    super();
    this.name = name;
    private MyFilter() {
    public boolean accept(AppID appid) {
    AppAttributes appAttributes = AppsDatabase.getAppsDatabase().getAppAttributes(appid);
    if (appAttributes != null) {
    String name = appAttributes.getName(); 
    if(name.equals(this.name)) 
    return true; 
    return false; 
    } In the running Xlet, in the KeyListner, I try to load XletIWantToLoad (that is in the same package of the running Xlet )using the following code:
    filter = new MyFilter("XletIWantToLoad.class");
    System.out.println("After Filter");
    if(this.theDatabase != null){ 
    System.out.println("theDatabase: "+theDatabase); 
    attributes = theDatabase.getAppAttributes(filter);
    System.out.println("Attributes");
    if (this.attributes != null){
    while(this.attributes.hasMoreElements()){
    AppAttributes info;
    AppProxy proxy; 
    info = (AppAttributes)attributes.nextElement();
    proxy = (AppProxy)theDatabase.getAppProxy(info.getIdentifier());
    proxy.start(null); 
    }So that:
    The problem is that the filter remains null....
    Please, may you answer me about this?
    Tanx a lot anyway....
    Bye
    Mauro

    Hi verybody.
    I have the same problem.
    I'm using the following code in my running xlet
    public void keyPressed(java.awt.event.KeyEvent keyEvent) {
    switch (keyEvent.getKeyCode()) {
    case KeyEvent.VK_1 : {
    System.out.println("Premuto il tasto 1");
    System.out.println("theDatabase: "+theDatabase);
    AppsDatabase theDatabase;
    AppProxy proxy;
    theDatabase = AppsDatabase.getAppsDatabase();
    System.out.println("DOPO theDatabase: "+theDatabase);
    AppsDatabaseFilter filter;
    filter = new CurrentServiceFilter();
    Enumeration attributes;
    attributes = theDatabase.getAppAttributes(filter);
    while(attributes.hasMoreElements()) {
    AppAttributes info;
    info = (AppAttributes)attributes.nextElement();
    System.out.println("info: "+info);
    AppID id = info.getIdentifier();
    System.out.println("Id: "+id);
    proxy = (AppProxy)theDatabase.getAppProxy(id);
    System.out.println("Proxy: "+proxy);
    proxy.start();
    } Thanks
    Regards
    Mantequilla

  • TS1717 I got this message every time i connect my iphone to itunes.. said 'iTunes was unable to load provider data from Sync Services. Reconnect or try again later.' so please help me to solve out this problem..

    I got this message every time i connect my iphone to itunes.. said 'iTunes was unable to load provider data from Sync Services. Reconnect or try again later.' so please help me to solve out this problem..

    In the course of your troubleshooting to date, have you also worked through the following document?
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert

  • My iphoto will not open for some reason. the cursor just keeps running...been using this for 3 years with no problem. It started doing this after I tried to load some photos from a camera I have successfully used before

    I cannot open my Iphoto on my macbook pro. I have used it for three years with no problem. However, after trying to load some pictures from my camera it seems to have frozen up. I force quit it and have not been able to get past the opening blank window since ...cursor still blinking as if it is downloading or trying to open.

    What version of iPhoto?

  • Problem in loading transactional data from to 0MKT_DSO1(ods) to 0MKTG_C01

    Hi,
    I am trying to load lead transaction data to the standard Crm lead management cube from ODS.There is a problem while loading transaction data from 0MKT_DSO1(ods) to the infocube 0MKTG_C01 as the field 0STATECSYS2(CRM STATUS)  is set to 10 in ods -meaning incorrect transaction. This feild is not there in the infocube.
    There is a routine in the cube that deletes data records with (0statecsys2) set to 10.
    THIS field is not coming in the transaction.
    so, where can i see the master data in crm source system? and why is that feild getting set to 10 ?
    thanks in advance!

    Thanks for the reply..
    I have checked the Fact table which shows
    1. packet Dimension
    2. Time dimension
    3. Unit dimension.
    I have kept the 0CALDAY as the time characteristics.
    Sample data i have loaded from ODS to Cube.
    Sample data in ODS.
    Sales order No_____0CALDAY_____AMOUNT
    800001___________12/02/2009____15
    I have loaded this data in Cube with Full Upload.
    Data in Cube.
    Sales order No_____0CALDAY_____AMOUNT
    800001___________12/02/2009____15
    Again i am loading the same data to cube
    Data in cube after loading.
    Sales order No_____0CALDAY_____AMOUNT
    800001___________12/02/2009____15
    800001___________12/02/2009____15
    The data is duplicated and it is not cumulating.
    Am i missing anything on this.
    Pls help..
    Thanks,
    Siva.

  • My iphone 3g wont load all comments from online newspaper. when I touch the "load more comments" button the little spinning spiral appears then nothing happens. Anyone else have this problem with some online newspapers?

    My iphone 3g wont load all comments from online newspaper. when I touch the "load more comments" button the little spinning spiral appears then nothing happens. Anyone else have this problem with some online newspapers?

    Anything?

  • Strange email problem; it started only loading unread emails, but from 3 months ago. It is now loading new emails too, but no emails in the past month, read or unread. It's gmail, set up through the phone, I've restarted restored

    Strange email problem; it started only loading unread emails, but from 3 months ago. It is now loading new emails too, but no emails in the past month, read or unread. It's gmail, set up through the phone, I've restarted restored and updated firmware, deleted the account, anything I could think of, but it's just not accurately downloading the most recent emails.

    The answer is very simple: You were not the original owner of the phone. Target sold you a phone that had been returned. You can verify the date of the original sale here: Apple - Support - Check Your Service and Support Coverage. I suspect you will find that the warranty expiration date is not one year from the date that you bought it.

  • Problems loading RAW files from Canon 6D in Elements 10

    Elements 10 - Windows: I have been using the software for a couple of years and never had a problem loading RAW files from my Canon T2i ir 60D, however I just purchased a Canon 6D and when I try to load a RAW from the 6D I get Cannot open 'C:\User...CR2' because it is the wrong type of file.  I thought cameraraw 6.5 patch would be the fix but when trying to install I get "Error loading Updater workflow"

    Will the DNG files perform the same, meaning will I retain all the information that makes RAW important for processing?
    Yes. That's why DNGs were invented. Adobe has put a lot of work into the DNG format for this very reason.
    Raw files are proprietary and manufacturer specific. Raw formats change with every make and model of camera. Software must be updated for the new Raw format of every single camera. Adobe does an admirable job of upgrading Camera Raw for every new camera.
    DNG is also a Raw format but it's open source and works in any software which can read the DNG format. If camera manufacturers used the DNG format instead of their own Raw format, you would not have to upgrade Elements 10. But they don't, and probably never will, so you must upgrade the Camera Raw plugin (and therefore Elements 10 since it's not compatible with the new Camera Raw) to read the new Raw format from the 6D or add another step to your workflow with conversion to DNG first.
    See
    http://photographylife.com/dng-vs-raw
    http://www.adobe.com/products/photoshop/extend.displayTab2.html

  • Problem loading modified classes from CLASSPATH using system class loader

    Hi,
    I am facing problem to load the modified classes from CLASSPATH.
    I have set my CLASSPATH to a directory whose classes will be modified frequently. After the server(web/app) is started, the system class loader, using which am trying to load the classes from the directory where the CLASSPATH is set, am not able to load the modified files without the server restart.
    Do I need to have a custom class loader to fix this.
    Please help me.
    Thanks,
    Sureddy

    Do I need to have a custom class loader to fix this.Yes.

  • Problem when loading pdf files from Shared Content

    When I load pdf files from Shared Content, I got the following problem: "The selected document could not be retrieved, please try uploading the document again."
    Anyone knows this?
    Thank you very much in advanced.

    I don't migrated the program, but installed it from the original installer,
    i. e. I first installed Indesign from backup, and then uninstalled it and
    reinstall  clean from Adobe.
    What a plug-in or utility converts page from InDesign to PDF?
    2014-08-10 22:51 GMT+04:00 Peter Spier <[email protected]>:
        problem with exporting PDF files from InDesign CS5  created by Peter
    Spier <https://forums.adobe.com/people/P+Spier> in InDesign - View the
    full discussion <https://forums.adobe.com/message/6627440#6627440>

  • Problems loading raw files from Nikon D750 to lightroom4

    problems loading raw files from Nikon D750 to lightroom4. Any thoughts?

    This is a recently produced model so raw support was only added in LR 5.7 / ACR 8.7, updates to LR 4 ceased about two years ago when LR 5 was issued.
    Options a.) Upgrade to LR 5.
    b.) Utilize the latest Adobe DNG Converter 8.8 to convert the nef files to dng format then you will be able to import the dng files into LR 4.

  • My problem is a sudden loss of ability to get to PSE12 Organizer when I tried to load a saved scan. Had been using the Organizer and the Editor with no problems for several hours just before that.     Can not load the Organizer from the icon at the bottom

    My problem is a sudden loss of ability to get to PSE12 Organizer when I tried to load a saved scan. Had been using the Organizer and the Editor with no problems for several hours just before that.  
    Can not load the Organizer from the icon at the bottom of  Editor screen, from the icon on the MacBook Air dock (OS 10.10.2),  nor from the file in applications located with Finder.
    I have tried without success to access Organizer after turning off and on the scanner, turning off and on the computer, loading a fresh copy of PSE12 from the CD, and restoring default preferences.  I have searched on line for other options but not  found any. 
    Can you help me?

    Not Charge
    - See:    
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. The cable for 5G iPod (lightning connector) seems to be more prone to failure than the older cable.
    - If a 5G iPod               
    Iphone 5 lightning port charging problem - SOLUTION!
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

Maybe you are looking for

  • Problems connecting iPod touch to windows vista ad-hoc connection

    Hi, This problem has been troubling me since i got my iPod Touch(2nd Gen) I do not have a wi-fi router,rather i make a ad-hoc connection on my laptop(vista) and share the internet with this wireless ad-hoc connection. I then turn on the wifi on my ip

  • Iphone 4 stolen from the shop, unopened

    Hi there, Should I buy an Iphone 4 which was stolen from a local carrier's stock (warehouse), sealed in the box? If I buy it will it work? Is there a possibility the Carrier will somehow block it? Can I check it before I buy it? Thanks!

  • How to find out where a variable has been used?

    How can I find out where a variable has been used within a package/interface/procedure? Should I check it using repository's internal tables? Thanks

  • What are the ROLES & Responcibilites of a SAP Tester

    Hi, I would like to know the roles and responcibilites of a SAP tester what kind of things will do by Manual Testing as well as Automation Testing by using ECATT Thankyou

  • Images in HTML forms and/or reports

    Hi, Apologies if a stupid question, but can you display a combination of data and image content in Portal HTML forms and/or reports? If so, how? This question assumes that the image in question is browser-supported (e.g. gif file), and the link to it