Mvt type 313 Q via delivery not allowed

Hi,
We have a scenario in our priject where the material (project stock) has to be moved from a srorage location to the customer site which again has been defined as a storage location. For this we have enabled the stoarge location to storage location transfer stock transport order functionality. Now when I create a new STO (sloc to sloc transfer) document type UB a new delivery type XYZ to which mvt type 313 has been assigned gets determined properly. Then I create an o/b dely using Txn VL10B.
The problem starts here. When I try to do the GI I get the following error:
Update control of movement type is incorrect (entry 313 X X Q L _ P)
Message no. M7226
Diagnosis
The system could not find entry 313 X X Q L _ P in any of the movement type control tables.
Procedure
Cancel current processing.
Contact your system administrator.
Action to be taken by the system administrator
Check in Customizing for Inventory Management under Copy, Change Movement Types whether the entry is contained in the Update control view for the movement type.
If the entry is missing, proceed as follows:
For standard movement types, this means that the given process is not supported using the present data combination. Do not create any entries without prior arrangement with your SAP consultant. Otherwise, incorrect postings may result.
For customer-defined movement types (beginning with 9, X, Y, or Z), this may mean that they have not been fully defined. Delete the movement type and re-create it by copying a standard movement type.
This error is because of the mvt indicator L determined for which we do not have entry in update control in OMJJ. If I do this mvt 313Q and 315Q without a dely document it is allowed.
Is there any other way to work this out?  Is there a way to add entry 313 X X Q L - P to OMJJ update control?
We need to have the delivery document as the material is crossing country borders when it moves from one sloc to the other.
Regards,
V S

313 is a  manual movmement which does not even allow a Q special stock.
deliveries operate with automatic movements starting with a 6
641 Goods issue for a stock transport order (Shipping)
The quantity is transferred using a delivery in Shipping from unrestricted-use stock of the issuing plant to stock in transit of the receiving plant.
The goods receipt for the stock transport order takes place using movement type 101 and can, if required, refer to the purchase order or to the delivery. If a purchase order item is flagged as a returns item in the stock transport order, you can post the goods receipt of the returns in the issuing plant with movment type 671.
Possible special stock indicators:
E, Q
For the special stock indicators E and Q and for purchase orders assigned to an account, you must ensure that the quantity is not posted to the stock in transit of the receiving plant.

