Types of Update method clarifications!

Hi  All
  I understood and read all the threads regard to update types.
But Stll not cleared.Pls clarify me as they are simple one.
1. When datasource is DELTA Capable, can it be changed or also used as FULL UPDATE? how?
2. When we re-initialize, I see there is an option of "Transfer with data" and Transfer without Data". May I know in what scenario we apply the above two options.. and Why?
3. How to know whether  delta is working or not in R/3. ? Also how to check the DELTA created fro STD Datasource?
When a datasource is delta enable, so all changes and new records are fetched onlly through RSA7, right? Can we see that in RSA3 extractor with update mode FULL, is it possible? when do we check with update mode DELTA and other options in RSA3?? becoz I see the use of RSA3 is only at start point or the last end point which is your last delta..nothing else//
MAy be useful for FULL UPDATE not really useful for DELTA?? is my understanding right???
4.When your PSA is Delta, your DTP nowadays used as DELTA, how DTP fetches only DELTA??? As it has no table like new, change table. How it understands to fetch DELTA alone..? Does it really working ?
5.When PSA is FULL update, naturally what is point in using DELTA n DTP? how it works?
6.When do we go for FULL REPAIR request and steps for it and WHY?
Thanks for your efforts and time.

HI
1. When datasource is DELTA Capable, can it be changed or also used as FULL UPDATE? how?
Even thought the data source is delta capable you can always do the full upload. Ex - 0MATERIAL_ATTR, 0CUSTOMER_ATTR
2. When we re-initialize, I see there is an option of "Transfer with data" and Transfer without Data". May I know in what scenario we apply the above two options.. and Why?
By default its always "Transfer with data". Most of the cases transfer without data is used for error fixing. Ex: By mistake you have deleted few sales order from your target using selective deletion. Now you want to reload that data. So for this you need to fill up the setup table for those orders and do the repair full load. After this you need to restore the delta. So to restore, you need to run init infopakcage without data transfer. This is put the timestamp on RSA7
3. How to know whether delta is working or not in R/3. ? Also how to check the DELTA created fro STD Datasource?
Extract the init infopackage, then in the source system add a record. Then in bi run the delta infopack.
Goto RSA6, search the datasource and double click, there is a check box called Delta update. If this is ticked it means its delta enabled.
When a datasource is delta enable, so all changes and new records are fetched onlly through RSA7, right? Can we see that in RSA3 extractor with update mode FULL, is it possible? when do we check with update mode DELTA and other options in RSA3?? becoz I see the use of RSA3 is only at start point or the last end point which is your last delta..nothing else//
MAy be useful for FULL UPDATE not really useful for DELTA?? is my understanding right???
You can check delta mode is rsa3 by selecting update type u201CDu201D only if there is active delta init. Only where there is data in the setup tables you can check with full update. Otherwise it will say 0 Records extracted.
Most of the cases it is used to see if the extractor is working fine or enhancement are working fine.
4.When your PSA is Delta, your DTP nowadays used as DELTA, how DTP fetches only DELTA??? As it has no table like new, change table. How it understands to fetch DELTA alone..? Does it really working ?
PSA is never a delta. It is the datasource which is delta. DTP will pickup all the requests that have not been loaded into the target using the delta. DTP is from PSA to target not from source (ECC) to target providers.
Ex: data loaded from ECC to bi psa ---REQ 1
Run the DTP, DTP will pick REQ1
Nextday
ECC to BI ---REQ2..
Run the DTP, DTP will pick ONLY REQ2
Delete entire data from Cube and Run the delta DTP, DTP will pick up REQ 1 and REQ 2
Thanks
Srikanth

