Transfer posting from one plant to another plant

Friends i want to transfer goods from one plant to another plant of same company code and iam trying this one in transaction migo if post for this it gives an error
      "posting only possible in periods 2006/05 and 2006/04 in company code" what error it is

Hi,
Use the MMPV to open the new posting period date.
here you have to use your company code & Current date , then execute to open the new posting period.
while running this transaction you ensure that GR open screen should be closed.
hope it helps....
manoj Singh

Similar Messages

  • How can we transfer stock from one vendor to another vendor?

    Dear Gurus,
    How can we transfer stock from one vendor to another vendor?
    pls tell the steps to follow..
    Thanks..

    This is the Normal Third Party Sub Contracting
    Follow these steps
    If components to be provided to a vendor are supplied not by your company but by a third-party, you can order the components from the third-party and specify the subcontractor in the purchase order as the delivery address. At goods receipt the components are posted directly to the stock of the material provided to vendor.
    Entering a Purchase Order for Components
    To order components for a subcontract order from a vendor and have them delivered direct to the subcontractor, enter a standard purchase order with a different delivery address:
    From the Purchasing menu, choose Purchase order ® Create ® Vendor known.
    Maintain the data on the initial screen. Make sure you enter the vendor of the components and the plant concerned.
    Enter the items.
    Then choose Item ® More functions ® Delivery address.
    A dialog box appears in which you enter the delivery address.
    In the field Vendor enter the number of the subcontractor and select the SC vendor box.
    Selecting the box causes the components at goods receipt to be posted directly to the stock of the material provided to vendor when the goods receipt is posted.
    Save the purchase order.
    Posting the Goods Receipt of the Components
    If the subcontractor lets you know that the components have arrived, you can enter the goods receipt for the purchase order. The components are posted directly to the stock of the material provided to vendor.
    Stock Update
    A goods receipt posting has the following results in the system:
    the stock of material provided to vendor at plant level is increased. The stock of material provided to vendor is not managed at storage location level, since the stock is no longer stored at your company.
    Valuated stock at plant level increases.
    Documents
    An accounting document is created for the material document.
    After this normal subcontracting order for finished product.

  • How do i transfer music from one account to another?

    I want to transfer music from my account to my friends account, how do i do that?

    You can't transfer content from one account to another.

  • How can I transfer work from one computer to another?

    How can I transfer work from one computer to another?

    Welcome to the forum.
    I can think of three basic ways to accomplish what you wish to do:
    Use the Project Archiver to archive your Project (and check the box to gather the media files), to an external HDD. Probably the easiest way to do it.
    Copy the Project and ALL media files to an external HDD, but be prepared to relink the media files to the Project, as the drive letter (part of the Absolute Path) will have changed.
    Edit loosely, and Share to an AV file, which will be Imported into a New Project on that second computer. Or, edit VERY tightly, and do the same. I like the first, as removing, replacing Transitions, etc., can be much more difficult, unless that "tight edit" is 100% done.
    Good luck,
    Hunt
    Message was edited by: Bill Hunt to correct formatting

  • How can I transfer information from one ipad to another?

    how can I transfer information from one ipad to another ?

    What kind of information? You can sync things like Contacts and Calendars by using iCloud. You can backup one iPad to iTunes on a computer and then sync the backup to the other iPad. You can configure your iTunes content and sync the same content to both iPads.
    It is based on what you want to do. Or are you looking for a way to send files from one iPad to another wirelessly? There are apps to do things like that, as well as cloud services, such as DropBox.

  • Can i transfer music from one ipod to another?

    Can i transfer music from one ipod to another?

    No. You can only do it via iTunes or by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Can i transfer everything from one ipad to another so both have exactly the same things

    Can i transfer everything from one ipad to another so both have exactly the same things?

    Yes. Copy your apps and other iTunes purchases/downloads to your computer's iTunes via File > Transfer Purchases (File > Devices > Transfer Purchases if you have iTunes 11 on your computer), then backup up the first iPad and restore that backup onto the second iPad.
    Backups and restores : http://support.apple.com/kb/HT4079
    Things that aren't included in a backup include the contents of the Music and Videos apps (but they should be on your computer's iTunes) and photos that were synced from a computer. Also you will need to enter your passwords (email, wifi, website) on the second iPad - they won't be restored onto a different device, only back onto the device that the backup came from.

  • Can I transfer pictures from one iPad to another without going over iTunes?, can I transfer pictures from one iPad to another without going over iTunes?

    can I transfer pictures from one iPad to another without going over iTunes?, can I transfer pictures from one iPad to another without going over iTunes?

    Yes, use 3rd party apps like Photo Transfer App.
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%205/69507ce7f854c405f54 77bea99f4d498.jpg
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%205/79b3173fda7b6a6e148 5b463198f6acf.jpg

  • Can I transfer info from one macbook to another by using a firewire cable?

    Can I transfer info from one mac to another by using a firewire cable?

    You can boot the computer that you would like to get the file from into target disk mode.
    This document will help you.
    http://docs.info.apple.com/article.html?path=Mac/10.6/en/8443.html

  • HT5035 How do I transfer credit from one account to another?

    How do I transfer credit from one account to another.  I have 2 IDs because we have a lot of devices.  I want to transfer credit from one Apple ID to another Apple ID.

    You don't.
    (72323)

  • HT201209 Can I transfer money from one account to another?

    Can I transfer money from one account to another?

    No; if the balance includes a completely unspent gift card, the iTunes Store staff can put that money back onto it.
    (96104)

  • Transfer data from one database to another without identities but keep the relation b/w PK and Foreign key

    Hi,
    I need to transfer data from one database to another database (both are identical databases). 
    1. Not transferring identity columns (primary keys). the destination table might have the same key.
    2. keep the PK's and FK's relation b/w parent and child table
    3. I have 4 levels 
    Example: tableA (col1 int identity(1,1) , col2, col3)
    tableB (col1 int identity(1,1) ,
    col2 , col3) -- col2 has the foreign key relation with tableA.col1
    tableC (col1 int identity(1,1) ,
    col2, col3) -- col2  has the foreign key relation with tableB.col1
    tableD (col1 int identity(1,1) , col2, col3) -- col2  has the foreign key relation with tableC.col1
    please advise me.
    Thanks in advance

    Try the below:
    /********************************SAMPLE TARGET***************************************************************/
    Use MSDNSamples
    create table TableA(LevelValueId int identity(1,1) primary key, name varchar(100))
    Insert into TableA(name) Select 'R1'
    Insert into TableA(name) Select 'R2'
    create Table TableB(ChildId int identity(100,1),name varchar(100), LevelValueID int references TableA(LevelValueId))
    Insert into TableB(name,LevelValueID) Select 'Childname1',1
    /********************************SAMPLE TARGET***************************************************************/
    /********************************SAMPLE SOURCE***************************************************************/
    Use Sample
    create table TableA(LevelValueId int identity(1,1) primary key, name varchar(100))
    Insert into TableA(name) Select 'C1'
    Insert into TableA(name) Select 'C2'
    create Table TableB(ChildId int identity(100,1),name varchar(100), LevelValueID int references TableA(LevelValueId))
    Insert into TableB(name,LevelValueID) Select 'Kidname1',1
    /********************************SAMPLE SOURCE***************************************************************/
    USe MSDNSamples
    /********************************MIGRATION INTERMEDIATE TABLE***************************************************************/
    --Migration table
    Create table Mg_TableA(LevelValueId int, NewValueId int)
    /********************************MIGRATION INTERMEDIATE TABLE***************************************************************/
    /********************************ACTUAL MIGRATION FOR MASTER TABLE***************************************************************/
    MERGE INTO TableA
    USING sample.dbo.TableA AS tv
    ON 1 = 0
    WHEN NOT MATCHED THEN
    INSERT(name) Values(tv.name)
    Output tv.levelValueId ,inserted.LevelValueid INTO
    Mg_TableA;
    /********************************ACTUAL MIGRATION FOR MASTER TABLE***************************************************************/
    /********************************ACTUAL MIGRATION FOR CHILD TABLE***************************************************************/
    Insert into TableB (name,LevelValueID)
    Select A.name,B.NewValueId From sample.dbo.TableB A
    Inner join Mg_TableA B on A.LevelValueID = B.LevelValueId
    /********************************ACTUAL MIGRATION FOR CHILD TABLE***************************************************************/
    /********************************TEST THE VALUES***************************************************************/
    Select * From TableA
    Select * From Mg_TableA
    Select * From TableB
    /********************************TEST THE VALUES***************************************************************/
    Drop table TableB,Tablea,Mg_TableA
    Use Sample
    Drop Table TableB,Tablea

  • How do I transfer music from one computer to another with ratings?

    How do I transfer music from one PC to another along with the ratings and # plays?

    Refer to these articles:
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    iTunes: Back up your iTunes library by copying to an external hard drive
    http://support.apple.com/kb/HT1751

  • Can you transfer music from one ipad to another

    can you transfer music from one ipad to another??

    Are you trying to share music with a friend or are you putting music from an old ipad to a new one?

  • How do i transfer music from one phone to another

    how do i transfer music from one phone to another? i cannot get it to stay on itunes

    You don't.  It's a one-way sync itunes to iphone.

  • How do i transfer apps from one device to another?

    how do i transfer apps from one device to another?

    Correct, but if you have your apps and app settings set to sync with your Google Account, they should have the data with them.

