SHPCON - How to update LGORT (Storage Location)

Hi experts.
I'm using an INBOUND idoc with message SHPCON to create batch split for delivery items.
When trying to update Storage Location, the field is not updated, but all the other fields are correctly populated.
Does anybody know how I can have this field updated?
Any user-exit I can use?
Following the data I am using:
Message Type : SHPCON
Process Code  : DELV
Function name : IDOC_INPUT_DELVRY
Segment E1EDL18: PIC
Segment E1EDL19: BAS
Thank you for you attention!
Edited by: Rodolfo Oliveira on Mar 6, 2012 10:24 AM

You're a bit confused.  You can not buy more storage for your iPad.  It is what you bought the day you bought it.  So, a 16GB or a 32GB or a 64GB iPad can not be increased.  What you bought was more Cloud storage.  Apple gave you 5GB of cloud storage for free.  Once you've used that, you need to buy more.  Don't confuse that with adding storage to your actual iPad.  Two completely different things.

Similar Messages

  • How to change the storage location using BAPI_OUTB_DELIVERY_CHANGE

    Hi !
    I want to do batch split in the delivery using BAPI_OUTB_DELIVERY_CHANGE.
    Can anyone tell me how to pass/change the storage location of each batch item.
    Is there any other BAPI that can do the batch split and populate the storage location also for the split batches?
    Regards,
    Firoz.

    Hi all,
    BAPI_OUTB_DELIVERY_CHANGE  can be used to do batch split and updating storage loaction against each item of an outbond delivey.
    I have done that in the folllowing way:
    1 > Firstly i have updated the storage location for each delivery item using 'BAPI_OUTB_DELIVERY_CHANGE' passing some mininal parameters.
       Fetch the item details from LIPS table based on the outbound delivery and pass the corresponding fields to item_data, item_control  and item_data_spl parameters and passed into intenal table li_lips.
    Loop at li_lips inti lw_lips.
        lw_item_data-deliv_numb           = lw_lips-vbeln.
        lw_item_data-deliv_item             = lw_lips-posnr.
        lw_item_data-material                = lw_lips-matnr.
        lw_item_data-fact_unit_nom      = lw_lips-umvkz.
        lw_item_data-fact_unit_denom  = lw_lips-umvkn.
        lw_item_data-base_uom            = lw_lips-meins.
        lw_item_data-sales_unit            = lw_lips-vrkme.
        lw_item_control-deliv_numb      = lw_lips-vbeln.
        lw_item_control-deliv_item        = lw_lips-posnr.
        lw_item_data_spl-deliv_numb   = lw_lips-vbeln.
        lw_item_data_spl-deliv_item     = lw_lips-posnr.
        lw_item_data_spl-pick_denial   = 'X'.
        lw_item_data_spl-stge_loc       = v_lgort.
    "(This would be your Storage Location which you want to be updated)
    Appending work areas into internal table to pass as parameter
        APPEND lw_item_data_lgort     TO li_item_data_lgort .
    Appending work areas into internal table to pass as parameter
        APPEND lw_item_control_lgort  TO li_item_control_lgort.
    Appending work areas into internal table to pass as parameter
        APPEND lw_item_data_spl_lgort TO li_item_data_spl_lgort.
    endloop.
    Passing the delivery no in the work area of header data
      lw_header_data-deliv_numb           = v_delivery_no.
      lw_header_control-deliv_numb       = v_delivery_no.
      lw_header_tech_control-upd_ind   = 'U'.
    Calling BAPI to change the Storage location
      CALL FUNCTION 'BAPI_OUTB_DELIVERY_CHANGE'
        EXPORTING
          header_data       = lw_header_data
          header_control   = lw_header_control
          delivery               = v_delivery_no
          techn_control     = lw_header_tech_control
        TABLES
          item_data           = li_item_data
          item_control       = li_item_control
          return                 = li_return_change
          item_data_spl    = li_item_data_spl.
    Calling BAPI to committ the task
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' .
    2> Then i have used the same BAPI again 'BAPI_OUTB_DELIVERY_CHANGE' to do the batch split/update batch only(if required) and change the Actual Delivered Quantity.
    Here you have to pass the same thing along with actual delivery qauntity and different batches to do batch split.
    Here it is assumed that Batch numbers, actual delivered quantity are coming from an internal table i_lqua.
    Looping through Internal table to get Bin details
      LOOP AT i_lqua INTO w_lqua .
    Clearing work area before use
        CLEAR : lw_item_data, lw_lips, lw_item_control, lw_item_data_spl.
    Reading table comparing metrial number
        READ TABLE li_lips INTO lw_lips
        WITH KEY matnr = w_lqua-matnr BINARY SEARCH.
    If read is successful, passing values from table
        IF sy-subrc EQ 0.
    Passing the delivery details into Item level table
          lw_item_data-deliv_numb              = lw_lips-vbeln.
          lw_item_data-deliv_item                = lw_lips-posnr.
          lw_item_data-material                   = lw_lips-matnr.
          lw_item_data-batch                       = w_lqua-charg.
          lw_item_data-dlv_qty                    = w_lqua-verme.
          lw_item_data-dlv_qty_imunit         = w_lqua-verme.
          lw_item_data-base_uom               = w_lqua-meins.
          lw_item_data-hieraritem                = lw_lips-posnr.
          lw_item_data-usehieritm                = 1.
          lw_item_data-fact_unit_nom          = lw_lips-umvkz.
          lw_item_data-fact_unit_denom      = lw_lips-umvkn.
          lw_item_data-sales_unit                 = lw_lips-vrkme.
          lw_item_control-deliv_numb           = lw_lips-vbeln.
          lw_item_control-deliv_item             = lw_lips-posnr.
          lw_item_control-chg_delqty           = 'X'.
          lw_item_data_spl-deliv_numb        = lw_lips-vbeln.
          lw_item_data_spl-deliv_item          = lw_lips-posnr.
          lw_item_data_spl-stge_loc            = w_lqua-lgort.
          lw_item_data_spl-pick_denial        = 'X'
    Appending work area into internal table to pass as parameter
          APPEND  lw_item_data TO  li_item_data.
    Appending work area into internal table to pass as parameter
          APPEND lw_item_control TO li_item_control.
    Appending work area into internal table to pass as parameter
          APPEND lw_item_data_spl TO li_item_data_spl.
    Clearing work areas after use
          CLEAR : lw_item_data, w_lqua,lw_item_data_spl,lw_item_control,
                        lw_vbpok, lw_lips.
        ENDIF.
      ENDLOOP.
    Passing the delivery no in the work area of header data
      lw_header_data-deliv_numb           = v_delivery_no.
      lw_header_control-deliv_numb       = v_delivery_no.
      lw_header_tech_control-upd_ind   = 'U'.
    Calling BAPI to change the Batch/Batch-Split/Delivery Quantity
      CALL FUNCTION 'BAPI_OUTB_DELIVERY_CHANGE'
        EXPORTING
          header_data           = lw_header_data
          header_control       = lw_header_control
          delivery                   = v_delivery_no
          techn_control         = lw_header_tech_control
        TABLES
          item_data                = li_item_data
          item_control            = li_item_control
          return                     = li_return_change
          item_data_spl         = li_item_data_spl.
    Calling BAPI to committ the task
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' .
    This is the only way which i found as better way to do the Batch split and updating storage location togetherly.
    I hope this code will help you.

  • Where and how to find the storage locatation for the consignment stock

    where and how to find the storage locatation for the consignment stock (customer stock )  for more than one storage location .
    table :msku
    material no    -   werks - batch
    xxx                   sg11  - 200352ac
    table : mchb
    material no    -   werks  -lgort - batch
    xxx                   sg11   sg10   200352ac
    xxx                   sg11   gs11   200352ac
    note : each stock location having same batch no in different storage and my question how to find which link for msku to mchb .

    Hi,
    Try the table MARD: Storage Location Data for Material, where in the field LABST will give the stock field, against a given material/plant/Storage Loc.
    Regards,
    JLN

  • Problem in Address update for storage location via LSMW

    I am trying to update the address of storage location thru LSMW,
    Normally when i run OX09 i get the "dialogue structure' in LHS panel but when I do the recording of OX09 in LSMW, I am not getting the "Dialogue structure" LHS panel & hence I can't go to the 'Addressees for storage location'
    How to get the ""Dialogue structure" in LHS while recording in LSMW so that I can update the address also.
    Currently my recording only takes me to the create storage location & no LHS 'dialogue structure'  for 'Addressees for storage location'
    Please give the suggestions as I its on urgent for me to update 1000 storage location.

    Dearrrrrrr Prasoooon,
    U got it Right Again!!!!!
    Thank you so much.
    I resolved with above Note & now i can happily go on leave from tomorrow.
    Salute to you!!!!!!!!

  • How to change the storage location in Lightroom 3.6.?

    How to change the storage location in Lightroom 3.6.?
    I use my internal hard drive NTFS of my MacBook Pro  as my storage location of Lightroom 3.6. being installed in Snow Leopard now but the data of my photos get too big now. I have two fast and big external hard drives eSATA now which I want to use for my data/photos. I know how to copy the data from one hard drive to another but I don't know how to change the settings in connection with Lightroom easily. I still want to watch all fotos on my MacBook Pro but don't want to save any fotos on my internal harddrive any more. Isn't it possible to have the programm Lightroom on my internal harddrive but the data on two times on two different extermal hard drives? If I look at Lightroom - settings of catalogue - I see that the internal harddrive location is my storage location now but I my two external harddrives don't appear as folders. Why? How to change that so that the external hard drives appear in Lightroom and I can watch all my fotos immediately (sometimes using external hard drive 1 and sometimes using external hard drive 2)?
    My external hard drives are in HFS+ but I use the software of Paragon so that there shouldn't be any problem to read and write the data (I use also Final Cut Express so my external hard drives are HFS+ and not NTFS).
    I want to impert many data from CDs - should I copy the fotos first to my external hard drive and then import it into Lightroom or is it easier to import the data directly from the CD in Lightroom so that I don't have to name the folders two times?
    I see that I have to sort the fotos from the CDs in new different folders and an used to do that in Finder of my MacBookPro. In Lightroom I don't want have to click each of hundreds of fotos to be able to put it into the right folders ... But how to import only a part of a CDs quickly into the right (newly created) folders?
    Kind regards, Karin

    Would you really leave the names of photos like DSC05271.ARW and DSC05271.jpeg etc.?
    What if I name them f.i. like ...
    2013-09-11_Austria_1_mountain.jpeg
    2013-09-11_Austria_2_mountain.jpeg
    2013-09-11_Austria_3_valley.jpeg
    I would NOT do this. I would not change the file name.
    I would add keywords and other metadata to the photos to identify the content of the photos, and from that point on, I would use keywords and other metdata to search for these photos.
    However, let's look at the big picture. I think there are three different methods of organizing
    Organize via keywords and other metadata, and not via operating system constructs such as file name and folder name
    Organize via operating system constructs such as file name and folder name, and not via keywords and other metadata
    Some combination of 1 and 2
    You can choose any one of the three methods above, the choice is yours. I am a very strong believer that for most people (and it sounds like you are one of those people), method 1 is the best method. However, not everyone agrees.
    There are drawbacks to using file names to identify your photos. One big drawback is that you must type the information into each photo's name, and this is more tedious than if you wanted to assign the keyword "mountain" to the photos, you can assign the keyword to multiple photos at once. Also, if you mis-spell the information in the file name on any photo, you have just made the photo much harder to find; whereas in Lightroom, the keyword can be assigned via a mouse click (so you can't mis-spell it), or by typing the first few letters and Lightroom (auto-fill) will find the correct keyword name. So using keywords is a much simpler way to go.
    .. is this much too complicated to do that in Lightroom or even dangerous to got lost of photos?
    It is very simple to add keywords, as I explained for this case. Create keywords "Austria", "Mountain", "Valley"; then select the desired photos, and then click on the check box next to the keyword name. It is much more complicated in my opinion to rename the photos in this manner.
    There is less danger in doing this via keywords than the danger doing this via file names, because of potential mis-spellings.
    If I spend a lot of time in editing photos (in Lightroom or Photoshop) I don't want that I loose those photos f.i. later if Lightroom won't be the software I use regarding the photos (in 10, 20 years?!)
    Lightroom will OPTIONALLY write your keywords and other metadata to the files (or sidecar files in the case of RAW). Every photographic application I know of (and I'm sure those in the future) can read the keywords and other metadata. So if you ever want to switch to some other software, your keywords and other metadata are available. you can turn this option on via Edit->Catalog Settings->Metadata, check Automatically Write Changes to XMP.
    So I have to create two folders - one with the originals and one with the edited exported photos?
    No, you do not have to create two folders. You don't have to export everything, but if you do, you can put the exports wherever you want, including putting them in the same folder as the originals, with different name.
    Why not edit them in Photoshop and save them in the second folder which I import later in Lightroom? Because it takes longer?
    Wow, you really need to think about: Why are you using Lightroom?
    Could you explain this to me? Why are you using Lightroom?
    If your goal is to edit the photos in Photoshop, and then put them in folders with whatever custom name you want to give them, then what is the benefit of using Lightroom? You can do all of this WITHOUT Lightroom. You keep explaining that your intended goal is to use Photoshop and folders/file names, and this is a goal which AVOIDs all benefits of Lightroom. I can't understand what you think the benefits of using Lightroom are for you.
    It is starting to sound to me like Lightroom is not the right software for you.
    Some people want to see a movie on their TV and are able to watch a DVD (not all!). Flickr seems to be a solution for movies in a big size (many GBs) to share them with friends (?)
    You haven't mentioned this before, and you should check the rules on Flickr regarding how long a video you can upload.

  • How can i add STORAGE LOCATION field which is not...............

    hi,
    sap gurus,
    good morning to all,
    how can i add STORAGE LOCATION field which is not in the standard tables namely
    KOMP, KOMK, and KOMG.
    how to include it in our FIELDS FROM FIELD CATALOGUE.
    if we include this field is there any impact on the standard tables.
    plz let me know this.
    bcz
    we are selling our products in two ways
    (1). one is straight from factory ie direct sales from factory
    if customer asks for excise invoice then we will sell thru factory and keeping freight in mind we will
    deliver him which ever is economical either rail or road.
    before coming to second case of selling the goods
    we will do STOCK TRANSPORT ORDER from plant to different storage locations.
    if we did STO thru road we have to sell the goods thru road only.
    if we did STO thru rail we have to sell the goods thru rail route only.
    (2). if the customer is not asking any excise invoice then we will send the goods thru depo/storage
    location which is not registered under excise.
    if the goods came by road then it will be delivered by road only.
    if the goods came by rail then it will be delivered by rail only.
    my logic here is
    basing on the
    storage location, transportation types, and distance i want to create condition record
    that captures exact frieght at the sales order level.
    confirm whether i am right or wrong.
    regards,
    balaji.t
    09990019711.

    Hi,
    It is not recommended to add new fields to any SAP standard tables. It disturbs the whole SAP functionality.
    But if you have no choice expcept to change the standard tables to meet your requirement -  then you need an access key to modify the object, which is available from the market place.
    Nevertheless, the better option is to create a 'Z' table with the required fields and use that accordingly.
    Changing standard tables will have serious impact when you apply patches or do an upgrade on the existing functionality.
    REWARD POINTS IF HELPFUL
    Regards
    Sai

  • Mass update of Storage Location

    Hi Gurus,
    I've executed mass transaction MMSC_MASS for extending the storage location to 0002 and 0003.
    How to exclude these storage location to exclude in MRP run ?
    Can it be done anywhere in material master ?
    Please throw some idea on this.
    Thanks
    Aadhya

    Hi,
       Storage loc MRP indicator can be maintained in material master - MRP 4 view as shown below. You can maintain the indicator as 1 if you want to exclude the storage loc from MRP.
       Check the documentation for the field and proceed.
    Regards,
    AKPT

  • Function module does not update the storage location in delivery

    Hello,
    I've been trying to use SD_DELIVERY_UPDATE_PICKING to update the storage location in SD return deliveries, without any success. Any clues? The FM works fine when it comes to updating the picking quantity, but the storage location issue still persists.
    Thanks in advance,
    Joao

    Hi Joao,
    I have the same problem. I tried to find the FM SD_OUTB_DELIVERY_CHANGE  but couldn't find it. Have you by any change specified the incorrect FM name here? If yes, can you please communicate the correct FM name?
    Regards,
    Divyaman

  • How do I maintain storage location for Planned Orders in APO

    Dear all,
    Can you help us in maintaining storage location for planned orders in APO. The storage location from material master need to be updated in product master of APO and the same shall be automatically picked from product master during Supply Network Planning run.
    Material master CIF is live.
    We have got the following content error in CIF consistency check. How ever this is nt goging to harm any thing, but we would like to maintain in both R/3 and APO.
    Error:
    Plant and storage location in SAP APO: 2004
    Plant and storage location in SAP R/3: 2004 FGPA
    Thanks in advance
    Ram Mohan Rao Kolanupaka

    Instead of maintaining additional master data, i would rather use CCR user exits to switch off comparison of planned order at storage location level if the APO storage location is blank. This way you would not have to make changes to PPMs everytime a new scale out of the solution happens.
    In SE18 check the user exit /SAPAPO/CIF_DELTA3 (interface RELEVANT_FOR_COMPARE_ORDHEAD)
    If it is not possible to switch off this comparison then I guess changing master data is the next step. Do explore with a developer though about the first option.

  • Change Software Update Service storage location - OS X Server 2.2

    What's the best way to change the file storage location used by the Software Update Service in Server 2.2? I don't want to change the default "Service Data" location for the other services.
    Generally I like to make as few changes to the standard configuration as possible, but in this case I need to make an exception. I'd really like to to get the catalog of update files on to an External Pegasus RAID.
    I've tried using a symlink to the /Library/Server/Software Update/Data folder. That didn't work as the service was unable to update the catalogs.
    Should I use a symlink on the whole  /Library/Server/Software Update/ folder or is there perhaps a better way?
    With any potential solutions, how likely is is that changes I make likely to be overwritten with future updates.
    Thanks,
    GRW

    Question (please use responses in bold in square brackets)
    Response
    1
    Update went smoothly with NO problems [No]
    No
    2
    Update actually solved existing previous problem with server [Not sure yet]
    Not sure yet
    3
    Updated from Server App version 2.2 [Yes]
    Yes
    4
    If answer to Q.3 was 'No' please advise previous server version [Server app version #]
    5
    OS X version at the time was 10.8.2 [Yes]
    Yes
    6
    If answer to Q.5 was 'No' please advise previous OS X version [-]
    To clarify:
    1) As it was updating application data, I got an error message at the very end of the update saying that some application data may not be usable/work/wasn't updated (something to that tune) with a yellow triangle and exclamation mark inside it.  After the update, I rebooted the server just in case then let everythign start up normally.  All services turned on as per usual.
    I have gone through most of my services that I run and I'll list off everything that I've tried out and it's state:
    Caching Server - Looks OK
    Contacts - Functioning so far as expected
    Calendar - Functioning so far as expected
    Profile Manager - Was able to test a push profile add and delete with success
    DNS - Functioning as normal
    Software Update - Looking good so far (I had issues with it stopping and restarting randomly with an interval of a month or two between events, hoping that is fixed, though it never affected functionality - it was in the error logs)
    File Sharing - Working as expected
    Open Directory - No issues thus far
    VPN - Looks OK
    Websites - Functioning as expected
    Hope that helps you guys!

  • Quantity not updating in storage location

    Dear one and all,
    For a Sales order  and Delivery order , System has not reduced the entire qty from a storage location after making the invoice.  System reduced only part qty. The balance qty is still remaining in the storage location.
    Plz guide what all needs to be checked.
    Thanks & regards
    Sharad

    Dear GSL & Lakshmipati,
    Thanks for ur responses.
    One last question -
    I have an order wherein there are some physical items:
    - they are not value/text/service items
    - item cat/sch line cat automatically determined
    - sch line cat is relevant for deliv but not for MRP (no movement type defined) in customization
    - there Goods Movement Status is showing as complete (C)  in Delivery
    - there doc flow is showing as "confirmation of service"
    - all the items are completely delivered & invoiced
    - no batch split is occuring
    How will you keep track of such items (in storage loc.)? Why would you have such items?
    Thanks & regards
    Sharad

  • How to exempt a storage location from MRP run

    Hi all,
    How do I exempt a storage location and all its materials from MRP run.
    I am creating a new storage location and this should not be considered for MRP and  no idoc should be generated if a purchase order or a delivery is created from this storage location( should we stop entering this storage location in BD64 filters or anything more to prevent triggering of the idoc).
    Can somebody please through some light on these issues. 
    Kind Regards
    Chakradhar
    <REMOVED>

    Hi
    You need to set up master data for that material.In Mrp-4 View  set  storage location indicator as 1(one) .In this case your storage location stock will be exclude from MRP .
    Hope this will help
    Dilip

  • Bapi/FM tp update DO storage location

    hi all,
    any bapi/FM to update SD DO storage location... thanks for the help

    Hello,
    Solved the error. Just miss some parameters:
         lwa_item_data-deliv_numb = lwa_lips-vbeln.
         lwa_item_data-deliv_item = lwa_lips-posnr.
         lwa_item_data-fact_unit_nom = lwa_lips-umvkz.
         lwa_item_data-fact_unit_denom = lwa_lips-umvkn.
         APPEND lwa_item_data TO lit_item_data.
         lwa_item_control-deliv_numb = lwa_lips-vbeln.
         lwa_item_control-deliv_item = lwa_lips-posnr.
         APPEND lwa_item_control TO lit_item_control.
         lwa_item_data_spl-deliv_numb = lwa_data-vbeln.
         lwa_item_data_spl-deliv_item = lwa_data-posnr.
         lwa_item_data_spl-stge_loc = 'H114'.
         APPEND lwa_item_data_spl TO lit_item_data_spl.
    CALL FUNCTION 'BAPI_OUTB_DELIVERY_CHANGE'
         EXPORTING
           header_data    = lwa_header_data
           header_control = lwa_header_control
           delivery       = p_vbeln
         TABLES
           item_data      = lit_item_data
           item_control   = lit_item_control
           return         = lit_return
           item_data_spl  = lit_item_data_spl.
    it's important to fill fact_unit_nom and fact_unit_denom.
    Best regards,
    Pedro Nunes

  • How to update users' Trusted Locations settings on open?

    I am looking for a function that will trigger on opening of Access 2010 that will automatically update users' Trusted Locations to include the local network.  Only authenticated users have access to the drive, so there should be no security
    issues in making it a trusted location for anyone who opens the application. 
    It would be too time consuming to explain to 100+ how to add the network to their trusted locations, so I am looking for something to bypass this. 

    I put the function into the AutoExec macro, but when the database is not in a trusted location yet, I get a macro error number 2001.  After pressing Stop All Macros, then pressing Enable All Content, the function runs and properly adds the location. 
    Obviously the error occurs because the location is not trusted yet, so how do I get it to trust a macro beforehand?
    <v:shapetype coordsize="21600,21600" filled="f" id="_x0000_t75" o:preferrelative="t" o:spt="75" path="m@4@5l@4@11@9@11@9@5xe"
    stroked="f"><v:stroke joinstyle="miter"><v:formulas><v:f eqn="if lineDrawn pixelLineWidth 0"><v:f eqn="sum @0 1 0"><v:f eqn="sum 0 0 @1"><v:f eqn="prod @2 1 2"><v:f
    eqn="prod @3 21600 pixelWidth"><v:f eqn="prod @3 21600 pixelHeight"><v:f eqn="sum @0 0 1"><v:f eqn="prod @6 1 2"><v:f eqn="prod @7 21600 pixelWidth"><v:f eqn="sum @8 21600
    0"><v:f eqn="prod @7 21600 pixelHeight"><v:f eqn="sum @10 21600 0"></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:formulas>
    <v:path gradientshapeok="t" o:connecttype="rect" o:extrusionok="f"><o:lock aspectratio="t" v:ext="edit"></o:lock></v:path></v:stroke></v:shapetype><v:shape alt=""
    id="Picture_x0020_1" o:spid="_x0000_i1025" style="width:372.75pt;height:229.5pt;" type="#_x0000_t75"><v:imagedata o:href="cid:[email protected]" src="file:///C:\Users\ropelen\AppData\Local\Temp\msohtmlclip1\01\clip_image001.png"></v:imagedata></v:shape>

  • How to change the storage location while create delivery?

    Hi all:
       I have to question to trouble you,when I create a delivery with reference to a sales order,however every time it set storage location 'FG10' to the delivery automatically.I can modify it, but how to modify this default value?the sales order haven't information about storage location.
       thanks.
    Best regards
    lance

    Hi Lance
    Please try this:
    In SPRO, go to Logistics Execution - Shipping - Picking- Determine Picking location - assign picking locations
    here, for the reqmt plant and shipping point and storage conditions, define the applicable storage location. If you are not assigning any storage conditions in you material master, you may leave it blank. Storage conditions can be defined in the Material master in General Plant Data / Storage view.
    After maintaining this, try creating a delivery and see if the delivery gets created in the required storage location.
    Please reward points if this helps you
    Rgds
    Nageshwar

Maybe you are looking for

  • Hp envy ultrabook 6-1209 tx beats audio problme

    hi,      i have hp envy ultrabook 6-1209txwith a windows 7 operating system it has beats audio ...and every time i restart the laptop the audio in icon seems to be working fine but in fact there wont be any audio so i would have to uninstall , restar

  • How to delete songs with exclamation mark and duplicates?

    I have a large iTunes library, around 600GB. Due to a HDD failure some of the files are no longer in existance and so show up with a '!' in front of them. Is there a way to automatically find all of these and delete them? In addition, according to iT

  • Purchase Requisition version

    Dear all, could you help me on this question? i want to keep the PR date & Requirement date fixed under all activities in project builder, but whenever i do the scheduling or in thing like addition of new activity & then go to save project builder sy

  • No Audio Pref in /Library/Preferences/Audio

    Hello I have no sound in iChat and can not change the settings in Sound Pref Pane. I read the tips about deleting the files in /Library/Preferences/Audio My problem is, they don't get built anew. Any idea?

  • When reorder item's position, arabic labels changes into ??

    Hi there, I hope u can help me with this issue: After re-ordering the positions of items (texts or check boxes) the Arabic labels of them changed into question marks, who possibly can I prevent this to happen!!, so that each time I reorder items with