Similar Messages

  • Different types of Update Methods.

    Hi,
    1) Can we go for full load after inti with data.?
    2) Can you tell me the order of goin in update methods?
    Thanks,
    Naresh.

    Hi,
    1) Can we go for full load after inti with data.?
    Yes you can
    2) Can you tell me the order of goin in update methods?
    Init-->Delta
    Init-->Full
    Init without data transfer-->Full-->Delta
    Init-->Full-->Delta
    Like that, it depends on requirement
    http://help.sap.com/saphelp_nw70/helpdata/en/44/97430b99ee70dbe10000000a1553f6/content.htm
    Thanks
    Reddy

  • MVC: info on update method

    Hi,
    I'm using MVC pattern.
    I've understood it, and I be able to use it, but I've some doubts.
    Practically, in the view I have the update method;
    Now, my view interact with many models, which advice it by executing his update method.
    But in this update method, I've various pieces of code;
    one for the update of the first model;
    one for the update of the second model;
    etc.....
    I don't like this, because I want that,
    when a model is updated, it advice view by executing only the corresponding piece of code.
    Is there any other solution?
    Excuse me if it's not clear.
    Thank you in advance
    MargNat

    I take it from your message that you're implementing a Swing-based MVC GUI (things would be hardly different for a Web MVC application).
    In this Swing GUI, the View is an Observer of the Model, hence your update() method, correct?
    Indeed you don't have to apply this blindly : you may very well have each model have its own Observer interface; indeed in the Java world, an Observer is usually implemented as a "Listener" idiom, which provides more strongly typed notification methods.
    So you can have your ModelA notify a (set of) ModelAListener object where ModelAListener is an interface providing a modelAUpdated(ModelA model), same for ModelB and ModelC.
    Then your view ony has to implement ModelAListener, ModelBListener, ModelCListener, and provide model-specific code in each model-specific method modelAUpdated(ModelA), modelBupdated(ModelB), modelCUpdated(ModelC).
    SO when the ModelC instance is updated, it invopkes it's listener's modelCUpdated(ModelC) method, which only takes care of ModelC's changes.
    All 3 methods could even have the same name modelUpdated(...) or update(...), with a different type of parameter each, the overloading specifying which Model has changed (but IMHO this would go against clarity of the code).

  • Insert or Update method - removed from Web Services v2.0?

    Was the "insert or update" method on standard objects taken out of Web Services v2.0 for a reason? Is there an equivalent of this functionality in Web Services v2.0?
    Thanks,
    -Kevin

    Hello,
    You can make use of the Execute method in WS 2.0 as an alternate, but if you are looking out for InsertOrUpdate Functionality u have to use WS 1.0.

  • Conversion from awt to Swing, colored list widget, and awt update() method

    Now that my Interactive Color Wheel program/applet is in Swing, I guess I should continue my previous thread in here from the AWT forum ("list widget with different colors for each list item?"):
    * list widget with different colors for each list item?
    My current issue involves two canvas (well, JPanel) refresh issues likely linked to double buffering. You can see them by running the following file with "java -jar SIHwheel.jar":
    * http://r0k.us/rock/Junk/SIHwheel.jar
    [edit add]
    (Heh, I just noticed Firefox and Chrome under Windows 7 will allow you to run thie .jar directly from the link. Cool.)
    [edit]
    If you don't trust me and would rather run it as an applet, use:
    * http://r0k.us/rock/Junk/SIHwheel.html
    (For some reason the first issue doesn't manifest when running as applet.)
    1) The canvas goes "wonky-white" when the user first clicks on the wheel. What is supposed to happen is simply the user sees another dot on the wheel for his new selected color. Forcing a complete redraw via any of the GUI buttons at the bottom sets things right. The canvas behaves itself from then on, at least until minimized or resized, at which point one needs to click a GUI button again. I'll be disabling resizing, but minimizing will still be allowed.
    2) A button image, and sometimes toolTip text, from an entirely different JPanel will appear in the ULC (0,0) of my canvas.
    Upon first running the new Swing version, I had thought everything was perfect. I soon realized though that my old AWT update() method was never getting called. The desired case when the user clicks somewhere on the wheel is that a new dot appears on his selected color. This usually allows them to see what colors have been viewed before. The old paint(), and now paintComponent(), clear the canvas, erasing all the previous dots.
    I soon learned that Swing does not call update(). I had been using it to intercept refresh events where only one of the components on my canvas needing updating. Most usefully, don't redraw the wheel (and forget the dots) when you don't need to. The way I chose to handle this is to slightly modify the update() to a boolean method. I renamed it partialOnly() and call it
    at the beginning of paintComponent(). If it returns true, paintComponent() itself returns, and no clearing of the canvas occurs.
    Since I first posted about these two issues, I've kludged-in a fix to #1. (The linked .jar file does not contain this kludge, so you can see the issue.) The kludge is included in the following code snippet:
        public void paintComponent(Graphics g)
            Rectangle ulc;
         if (font == null)  defineFont(g);
         // handle partial repaints of specific items
         if (partialOnly(g))  return;
            ...  // follow with the normal, full-canvas refresh
        private boolean partialOnly(Graphics g)
         boolean     imDone = true;
         if (resized > 0)  // this "if { }" clause is my kludge
         {   // should enter on 1 or 2
             imDone = false;
             resized += 1;     // clock thru two forced-full paints
             if (resized > 2)  resized = 0;
            if (wedgeOnly)
             putDotOnWheel(g);
                paintWedge(g);
             drawSnake(g);
             drawSatSnake(g);
             updateLumaBars(g);
                wedgeOnly = false;
              else if (wheelOnly)
                wheelOnly = false;
              else
                imDone = false;  // was paint() when method was update() in the AWT version
            return(imDone);
        }Forcing two initial full paintComponent()s does whatever magic the double-buffering infrastructure needs to avoid the "wonky-white" problem. This also happens on a minimize; I've disabled resizing other than minimization. Even though it works, I consider it a kludge.
    The second issue is not solved. All I can figure is that the double buffers are shared between the two JPanels, and the artifact buttons and toolTips at (0,0) are the result. I tried simply clearing the top twenty lines of the canvas when partialOnly() returns true, but for some reason that causes other canvas artifacting further down. And that was just a second kludge anyway.
    Sorry for being so long-winded. What is the right way to avoid these problems?
    -- Rich
    Edited by: RichF on Oct 15, 2010 8:43 PM

    Darryl, I'm not doing any custom double buffering. My goal was to simply replicate the functionality of awt's update() method. And yes, I have started with the Swing tutorial. I believe it was there that I learned update() is not part of the Swing infrastructure.
    Problem 1: I don't see the effect you describe (or I just don't understand the description)Piet, were you viewing the program (via the .jar) or the applet (via the .html)? For whatever reason, problem 1 does not manifest itself as an applet, only a program. FTR I'm running JDK/JRE 1.6 under Windows 7. As a program, just click anywhere in the wheel. The whole canvas goes wonky-white, and the wheel doesn't even show. If it happens, you'll understand. ;)
    Are you aware that repaint() can have a rectangle argument? And are you aware that the Graphics object has a clip depicting the area that will be affected by painting? You might use these for your partial painting.Yes and yes. Here is an enumeration of most of the update regions:
    enum AoI    // areas of interest
        LUMA_SNAKE, GREY_SNAKE, HUEBORHOOD, BULB_LABEL, LUMA_WEDGE,
        LAST_COLOR, BRIGHTNESS_BOX, INFO_BOX, VERSION,
        COLOR_NAME, EXACT_COLOR, LUMA_BUTTON, LUMA_BARS, GUI_INTENSITY,
        QUANTIZATION_ERROR
    }That list doesn't even include the large color intensity wedge to the right, nor the color wheel itself. I have a method that will return a Rectangle for any of the AoI's. One problem is that the wheel is a circle, and a containing rectangle will overlap with some of the other AoI's. I could build an infrastructure to handle this mess one clip region at a time, but I think it would add a lot of unnecessary complexity.
    I think the bigger picture is that, though it is now updated to Swing, some of the original 1998 design decisions are no longer relevant. Back then I was running Windows 98 on a single-core processor clocked at significantly less than 1 GHz. You could actually watch the canvas update itself. The color wheel alone fills over 1000 arcs, and the color intensity wedge has over 75 update regions of its own. While kind of interesting to watch, it's not 1998 any more. My multi-core processor runs at over 2 GHz, and my graphic card is way, way beyond anything that existed last century. Full canvas updates probably take less than 0.1 sec, and that is with double-buffering!
    So, I think you're right. Let the silly paintComponent() do it's thing unhindered. If I want to track old dots on the wheel, keep an array of Points, remembering maybe the last 10. As a final step in the repainting process, decide how many of those old dots to display, and do it.
    Thanks, guys, for being a sounding board.
    Oh, I'm moving forward on implementing the color list widget. I've already added a 3rd JPanel, which is a column to the left of the main paint canvas. It will contain 3 GUI items:
    1) the color list widget itself, initially sorted by name
    2) 3 radio buttons allowing user to resort the list by name, hue, or hex
    3) a hex-entry JTextField (which is all that is there at this very moment), allowing exact color request
    The color list widget will fill most of the column from the top, followed by the radio buttons, with hex-entry at bottom.
    For weeks I had in mind that I wanted a pop-up color list widget. Then you shared your ColorList class, and it was so obvious the list should just be there all the time. :)
    -- Rich

  • Problem with update method

    import java.awt.*;
    import java.applet.Applet;
    public class graphplotter extends Applet
    public void init()
    repaint();
    public void update(Graphics g)
    g.drawRect(0,100,100,100);
    g.drawLine(50,100,50,200);
    g.drawLine(0,150,200,150);
    this code above does not draw the rectangle and line
    automatically when the applet loads.
    how to rectify this.

    i used the update method because i wanted to add new images to the existsing background image.if i use the paint method the even the existing backgroung image again has to be painted again.

  • Payment type and payment method

    Can anyone let me know what is payment type "S"?
    Is payment type and payment method one and the same?
    Thanks
    Shravan

    Hi,
    In addition to the SAP standard payment methods defined, each Company will set up Payment Methods as per their Business requirements. Payment Method "S" is defined by your company. You can check the description in the same transaction code OBVU.
    Thanks
    Murali.

  • 2 types of communication method assigned to 1 Vendor Master Record?

    Hi,
    Do you know if it is possible to have 2 different types of communication methods assigned to 1 vendor master record?  i.e. I want to be able to send out remittance advices via email but send the purchase orders via XML?  The XML is the primary communication method.
    Thanks
    Sarah

    First of all do not post your query in Cap's.
    The field selection is based on the account group
    the XK01 will create the vendor for Purchasing data as well as company code data
    OMSX - to control the data based on the Tcode
    XK01= centrally
    MK01= Purchasing

  • Which update method to use???

    Hi all,
    Our client has an average of 1000 sales orders per day.
    Which update method will be the best for such a scenario and why?
    Please suggest.
    Cheers
    Jayashree

    Obviously Delta Update.
    Whenever you have a regular postings in the source system, it is always advised to go for Delta update instead of Full update.
    If you go for Full update, day-by-day the number of records will increase and yr data load performance will be badly affected.
    In case of Delta, only the changes will be captured and load perofrmance will be consistent.
    Regards,
    Balaji V

  • Movement type for updating RG1 register.

    Hi Gurus!
    i want to transfer material from "Returned Blocked stock" to "Unrestricted stock"(Storage location X to Storage location Y)
    Storage location X :-For Returned from customer Blocked Stock
    to Storage location Y:- For Unrestricted Stock
    what is the movement type which will update RG1 register? while transferring stock from storage location to storage location.
    Regards,
    Amol
    Edited by: Amol Tamhane on Feb 26, 2009 2:45 PM

    Hi,
    Go to logestic general-tax on goods movement-India- Buisiness transaction - specify which movement type involves excise invoice. Here for 311 or 313/315 movement type select update RG1 register.
    Hope this will help you
    Regards
    Mahesh

  • How to make update method permanent once and forever?

    Hi,
    Every time I get an update to Flash and install it, at the end of the install I get the three update choices of ‘Allow Adobe to install updates (recommended)’, ‘Notify me to install updates’ and ‘Never check for updates (not recommended)’. Every time I choose the second option and every single subsequent time there is an update I have to go through the same procedure again because the first option becomes selected. I do NOT want Adobe to perform automatic updates. Is there a way to set it to notify me of updates but never bug me to change my update method? I have tried changing the setting through the Control Panel but this doesn’t make any difference either. I just want to be notified of updates but not be pestered with those same three options EVERY time.

    This answer is NOT working. The line "SilentAutoUpdateEnable=0" is already present. And it still queries for the annoying question, even when asked and answered ad nauseum.
    Adobe should in the very next update, as a minimum, make it such, that the chosen value in "Choose your update method:" remains PERMANENT and FOR EVER until the user changes it. It is WILDLY annoying to have to answer this question over and over and over and over and over and over again. Make a new value or something that will be written to the mms.cfg file, that will permanently understand this setting, I Want to update, but I want to know when and how and why, and I especially want to do it myself - Automatic updates can for novice users be nice, until it screws up the entire system - but for super user level or above it is an annoyance, that programs do not respect the answers of the user. It SHOULD ask this question ONCE, and never ever there after - unless the user changes the behaviour, in e.g. the mms.cfg file.
    I hope this is crystal clear --- it should be, and I cannot fathom that millions of other users are not annoyed by this popup box ... When i press "DONE" ... it should be EXACTLY THAT - notify me to install updates, BUT NOT to ask it every time what "update method" i want to use -- i've only told you a million times before --- just freaking get the answer and understand it.
    Annoyed regards : CyberstormXIII

  • Early delta initialization and update methods

    Hi gurus
    Can we use EDI with "queued delta" as update method?
    If yes where we need to do that setting and if no then would you pl tell me which functionality we need to use in infopkg to load delta from R/3 with Queued delta as a update method?
    Pl help to understand this.
    Thanks

    In the 'update' mode in your infopackage, if you see an 'early delta init' option, you can use it for that datasource (for queued or any other delta). This is where you choose to run an 'early delta init'.

  • Update methode in model-view-controller-pattern doesn't work!

    I'm writing a program in Java which contains several classes. It must be possible to produce an array random which contains Human-objects and the Humans all have a date. In the program it must be possible to set the length of the array (the number of humans to be produced) and the age of the humans. In Dutch you can see this where is written: Aantal mensen (amount of humans) and 'Maximum leeftijd' (Maximum age). Here you can find an image of the graphical user interface: http://1.bp.blogspot.com/_-b63cYMGvdM/SUb2Y62xRWI/AAAAAAAAB1A/05RLjfzUMXI/s1600-h/straightselectiondemo.JPG
    The problem I get is that use the model-view-controller-pattern. So I have a model which contains several methodes and this is written in a class which inherits form Observable. One methode is observed and this method is called 'produceerRandomArray()' (This means: produce random array). This method contains the following code:
    public void produceerMensArray() throws NegativeValueException{
         this.modelmens = Mens.getRandomMensen(this.getAantalMensen(), this.getOuderdom());
    for (int i = 0; i < this.modelmens.length; i++) {
              System.out.println(this.modelmens.toString());
    this.setChanged();
    this.notifyObservers();
    Notice the methods setChanged() and notifyObservers. In the MVC-patterns, these methods are used because they keep an eye on what's happening in this class. If this method is called, the Observers will notice it.
    So I have a button with the text 'Genereer' as you can see on the image. If you click on the button it should generate at random an array. I wrote a controller with the following code:
    package kristofvanhooymissen.sorteren;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    /**Klasse GenereerListener.
    * @author Kristof Van Hooymissen
    public class GenereerController implements ActionListener {
         protected StraightSelectionModel model;
         /**Constructor.
         *@param model Een instantie van het model wordt aan de constructor meegegeven.
         public GenereerController(StraightSelectionModel model) {
              this.model = model;
         /**Methode uit de interface ActionListener.
         * Bevat code om de toepassing te sluiten.
         public void actionPerformed(ActionEvent arg0) {
         this.model=new StraightSelectionModel();
         try{
         this.model.produceerMensArray();
         } catch (NegativeValueException e){
              System.out.println("U gaf een negatieve waarde in!");
         this.model.setAantalMensen((Integer)NumberSpinnerPanel.mensen.getValue());
         this.model.setOuderdom((Integer)NumberSpinnerPanel.leeftijd.getValue());
    StraighSelectionModel is of course my model class. Nevermind the methods setAantalMensen and setOuderdom. They are used to set the length of the array of human-objects and their age.
    Okay. If I click the button my observers will notice it because of the setChanged and notifyObservers-methods. An update-methode in a class which implements Observer.
    This method contains the follow code:
    public void update(Observable arg0,Object arg1){
              System.out.println("Update-methode");
              Mens[] temp=this.model.getMensArray();
              for (int i = 0; i < temp.length; i++) {
                   OnbehandeldeLijst.setTextArea(temp[i].toString()+"\n");
    This method should get the method out of the model-class, because the produceerRandomArray()-methode which has been called by clicking on the button will save the produce array in the model-class. The method getMensArray will put it back here in the object named temp which is an array of Mens-objects (Human-objects). Then aftwards the array should be put in the textarea of the unsorted list as you could see left on the screen on the image.
    Notice that in the beginning of this method there is a System.out.println-command to print to the screen as a test that the update-method has been called.
    The problem is that this update method won't work. My Observable class should notice that something happened with the setChanged() and notifyObservers()-methods, and after this the update class in the classes which implement Observer should me executed. But nothing happenens. My controllers works, the method in the model (produceerRandomArray() -- produce random array) has been executed, but my update-method won't work.
    Does anyone has an explanation for this? I have to get this done for my exam an the 5th of january, so everything that could help me would be nice.
    Thanks a lot,
    Kristo

    This was driving me nuts, I put in a larger SSD today going from a 120GB to a 240GB and blew away my Windows Partition to make the process easier to expand OS X, etc.  After installing windows again the only thing in device manager that wouldn't load was the Bluetooh USB Host Controller.  Tried every package in Bootcamp for version 4.0.4033 and 5.0.5033 and no luck.
    Finally came across this site:
    http://ron.dotsch.org/2011/11/how-to-get-bluetooth-to-work-in-parallels-windows- 7-64-bit-and-os-x-10-7-lion/
    1) Basically Right click the Device in Device manager, Go to Properties, Select Details tab, Choose Hardware ids from Property Drop down.   Copy the shortest Value, his was USB\VID_05AC&PID_8218 
    2) Find your bootcamp drivers and under bootcamp/drivers/apple/x64 copy AppleBluetoothInstaller64 to a folder on your desktop and unzip it.  I use winrar to Extract to the same folder.
    3) Find the files that got extracted/unzipped and open the file with notepad called AppleBT64.inf
    4) Look for the following lines:
    ; for Windows 7 only
    [Apple.NTamd64.6.1]
    ; No action
    ; OS will load in-box driver.
    Get rid of the last two lines the following:
    ; No action
    ; OS will load in-box driver.
    And add this line, paste your numbers in you got earlier for USB\VID_05ac&PID_8218:
    Apple Built-in Bluetooth=AppleBt, USB\VID_05ac&PID_8218
    So in the end it should look like the following:
    ; for Windows 7 only
    [Apple.NTamd64.6.1]
    Apple Built-in Bluetooth=AppleBt, USB\VID_05ac&PID_8218
    5) Save the changes
    6) Select Update the driver for the Bluetooth device in device manager and point it to the folder with the extracted/unzipped files and it should install the Bluetooth drivers then.
    Updated:
    Just found this link as well that does the same thing:
    http://kb.parallels.com/en/113274

  • "Direct Delta" Update Method - Why need for Collective update

    Hi folks,
    I have been going through LO Cockpit in detail and read quite extensively about new update methods and still have one doubt.
    1)Why there is "Job control" for "Direct Delta" Update method in LO Cockpit?.
    If I understand Direct Delta correctly, Application data is directly posted to Delta Queue by SAP Update management using V1 and when the Delta request comes from BW it is read from the Delta queue. So...
    2)why bother about collective run and
    3)where exactly are we going to collect from - there is no intermediate storage like extraction Q or update tables?
    One more question. I noticed that Delta queue is a stopped qRFC. what does this mean?

    Hi Jay,
    These questions have been answered by Roberto Negro in full detail of his 3 episode Blog...
    Please read his blog.
    Click Weblogs above and search for Roberto Negro.
    --Jkyle

  • Message type and IDoc type to update a sales order

    I can create sales order at WE19 by the message type SALESORDER_CREATEFROMDAT2 and IDoc type SALESORDER_CREATEFROMDAT202 . Can I use the same message type and IDoc type to update a sales document (sales order) and also how can I do (I mean, which structures should I use; at E1BPSDHD1X - UPDATEFLAG what should I enter? Put an X to update a document or etsc?)? I enter the "E1BPSDHD1X - UPDATEFLAG" as X, "E1BP_SENDER - LOG_SYSTEM", "E1BPSDITM - ITM_NUMBER", " E1BPSDITM - MATERIAL", "E1BPPARNR - PARTN_ROLE", "E1BPPARNR - PARTN_NUMB" and "E1BPSCHDL - REQ_QTY". The sales order quantity is at "E1BPSCHDL - REQ_QTY" and it is the field that I want to update. When I look at the transaction code BD87, I see the status text as "Enter a document number between 0005000000 and 0005999999". I cannot update the order. How can I update it? Canybody explain me in a detailed manner?
    Thanks in advance....
    Edited by: Hikmet Akcali on Oct 21, 2009 4:00 PM

    At the IDoc type pop-up selection, there are 3 types. These are: ORD_ID01, ORDERS05 and /NFM/ORDERS05. SAP system component version is SAP ECC 6.0 . I choose ORD_ID01. There are structures EDI_Z1, EDI_Z3, EDI_Z5, EDI_Z9 and EDI_Z53. Where should I enter the number of the sales document to be updated? Also, which function module should I choose?
    Edited by: Hikmet Akcali on Oct 21, 2009 5:34 PM

Maybe you are looking for

  • Print to Video Does not Work

    I am running Final Cut pro 5. I am trying to send my time line to a mindv deck using print to video. I have a monitor hooked up to the deck to watch what is being recorded. I set my in and out points in the time line and and select print to video fro

  • Are these Standard and Customized elements???

    Hello friends, I am trying to duplicate the work of a consultant who is not working for us any more. I have copy and pasted the ZBAPIS and other data elements, structures etc., When I try to activate I am getting some messages like some of the struct

  • Down Payment in Deferred Service tax Scenario

    Hello all Has any1 come across a scenario where there is a Down Payment reciept from the customer, then an invoice is raised for the same and clearing is done and the balance amount is recieved from the customer in F-28. Then the T.Code S_AC0_5200064

  • Reusing the job in odi 11.1.1.3

    Hi All, We have created an interface between a source table and target table. Now with the same source table, we have the same target table(same coulmn names etc) in three different databses. How can I reuse this interface/job. Do I need to recreate

  • Ole, attaching a word document in forms6i

    Hi everyone, I am planning to attach a word document using an ole container in a blob database item in oracle 6i forms environment. I was able to do it but when a word document is opened i was not able to restrict few users from editing the word.(All