Automatic  move ment types

hi to all
plz explain my doubt
Which scenario ,  Automatic movements 641,643, 645, 647 will come?
Plz explain each case ?
what are the procedures for one step and two step scenarios?
thanks and regards
ravi

Dear Ravi,
These movements are related to Stock Transfers through SD route. When you do PGI ( Post Goods Issue), in the back ground these movement types trigger based on one step & two step.
One step is: the stock is removed from issued planr & get updated in in receiving plant as soon as you do the PGI.
Two Step: The stock is removed from issue plant sfter PGI and it will show in reports as "Stock in Transit" . Then when the material is received at receiving plant then that stock has to be taken with 101 mvt. Then only that stock stock get updated in receivng plant.
Two-step procedure to to track stock when it in transport.
Hope you it solves your query, if any more clarification please ask.
If this solves your query, please close the issue.
With Regards,
Krishna reddy

Similar Messages

  • QM _Inspection Lot Creation with Move ment type-542

    Dear All,
    The Business Scenario is when ever goods received from  Sub contracting vendor with out any processing by 542 movement type the system should create the Inspection lot automatically.
    How can achive this function?
    Your inputs are valuable.
    Regards,
    Manis

    IMG - Quality management - Quality Inspection - Inspection lot creation - Inspection for goods movements..
    You have to add new entry for movement type 542..
    complete help is available there..
    Also you have to activate the related inspection type in QM view in material master.
    You can try this in development server. (I am also not an expert in this area).
    Regards,
    Amol

  • Third Party Sale- Move ment type

    Hii,
         In third party sale, when e do MIGO what is the movement type we should take. (in case of individual purchase order scenario we take Mov type as 101, where actually we are taking goods into our stock and then delivering it to our customer) but in Third party vendor directly supplies to customer. But he sends an acknowledgement to the company and we do MIGO & MIRO and then directly raise an invoice with ref to order but quantity as per delivery ( billing rev -F). So my doubt is wat movement type we should be taking for thirdparty sale when we do MIGO. (this is only for reference, actually there is inward movement of goods into our stock as the vendor supplies it directly to customer).
    Thanks

    Dear Venkat Rao,
    A small search on SDN SD forum will help you to answer your query. 
    http://help.sap.com/saphelp_46c/helpdata/en/e6/4a78e39e0311d189b70000e829fbbd/content.htm
    THIRD PARTY SALES
    http://www.sap-img.com/sap-sd/process-flow-for-3rd-party-sales.htm
    http://www.sap.com/services/pdf/BWP_SAP_Best_Practices_for_Wholesale_Distribution.pdf
    3rd party biling
    http://www50.sap.com/businessmaps/65045A20075E4CFD89DB030BC1C556AD.htm
    http://www.saptechies.com/process-flow-for-3rd-party-sales/
    Hope this helps you.
    Do award points if you found them useful.
    Regards,
    Rakesh

  • Acconting doc.  for move ment type-501 & trading material

    Dear cons
        If we receive the material through 501 Which accounting document will hit. Also pl. give process for trading material ( hawa). which accounting will hit for HAWA material type.
    nrk

    Hi
    It entirely depends on whether the material type is maintained as value update in OMS2
    If the material type has a value update then follwoing accounting entries are passed during 501
    Stock acc Dr
    Clearing account Cr
    The material will be valuated at Price maintained in Material master
    If the material type doesnot have a value update then  accounting documnets will not be generated.
    Regards
    Sandeep

  • Move ment types

    Hi to all
    me ravi kumar
    i have doubt
    what is difference between 102 and 162?
    pl explain
    thank u
    with regards
    ravi kumar

    Hi Ravi
    102 is used to reverse the results of mvt type 101 i.e. you are taking material out of your inventory which results in decrease in value and qty of material in your stock.
    where as while using 162 you are taking material back into your inventory from vendor i.e. material value and qty increases using this mvt type.
    Regrds
    Yogesh

  • Move ment type

    hi to all
    i have one doubt. plz explain
    how to block movement?
    thanks
    ravi

    Hi,
    You can block all goods movements relating to a stock management unit for the purposes of a physical inventory.
    The system blocks all the stock management units of the relevant PI document by means of the posting block indicator in the PI document header. In the storage location view of the material master record, the physical inventory block indicator shows the value X (material blocked for movements due to physical inventory).
    For that you have to change mode of a physical inventory document, set the posting block indicator.
    Reward if useful
    Chandru.

  • Automatic movement type

    hi
    what are the configuration automatic movement type and tell me scenorioo.
    eg.i am not enter movement type.

    Hi,
    The movement types which will be assigned automatically are called automatic movement types.
    Eg. During doing Physical Inventory for Debits movement type 701 and for credits movement type 702 will trigger automatically.
    while PGI against sales order automatic movement type which will trigger will be 601
    while providing material to vendor ine ME2O the automatic movement type will trigger is 541
    and so on....
    bye
    sridhar thota

  • Scripting Movie Poster Type

    Hello Adobe Community,
    I wrote a script that "converts" all streaming videos to embedded videos; however, after I set each video's filePath, it loses its poster.  I have a line of code that is supposed to set the moviePosterType to the first frame of the movie:
    myPageItems[i].moviePosterType = 1298558310; //FROM_MOVIE
    where myPageItems[i] is an instanceof a Movie from my app.activeDocument.allPageItems
    Here is the bulk of the code and all of it appears to work, barring setting the movie poster type.
    function embedVideos() {
        var myFilePath = "the real file path would be here";
        var myDelimiter = "/";
        var myPageItems = app.activeDocument.allPageItems;
        var myUrlPath;
        var count = 0;
        for (var i = 0; i < myPageItems.length; i++) {
            if (myPageItems[i] instanceof Movie) {
                if (myPageItems[i].filePath) {
                } else {
                    myUrlPath = myPageItems[i].url;
                    myUrlPath = myUrlPath.split(myDelimiter);
                    myPageItems[i].filePath = myFilePath + myUrlPath[myUrlPath.length-1];
                    myPageItems[i].moviePosterType = 1298558310; //FROM_MOVIE
                    count++;
        } //end for-loop
        return alert(count + " videos will be converted to embedded.");
    } //end function embedVideos
    For debugging purposes, after each attempt to set the movie poster type, an alert() says the poster type is "NONE," unless I manually set the poster, then it will say "FROM_MOVIE."  My goal is to automatically set the movie poster type, otherwise someone would need to click on every video to set it.  Thanks in advance for any insight or ideas!

    I was thinking a possible solution would be to automate/script the process a user would normally complete through the menu system.  To set a poster to "From Current Frame," a user would open the Media panel, click on the "Poster:" drop-down, and select "From Current Frame."
    After looking through the available Menu Names and Menu Actions, the only handles I see available are "Media," "Video from URL...," and "PDF Options...."  Does anyone know if I can access the Media > Poster > From Current Frame option through scripting?
    Thanks for any ideas!

  • Is there a way to automatically move mail from one folder to another?

    Is there a way to periodically, automatically, move mail from one folder to another?
    For example, I'd like to move mail from one of my IMAP/Archives folders to my MyMac/Archive folder and I'd like this to happen without intervention.
    Can this be done?

    I'll try to be more specific.
    When I'm done with an email, I archive it.
    Because I have multiple email accounts, this results in emails in multiple Archive folders (one per account). 
    I'd like to have these automatically all moved into one (on my Mac).

  • Cursor automatically moves to the address bar when I open a new page

    Ever since I installed Firefox 4, when I open a new tab the typing cursor automatically moves to the address bar instead of the search engine bar. I have the tab mix plus addon. A solution appears to have been found for the same problem with the newtabhomepage addon, but since the two are not compatible with each other, I don't want to switch addons. Is there any way I can fix this?
    Thanks!

    If your using the 'New Tab Homepage' extension then this happens when you upgrade to Firefox.
    Open up Firefox and click on Ctrl+Shift+A to bring up the add on/extensions menu. Have a look in the Extensions bit for an Extension that has a version no of 0.4.3. if you have it then it needs uninstalling. Then download the new file from the mediafire link
    http://www.mediafire.com/?v1113g9noytswdv
    You will then be asked if you sure you want to install it and drag it on to the extensions page in Firefox.
    Once installed restart Firefox. Once restarted your homepage will load whenever you start a new tab.

  • How do I set up iTunes to automatically move on to play the next album after the last one has finished? (in Album view)

    How do I set up iTunes to automatically move on to / play the next album after the last one has finished? (in Album view).
    This used to happen automatically in Genre view.

    Hi Henryhippo,
    If you have questions about play order in iTunes, you may find the following article helpful; I believe you can use the Play Next or Add to Up Next to add albums as well as songs.
    iTunes 11 for Windows: Ways to play songs
    Regards,
    - Brenden

  • Automatically assign output type sale order

    Hi
    when i am creating sale order ..manually assign the out put type .every time ..it has taken to time process
    i need automatic assign output type to sale order..is it possible ..pls guide me in this issue could anyone.
    thanks&regards
    sesidhar

    Hi,
    It is 101 % possible through condition techniques.
    what is common or require to create sales order - Answer is Sales organization.
    Create condition table V/03
    Select fields Sales organization & document type etc.from field catlog
    genrate this table.
    Now go to access sequence V/07
    Create new or find which access is asigned to your OUT PUT CONDITION TYPE
    Assign this newly created table in that access
    Now assign this access to your out put condition type say std - BA00
    Now go for condition record maintenance VV11
    Put output condition >>> key combination >>> select sales organization & enter >>> maintain all data save.
    Now when ever u create sales order with the sales organization,then system automatically asign this output type to order.
    Kapil

  • Xy graph automatically moves down

    Hi,,,, I've got a problem. I have the XY graph and I would like the graph automatically moves down while running program. If u guys have ever seen the monitor of a roller testbench, Im working with a guidance system for a driver, using LabVIEW to create speed profile graph. I've manually done the examples by panning and PrtSc them as attached files.
     Any idea?
    Thanks
    Mannie
    Attachments:
    speed_profile.jpg ‏778 KB

    If I understand what you want to do, all you need to do really is switch the X and Y axes. Here's a quick example.
    Try to take over the world!
    Attachments:
    Vertical Chart.llb ‏47 KB

  • With Premiere elements 11, when Publish/Share (saving) a finished video, selecting H.264  .mov file type, what are the recommended Codec and Aspect settings for a crisp video and a small file size?

    With Premiere Elements 11, when Publish/Share (saving) a finished video, selecting H.264  .mov file type, what are the recommended Aspect and Codec settings , for a crisp video with a small file size?

    Gary Krouse
    We will customize a very detailed reply, but
    (a) What are the properties of your source media?
    (b) What did you or the program set as the project preset to match the properties of the source media?
    (c) What specific requirements do you have for this H.264.mov export file?
    File size can be a compromise between bitrate, file size, and quality.
    Thanks.
    ATR

  • Can we move char type data to packed decimal

    Hi
    can we move char type data to packed decimal??
    Thanks
    Devi

    Hi..
    that depends on the data in the character variable..
    if that character variable contains onli numbers then it is possible.
    <b>data c type c value '1'.
    data p type p.
    p = c.
    write p.</b>
    here the output is  1.
    If it contains even a single Alphabet , then it goes for a dump.
    <b>data c type c value 'A'.
    data p type p.
    p = c.
    write p.</b>
    here u will get a short dump.
    hope u understood.
    regards,
    sai ramesh

Maybe you are looking for

  • File Not Found error (-43) when trying to record

    Never had this problem in the past, and haven't used Logic in a few months, but every time i attempt to record, i get that message: File Not Found, Result code error -43 I am using the MBox 2 Pro as my record in, and Logic 6.4.3 Thanks for the help..

  • How to resize the column of alv depending upon the textbox settings in i.e

    Hi, I am using ALV component in one of my WD applications. ALV has a column date. If i resize the textbox from the internet explorer setting ( page->textsize in i.e.7) to anything greater than medium, the content of the columns is hidden. For example

  • Extraneous lines added to graphics when converting Word 2003 to Acrobat 7

    When I choose to print my Word 2003 document that includes an embedded .tif graphic to "Adobe PDF" in my printer list it successfully creates the .PDF file, but the graphic will consistently have a thin vertical line along its right hand side. I'm us

  • Packaging Output

    Hi All,    Wish you all a very very happy new year.What are the settings we will do so that we can see the output of packaging material..

  • How to get system date??

    hi,can anybody tell me how to get system date in essbase?? i want to use it in calc script..Ayan