Similar Messages

  • Control delivery type for mvt type 313

    Hi
    Regarding SLOC to SLOC transfer postings, I have a couple of questions:
    Using movement type 313 (unr. use stock SLOC to SLOC) in our SAP system automatically creates a delivery in the background. Where can I configure what delivery type I would like to use for this purpose? Also, is there any settings I can do for ATP checks for this? I believe this is standard SAP functionality so a IMG menu path would be very much appreciated.
    Brgds,
    Lars

    Thanks.
    However, I am not sure that helped me very much.
    What we would like to do is to achieve a scenario where we move stock that is in QI and Blocked stock, in a similar way as with movement type 313. I am not even sure that is possible to do with a delivery? We use the deliery generated from movement type 313 to send with IDOC to one of our 3PL warehouses, managed by another company.
    When I look at it, I can find movement type 325 to move Blocked stock from one SLOC to another, but is it possible to do with a delivery (generated in the background)?
    Brgds,
    Lars

  • Transaction type 148: affiliated company indicator not allowed

    I am trying to create new transfer variant for intercompany asset transfers, but when saving I am getting error AC768 Transaction type 148: affiliated company indicator not allowed'.
    Interesting, transaction type 148 is not used in any of the existing transfer variants. Even if I don't change anything in any variant I am still getting this error message. I switched it off in t-code OBA5 (after adding it in OBMSG), but I am still getting that error message and I am not able to create new transfer variant.
    Is there any other option that to modify this transaction type 148? It is standard so I don't want to modify it.

    Hi,
    please go to transaction OABE and try to tick the Gross transfer indicator. kindly provide feedback if it solves your current error.
    Regards,
    otep

  • Has anyone been able to upload an ibooks file with audio only files (m4a) in it? I keep getting the following error message during the upload in iTunes Producer: ERROR ITMS-9000: "Files of type audio/x-m4a are not allowed outside of widgets.

    Has anyone been able to upload an ibooks file with audio only files (m4a) in it? I keep getting the following error message during the upload in iTunes Producer: ERROR ITMS-9000: "Files of type audio/x-m4a are not allowed outside of widgets. then it names the file as an m4p file. Everything works beautifully on the iPad through Preview, and validates through iTunes Producer up until the attempted upload. If you've been able to accomplish this, please let me know how you prepared your audio files. Many thanks.

    Hello Fellow iBook Authors!
    Today I received the same error that you all have been discussing.  I tried selecting the DRM
    and this did not work for me, though I'm glad it did for some.  Here's what I did as a work-around. . .
    Since iBooks Author did not have a problem with Videos, I simply used one of my video programs, ScreenFlow to turn the audio into a video file m4v.  I added an image and extended the length or timing of the image to span the length of the audio file.  Then exported as an .mov.  I then opened QuickTime and opened the file and exported the file to iTunes. 
    You can use iMovie, Camtasia or any other progam that will allow you to export the audio as a movie file.  Does this make sense?  I hope this helps, at least in the short-term.
    Michael Williams

  • Implicit Conversion from data type sql_variant to datetime is not allowed.

     Getting a odd error. This code was working perfectly before a SQLServer upgrade.
    The linked database is working, I'm able to pull up data from it in separate queries just fine.
    I'm getting the following error.
    Implicit conversion from data type sql_variant to datetime is not allowed. Use the CONVERT function to run this query.
    Invalid column name 'TotalDay'. (.Net SqlClient Data Provider)
    can anyone spot the issue? I've tried sever variations of the same code, but still get the same thing.
    If I put this section in a query by it self it works just fine.
    ( DATEDIFF(ss,
    CONVERT(VARCHAR(10),( SELECT TOP ( 1 )
    TimeDate
    FROM [nav].AcsLog.dbo.EvnLog AS X3
    WHERE UDF2 = E.No_
    AND CONVERT(VARCHAR(10), X3.TimeDate, 101) = CONVERT(VARCHAR(10), @sdate, 101)
    ORDER BY TimeDate ASC
    ),101),
    CONVERT(VARCHAR(10),( SELECT TOP ( 1 )
    TimeDate
    FROM [nav].AcsLog.dbo.EvnLog AS X4
    WHERE UDF2 = E.No_
    AND CONVERT(VARCHAR(10), X4.TimeDate, 101) = CONVERT(VARCHAR(10), @sdate, 101)
    ORDER BY TimeDate DESC
    ),101)) ) AS TotalDayBadge ,

    >ANDCONVERT(VARCHAR(10),X3.TimeDate,101)=CONVERT(VARCHAR(10),@sdate,101)
    It is not a good idea to use string dates for predicates in WHERE clauses.
    Use DATETIME or DATE in predicates.
    If you are not interested in the time part of DATETIME, use DATE datatype.
    Example:
    SELECT CONVERT(DATE, getdate());
    -- 2014-08-25
    Datetime conversions:
    http://www.sqlusa.com/bestpractices/datetimeconversion/
    Between dates:
    http://www.sqlusa.com/bestpractices2008/between-dates/
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • "Create Delivery" Not Allowed

    Hi,
    I have created an order, when I tries to do the delivery for this I
    gets the error : "Create Delivery" Not Allowed ( Sys.Status EXLS
    Object VB0000008166000010 ). If you need the screen shot, I will send that too.
    Can anybody help me on this, I am facing this issue from quite a long time.......
    Thanks in advance.

    Hi Naveen,
    Thought might help you.
    Delivery Issue
    Regards
    NP

  • Create Delivery not allowed-status

    for an SD Order (Make to Order scenario), we are getting an eror that : ""Create delivery" not allowed (Syst Status Cost, object VB001776271717).  I am unable to understand this.  Can you please guide me.

    Hi,
    I am also getting the same error and i did costing from CK51N but still the same error.
    "Create delivery" not allowed (Sys. status Cost, object VB0000060000000010)
    Message no. BS051
    Kindly advise.
    Thanks,

  • I successfully uploaded a book using iBook Author.  I need to make a correction. I keep getting this error message: ERROR ITMS-9000: "Files of type audio/x-m4a are not allowed outside of widgets: assets/media/chick02.m4p" at Book (MZItmspBookPackage)

    I appreciate any help or assistance.  I have been trying to update one of my books for for the past few days with no success.  I really just need to change two letters. But since I was updating I thought I would make a couple more improvements.  I clicked disable portrait and made my pictures a little bigger to fit the whole page.  But now I keep getting this error for multiple sound effects throughout the book. ERROR ITMS-9000: "Files of type audio/x-m4a are not allowed outside of widgets: assets/media/chick02.m4p" at Book (MZItmspBookPackage).  I did not change the audio.  The audio files are placed in widgets.  I had no problem the first time it uploaded. I have recreated my whole book from scratch and it still does not work. Does anyone have a suggestion? Thank you for your attention to my question.

    Florida author wrote:
    Could it matter that I am dragging my audio files onto my document?  They appear to be in a widget once dragged in. I use the widget insector to make changes. However,  I did not go to the top of the screen and click widget and then insert my audio file.
    I don't believe that would make any difference. Drag-and-drop is just a UI shortcut for using the menu items.
    Also some of the audio file were used in previous books.  Would that cause an error?
    No. Each book is a stand-alone entity. It doesn't matter if the same audio file appears in another book.
    From what people have reported here, it looks like there is a bug in the submission system. Other than trying the suggestions posted in the linked-to thread, I don't think there is anything you can do to fix it.
    I would submit a bug report to Apple though. Quite a lot of people seem to be affected by this problem, and if they hear about the same problem from lots of different sources, that will (presumably) elevate the importance of fixing it.
    Michi.

  • IPad Air iOS8.0.2. I used the photos app to edit my photos and created a new album for them. When I transfer my photos to my PC via cable (not allowed to use cloud services by my boss) i can only transfer the unedited versions. Any tips? Thanks!

    iPad Air iOS8.0.2. I used the photos app to edit my photos and created a new album for them. When I transfer my photos to my PC via cable (not allowed to use cloud services by my boss) I cannot choose this edited album, only transfer the unedited versions. Any tips? Thanks!

    Hi Anjohi,
    Thanks for visiting Apple Support Communities.
    If you've edited photos on your iPad and only see the original version when you import them to your computer, the tips in this article may help:
    iOS: Edited photos show original photo after import or in other apps
    All the best,
    Jeremy

  • Create delivery not allowed ( Sys. Status EXLS,object vb0004321713000010

    Hello SAP gurus,
    I am getting the fllowing error while creating a delivery. The delivery message says  create delivery not allowed ( Sys. Status EXLS,object vb0004321713000010)
    Diagnosis : the status check for the status object VB0004321713000010 indicated that the procedure "create delivery" cannot be performed because Sys. status EXLS forbids it
    System response: procedure create delivery is not performed
    Procedure
    If procedure is to be performed, the  Sys. status EXLS of the object VB0004321713000010 must be reset.
    Other statuses thatn Sys. status EXLS can also prevent the procedure. This message does not tell you all status which currently prevent procedure create delivery.
    Can you please tell me how to resolve this issue?

    Hi
    It seems that status profile is activated.
    So goto SAles order header or Item level and goto status tab and release the sales order by clicking on the status EXLS
    regards
    Prashanth

  • "Create delivery" not allowed (Sys. status Cost, object VB0000000237000010)

    Dear All,
    While creating delivery i am getting the error saying as below,
    "Create delivery" not allowed (Sys. status Cost, object VB0000000237000010). and allowing me to the process delivery. we are the scenario for make to order process.
    please suggest the solution.
    kamlesh panchal

    Not clear on your comments
    Create delivery "not allowed" (Sys. status Cost, object
       VB0000000237000010). and "allowing me to the process delivery"
    When the error message says creating delivery is not allowed,  then how are you able to process delivery.
    Nevertheless,  go to VA02, input the sale order reference and execute. From top menu bar, click on "Goto -- Header -- Status". There again click on "Object status" and check whether any lock is there. If so, change it and then retry
    thanks
    G. Lakshmipathi

  • What do I do if my key board will let me type my password yet will not allow me to type anywhere else. I've tried to hook up my wireless one as well as my one with a cord they are both doing the same thing.

    What can I do if my key board will let me type my password yet will not allow me to type anywhere else.? I've tried both my wireless and my one with a cord.

    Hi Jenny, it's not quite clear what you're seeing.
    Is this at login, then it goes to loading the desktop & such, & then is unresponsive, or what exactly?

  • Invoice Verification (MIRO) allocation via Delivery note

    We are in 5.00 version
    In our system the same Delivery note number could be associated not only to different vendor, but even to the same vendor in different years.
    In the last case the system allocate ALL the Delivery notes.
    I try to use the F4 function to limit the selection, using filter on vendor and document date, but after the again all the delivery note for the selected vendor are allocate.
    Could anybody help me on this.
    thanks
    Claudio

    In our organisation we are doing MIRO with reference to Delivery note. As same number of delivery note is being submiited by multiple vendors, after entry of that delivery note in MIRO system shows large list (Closed & Open for MIRO). This becomes difficult to select the required delivery note.
    Is it possible to make display of only those delivery notes against which MIRO (Invoice verification has not done).
    Also MIRO with reference to GRN number is possible or not ?
    HI,
    To avoid difficulties post miro with Reference document (PO Reference Tab) - Delivery note click on Radio button a possible entries for delivery note screen will appear. Here you can search specific delivery note by a lot of criteria which will save ur time and effort also you can see MIGO Document.  Click and put tick to adopt and post Delivery note / migo and enter required field.

  • Partial delivery not allowed for a STO

    Hi Gurus,
    We wanted to restrict the system so that it should not create deliveries with partial quantity for a STO. The delivery should be creaated if there is enough stock to fulfill the STO otherwise it should not create a delivery.
    I set the partial delivery indicator in customer master for teh receiving plant but still it is allowing partial delivery. ANy clue? Is there any otehr setting we need to do?
    Thanks for responce in advance.
    KHAN

    Hi
    I think that you have had your question answered so if you are happy with this can you please award points if you want to but mainly can you please mark your question as answered so that it is easier to navigate around the open questions in the forum as the number of pages are growing and growing and it takes too long to go through everything especially if a satisfactory answer has already been given and people like me who want to help will give up and so some people may not get any help.
    Thanks for this
    Frenchy.

  • Import video via firewire not allowed by Face Time

    I am trying to import video to my harddrive via firewire. Every time I open iMovie and click on the video camera icon the only device seen is the Face Time camera. There's a little drop down window but it only has Face Time as the option not my Sony DCR VX1000 video camera which is turned on to VCR mode to allow exporting of video content. Is there some way to get my camera recognized by the macbook or at least to disable Fact Time?

    You might contact Sony for some technical assistance.  In the past they have not been Mac friendly.
    Ciao.

Maybe you are looking for

  • HSRP fails to work due to h/w failure

    We have a situation that HSRP fails to work due to a partial h/w failure on the active router. What happened is the active router continously getting input error on its Ethernet interface. User traffic fails to be received by this router. However the

  • Maintenance Wizard vrs TUMS

    In the R12.1.1 Upgrade Guide it mentions both TUMS and the Maintenance Wizard as means to pre-determine the upgrade steps specific for my environment. TUMS outlines the steps I do NOT need to do whereas Maintenance Wizard gives a step by step outline

  • Fixing a display

    I was with friends the other night. Didn't take my ipod out that whole day and night. I take it out of my pocket when I get home and it has a black spot on the screen. It looks like a baseball it a car window. Anyway I can still see some stuff. On th

  • Outlook integration debugger selection

    Hi, I am encountering issue with outlook add-on. After starting the add-on it brings a screen for Debugger selection (visual studio just-in time debugger).  What could be the problem? And after option (yes or No) outlook fail to load. Any suggestions

  • Using old Pages templates

    Can the old templates in the previous version of Pages be opened up in the newer version?