Maybe you are looking for

  • How to determine category of business partner with BAPI?

    Hello guys, I want to read the partnercategory from a businesspartner using JCo to access the BAPI. I tried to use BAPI_BUPA_CENTRAL_GETDETAIL, but I cannot find a category field in the export parameters/tables. (Like the partnercategory field in the

  • Procedure to uninstall and reinstall Photoshop cc2014

    I need to uninstall and reinstall Photoshop cc2014 on Windows 7 64 bit.  Should I "sign off" then uninstall using windows uninstall, then reinstall using Creative Cloud? Photoshop suddenly crashed.  When I restart Photoshop and try to open a image fi

  • RoboHelp 7.0.3 looking for CWDLL32.dll?

    When I run RoboHELP 7.0.3 I get a dialog box stating, "This application has failed to start because CWDLL32.dll was not found. Re-installing the application may fix this problem." I completely uninstalled and reinstalled the app, same thing. Any idea

  • Tomcat Startup problems using eclipse

    Hello together! I want to create a JSP page in eclipse. I use eclipse-wtp-1.0 and tomcat 5.5.12. I have set the JAVA_HOME, TOMCAT_HOME and CATALINA HOME. I included this 2 directories in eclipse. But now I get the following error: 23.02.2006 08:37:31

  • How do i turn off auto-correct of numbers?

    I am trying to set fractions in my table example "50/100" but it auto reducces it to 25/50. can i turn this off? Thanks!