Can system consider the unrestricted stock when planned with MD50???

Hi,
We have scinerio where FERT with Strategy 20 (MTO Process) is planned with MD50 against the sale oder. Every time Dependent items stock needs to be posted with Movement type 412E against that sale order or else dependent items stock though available in unrestricted is shown as unable against that sale order no. Enitre cost of the FERT material is accounted against sale order number.
Can we avoid posting of sales order stock?? can we make system to consider the unrestricted stock when planned with MD50.
Thanks in advance,
Regards,
John

if u want to consume the unrestricted stock, why u implemented MTO??
what was the requirement to implement MTO, when u r asking such question in support............
check first requirement of the client.......if u think they need to consume unresc stock...i will say...implentation was very poor,
regards,
Pravin M

Similar Messages

  • The system is not considering the free stock in planning strategy grp - 25

    Dear Frndz,
    The system is not considering the free stock of child items available in the system.For the parent item, I have maintained a planning srategy of 25 (Make to order variant config).My client would like the system to consider the free stock available for child items.pls help me...
    Regards,
    Srini

    Dear,
    Strategy 25 will not consider the existing stock.
    What you enter in MRP4 view ind/collective rquirement is applicable only for dependent requirement.
    Also refer this thread?
    Re: Strategy group 20
    Run MRP in MD50 and then MD02 with palnning mode 3 deleted and recreated and check your result.
    Regards,
    R.Brahmankar

  • I have an icloud account which I can access via the web but when I go to systems preferences and click on the icloud it sends me to the mobileme closed site?? How do I get it to go to my icloud log in

    I have an icloud account which I can access via the web but when I go to systems preferences and click on the icloud it sends me to the mobileme closed site?? How do I get it to go to my icloud log in?

    You're saying that when you click on the  iCloud preference pane button it sends you to the defunct MMe
    rather than giving you this?
    Is your profile up to date, i.e. are your running 10.7.5?  Make sure you click on the iCloud button and not the MMe button.
    OT

  • I disabled my Macbook  Hard Disk and lock the settings, after i try to reboot, the system wouldn't come up. It refuses to read instructions from the hard disk. How can i enable the hard disk when the system wouldn't come up?

    I disabled my Macbook  Hard Disk and lock the settings, after i try to reboot, the system wouldn't come up. It refuses to read instructions from the hard disk. How can i enable the hard disk when the system wouldn't come up?

    How do you disabled it if running the same?

  • Can Any one tell me. System considering the Sales District also in Delivery Split which is not in standard. How to resolve this. Please help me

       Hi
    Can Any one tell me. System considering the Sales District also in Delivery Split which is not in standard. How to resolve this. Please help me

    Dear Srikanth,
    I am not sure, if my answer will satisfy you, but anyway I will try:
    Field Sales District is technically called BZIRK. In delivery structure is this field located in header (table LIKP), what cause split, if origin document (Sales Order) has different Sales District in some positions. This is standard program behavior. Basically it shouldn't happen, as value is taken from customer master (Sold-to Party) and copied to header and items of sales document. But user can manually changer for particular items.
    Well, to solve situation you have few ways:
    1. Do not allow users to change value on items - can be managed by organizational decision or by authorization concept.
    2. If there is a reason to have different Sales District in items, then it can be managed in in routines for copy control between sales and delivery documents (delete value of BZIRK for all items for instance). But then will be this information lost for further usage. It seems to me to invoice is value copied directly from sales order (field VBRP-BZIRK_AUFT) then it mustn't be a critical for analyses.
    3. Your situation also can happen if you wants to collect more sales documents to one delivery. In this case can be that Sales District is different for same customer in different sales order (even seems to be little bit strange). Then solution from point 2 can help as well, I believe.
    Best Regards
    Arnost

  • How can I interrupt the blocking call when call timeout?

    Hi,Guys
    I wrote an application server(daemon process) to talk with oracle server
    continuous which used oracle9 OCCI lib, each 5 min it executes the procedure
    on the DB server.
    Now I have come cross a problem:
    If the network is blocked, app server will blocked at occi call and would
    never pass, and no exception was catched :-(
    for e.g.
    1. Oracle server reboot without shutdown oracle process
    2. udp broadcast message storm blocked the connection between app server and
    oracle DB.
    I consider maybe it's because OCCI using the blocking mode of connection
    that caused this problem.
    How can I interrupt the blocking call when call timeout?

    Manage the timeout using a separate thread. When the timeout happens, issue a break on the OCCI connection. There is no direct way as of now. You need to do this to break a OCCI connection.
    retrieve the OCI handle from the OCCI handle (e.g. using Connection::getOCIServer or Connection::getOCIServiceContext methods) and issue a OCIBreak on it. Do not forget to allocate a error handle which should be passed to OCIBreak call.

  • I am in the UK. Can I use the iPad Mini when on holiday in Sri Lanka?

    I am in the UK. Can I use the iPad Mini when on holiday in Sri Lanka?

    Sure.  Wifi is wifi the world over, so you can use any free wifi you can find at hotels, restaurants, and so forth.
    If you have a wifi+cellular iPad mini, you can use a SIM card from a local carrier if there is one there that offers iPad data plans.

  • Get the qty from the unrestricted stock

    Hi,
       My Requirment is below
         Select material (MATNR), plant (WERKS), unrestricted stock (LABST) from table MARD where material (MATNR) IN S_MATNR AND plant (WERKS) IN S_WERKS. Inner join the selection above with table MAKT to retrieve the material description (MAKTX) into itab1. Collect the itab1 to add all the unrestricted stock. For abaper’s info, the data retrieved from table MARD is by storage location. All these storage location will be added to get the total qty for that material.
    Select single material group (MATKL), external material group (EXTWG), unit of measurement (MEINS), division (SPART) from table MARA where MATNR = itab1-matnr.
    In this how to get the total qty for that material.pls help me to find the quantity.
    Thanks,
    Regards,
    Rajendra.

    Hi ,
      The code can be split into two portions first select the data from the tables mara , mard and makt , and second is loop on this table and collect the data into another internal table.
    here is a code which does the same
    tables : mara , mard.
    data : begin of it_1 occurs 0 ,
            matnr type matnr ,
            matkl type matkl ,
            meins type meins ,
            spart type spart ,
            werks type werks_d ,
            lgort type lgort_d ,
            labst type labst ,
            maktx type maktx ,
           end of it_1.
    data : begin of it_2 occurs 0 ,
            matnr type matnr ,
            matkl type matkl ,
            meins type meins ,
            spart type spart ,
            werks type werks_d ,
            labst type labst ,
            maktx type maktx ,
           end of it_2.
    select-options : s_matnr for mara-matnr ,
                     s_werks for mard-werks.
    start-of-selection.
    select mara~matnr mara~MATKL mara~MEINS mara~SPART
           mard~werks mard~lgort mard~LABST makt~maktx
    into table it_1
    from ( mara inner join mard
    on mara~matnr = mard~matnr )
    inner join makt
    on mara~matnr = makt~matnr
    where mard~matnr in s_matnr and
           mard~werks in s_werks and
           makt~spras = sy-langu.
    loop at it_1.
      move-corresponding it_1 to it_2.
      collect it_2.
    clear it_2.
    endloop.
    regards
    Arun

  • How can I stop the intro voice when I play a genius mix

    HOw can I stop the intro voice when I play a genius mix?

    Hi Diavonex. Yes I was aware of this option.
    Subsequently I have done a litle research and downloaded a music app called "Track 8" which has a much clearer interface (larger type) and the abillity to change the background colour to dark or light.
    This is much more readable in the car in bright light, and much better at night too.
    You can also turn off auto-lock within the application, which is great, as it doesn't affect other apps.
    Although this app is really only an interface sitting on top of the music app, it offers a much better experience
    in my opinion that the stock player which seems to have devolved rather than evolved.

  • How can I control the image size when I export form iphoto, the choice is too limited, I need to send a photo under 3 MB but if I choose high quaulity it is only 1.1 and i need to keep the best quaulity I can. Thanks for help.

    How can I control the image size when I export form iphoto, the choice is too limited, I need to send a photo under 3 MB but if I choose high quaulity it is only 1.1 and i need to keep the best quaulity I can. Thanks for help.

    Any image can only be as large as the Original. With a program like Photoshop you can UpRes an image and get it to a bigger size, larger files size as well, but the actual quality of the image will be degraded, depending on the UpRes system and the original quality of the image.
    iPhoto is not the program to be doing that in and I don't think it even has that option.
    So I suspect the image you are trying to send isn't much bigger than what you are getting. You can also try Exporting it from iPhoto to yopur desktop and see what size you end up with. If it is still that 209KB +/- file size then that is the size of the original image.

  • HT203200 How can i solve the -50 error when downloading video from itunes??

    How can I solve the -50 error when downloading video from itunes.   The apple support people cannot even figure it out!??

    The 2330 error often means some sort of damage to the filing system as might happen if the battery fell out while the disk was in use.
    Try running a disk check to see if it finds and fixes any errors.
    http://support.microsoft.com/?kbid=315265

  • Terrance Devlin answered a question about iPhoto (4-2012) re:copying iPhoto Library to an ExHD, and losing all the albums. I can't locate the "Choose Library" when I open iPhoto with the opt button. Can anyone help?

    I tried to move my images (over 25,000) to an External Hard drive to open up some memory, hoping to make my computer run faster. It took three hours to move the images and I see them all in the mac's menus. However when I try to open them with iPhoto now, none appeared. and when I tried to import them back to the main HD they come in to iPhoto just fine, but not with the albums nor any of the massive organization i'd created in the original. this represents years of images, and I can't imagine that I'd have to recopy them into folders/albums again.
    Terrance Devlin answered a similar question back in April of last year. He said to make sure the ExHD is formatted to MAC OS Extended (Journaled) and to move the library to the ExHD and then open iPhoto with the option button and select "Choose Library" from the resulting menu.
    Command "I" tells me that the new drive is formatted correctly. I can't locate the "Choose Library" when I open iPhoto with the opt button.
    First, I wondered if the application needs to be on the same drive as the Library. I sure would like to know if I can find out how to restore all the folders I had them in. Terrance's advice helped the user that had asked the question.
    Here's the url for that archived discussion: https://discussions.apple.com/thread/3849933?start=0&tstart=0
    Can anyone help? I'm using iPhoto 5. My MAC is an OS X version 10.4.11.
    thanks, brokenlom

    Here are Apple's instructions:
    If you are using iPhoto ’06 or earlier, you will need to follow these steps to tell iPhoto where the Library is now located:
    Hold down the Option key on the keyboard and open iPhoto. Keep the Option key held down until you are prompted to create or choose an iPhoto Library.
    Click Choose Library.
    Locate and select the iPhoto Library in its new location.
    (from http://support.apple.com/kb/HT1229 )
    Below (in the link below) is what you should see when holding down the option key and opening iPhoto. Keep holding down the option key until this dialogue comes up. You want to select the Choose Library button.
    http://appleclinic.wordpress.com/2008/04/06/change-default-dir-iphoto/

  • I have to reset factory settings but Apple ID is old email no longer used. I can't recall the password and when I went to answer security questions it told me my date of birth was wrong. How do i rest password but get it sent to my current email addr

    I have to reset factory settings but Apple ID is old email no longer used. I can't recall the password and when I went to answer security questions it told me my date of birth was wrong. How do i rest password but get it sent to my current email address

    Go to http://iforgot.apple.com to get help with your password.

  • My Icloud is tuck on my old email adress. i can not retreive the password becaue when i request the email it doent get sent to thi adress. how can i change it sothat my icloud is on my new email. i cant login or out of icloud now.

    My Icloud is tuck on my old email adress. i can not retreive the password becaue when i request the email it doent get sent to thi adress. how can i change it sothat my icloud is on my new email. i cant login or out of icloud now.

    To change the iCloud ID on your phone you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Can I change the background color when I'm in a brochure layout?

    can I change the background color when I'm in a brochure layout? I've tried making a box in desired color but cannot push it to the back(not an option, it's greyed out)

    Then you are in a Layout template and the shape is already the back most object.
    Peter

Maybe you are looking for