PPOMA_BBP storage location attribute - upload update

I am implementing SRM 7.0.
I am  looking for a way to automate setting up the extended attribute Storage Location for the  users, rather than having to manually enter for each. Does anyone have a mechanism I could use to upload the data.
Thanks
Claire

http://wiki.sdn.sap.com/wiki/display/SRM/CodeSample3UpdatingExtendedAttributes%28Storage+Location%29
see sample code by Kathir
Muthu
Edited by: Muthuraman Govindasamy on Sep 15, 2010 11:39 PM

Similar Messages

  • Storage location is not updated after posting GR with Mvt type 107(Valuated GR blocked stock)

    Hi experts,
    Before posting GR through Movement type 107 (valuated GR blocked stock) we can see the storage location field in MIGO screen and able to enter value into this field. But after posting GR when we retrieve the material document we are finding that the field (storage location) is blank, i.e. it's not updated at all. When we check the stock in MMBE we find that no quantity is updated for valuated GR blocked stock.
    We want the storage location to be updated while posting GR with 107 Mvt type.
    Any idea Please?
    Points assured.
    Thanks
    Amitava

    SAP describes it in help.sap.com: Since the material is not to be added to the inventory yet, do not enter a storage location.
    If you require a storage location, then I assume that your design does not match with the design of SAP, you are using a function to solve a gap which is not foreseen by SAP for this case.
    Especially the 107 is usually representing stock which is still in transfer but you are already the legal owner and have to show the value of those goods in your books.

  • Storage location and Batch updation for components in Production Order.

    Hi Friends,
    After creating Production Order,need to update components with Storage Location(RESBD-LGORT) and Batch(RESBD-CHARG).
    Plese any one can help me by providing FM/BAPI for the same(Update Component level)
    Points will be rewarded.
    Thanks,
    Prb.

    Hi Prathap,
    Path - OCHA
    Condition type,access sequence, strategy type,
    Work on automatic batch determination. Assign standard search procedure to order type dependent parameter, check against manual entry.
    Make sort sequence for material by CU 70, tick ascending order, Then assign component in COB1, enter selection values and sort sequence. In finish product material master set automatic batch determination.
    System will copy the required material with batch & storage location, also check against manual entry.
    I think it will solve your problem.
    Regards,
    Suhas

  • BAPI_REQUISITION_CREATE is updating storage location address (global one)

    Hello Colleagues,
    We have a LN application for PR creation and is integrated with SAP. Process is PR gets transferred from LN to SAP and then PO would be created manually in SAP. Obseved couple of times that storage location address gets updated with delivery address in PR. Any pointers in this regard? Could you give me some insight about REQUISITION_ADDRDELIVERY parameter for BAPI, specially ADDR_NO.
    Thanks and Regards,
    Prasanth

    Simple rule is storage location address should not be changed from transaction data. In case item delivery address differs from storage location, it should made as local to PO. But here storage location got updated with new delivery address. Result is many POs are going to effet with this change in SLoc address. This problem found few months ago and now.

  • Storage locations - Classic scenario

    Hi Gurus,
    We have SRM 5.0 - Classic scenario
    We have a request from business to add attribute Storage Location (LAG) for using in Shopping cart. While I understand that we can maintain this under extended attributes in PPOMA_BBP, the issue to begin with is -
    1. How do we get the Storage location attributes populated en masse for all the Plants? It is not possible to maintain them manually.  Is there any replication prog?
    +2. Even if I maintain the Storage location manually, it still does not show in the shopping cart. will this issue be resolved thru FM BBP_ATTR_TEXT_REFRESH (I'm not sure if its a FM or T code)
    Thanks in advance
    regds,
    SB

    How do you order a cart via describe requirement? or good and services?
    you must get stoarge location if you order froma good and services in the basic data.
    1.It is possible to enter manually. just type your storage location . Automatically Plant will be filled with storage
    location.
    Are you geting any error here.
    2.Are succeed to bring to populate Storage location in Ext.Attribute . if it so
    you may need to run the report for staorage location if you dont get for LAG attribute.
    Note 1094742 - BBP_ATTR_TEXT_REFRESH Not update the LAG attr. in
    background -
    Did you see this note
    Note 767058 - Company code/plant/storage location are not transferred
    The texts are saved in table BBP_ATTR_VALUE_T. You can use report BBP_ATTR_TEXT_REFRESH to update this table with the
    descriptions from the back-end system.
    LAG is an attribute for storage location
    Note 1175255 - RFC_READ_TABLE creates
    ASSIGN_BASE_WRONG_ALIGNMENT termnatn
    regards
    muthu

  • Create storage locations

    Hi,
           There is  a requirement to do a mass creation of storage locations.  While creating a storage location, I have to upload data such as
    1) Address realted data for storage location(Name, streetm Postal code,city
    2) storage type, storage section, print params from storage location
    3) WM connect, MRP, fixed bin assignment
        Is there any BAPI that suits this requirement.
    What is the tcode for storage location creation and updation of this data.
    Thanks in advance,
    Vishnu Priya

    Hi,
                In OX09 tcode on the left  pane, if  the 'Address of storage locations' is selected, I got a list with a field labelled 'No.' Is that the address number? Where do I need to update the street/houseno, postal code, city details etc.
    Thanks for your quick replies.
    Regards,
    Vishnu Priya
    Message was edited by:
            Vishnu priya

  • 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

  • Is there any function module which will upload storage locations for a mat

    Hi gurus,
      Is there any function module or BAPI to extend the storage locations of material which is done through <b>MMSC</b> transaction. I need to write a program to upload new storage locations for some materials.Please advise.
    Thanks ,
    Sam.

    You can do this using the BAPI_MATERIAL_SAVEDATA
    Regards,
    Rich Heilman

  • Storage location updation for account assigned PO

    Hi All,
    Our requirement is that for an internal order assigned and subcontracting PO (Account assignment-F & item category-L) we want to create outbound deliveries for which we need to have stock in storage location after doing GR.
    But, I found that for the some of these kinds of POs while doing GR though MIGO system is updating storage location but for some POs it's not.
    Can you please suggest what should be the reason for this?

    Hi Jurgen,
    Thanks for your reply.
    You are correct. As per my knowledge also if there is account assigned PO then system will not update SL.
    But, I have one PO for internal order assigned (Acct Aggt Cat-F) but for this SL got updated.
    Can you tell me what setting should be there to facilitate this?

  • 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!!!!!!!!

  • Updation of Replenishment storage location in MF60 ( reservation creation )

    Hello,
    In REM, we are using MF60 for two step material staging.
    We have gone for two stage staging process.
    First shop person will create reservation and then the store person will issue the material against the reservation.
    Here when the resrvation is getting created , user
    do not want to give the replenishment storage location on the sap screen.
    User considers this as a pain.
    Is there any way to bring the replenishment storage location
    automatically updated in the reservation?
    Please let me know in both scenarios,
    scenario one --- by using inventory management
    scenario two --- by using warehouse management.
    Waiting for reply from Experts.
    Regrads,
    Ravindra Deokule

    Hello Mahesh,
    Thanks for your reply.
    Your suggestion was valid if we were working with single step stock transfer process.
    But as stated in the question , we are working with two stage process.
    Here the stock determination button itself is not appearing on the SAP screen in MF60.
    So I think your answer is not right Or may be let me know how
    to bring the stock determination button on the SAP screen when you are creating the reservation.
    Waiting for your reply.
    Regards
    Ravindra Deokule

  • Update Storage Location in Delivery during Picking

    Hello Experts,
    I am implementing "picking" using a custom function module that ultimately calls SD_DELIVERY_UPDATE_PICKING to perform picking.
    Frequently the third party application changes and sends a new storage location for a given delivery. The requirement is to update storage location in delivery while doing picking.
    Thanks for your precious inputs.
    Regards,
    Hitesh

    Use BAPI 'BAPI_OUTB_DELIVERY_CHANGE'. There is a parameter ITEM_DATA_SPL where you can put the storage location in.
    Regards,
    Michael
    DATA: ls_header  TYPE bapiobdlvhdrchg,
          ls_control TYPE bapiobdlvhdrctrlchg,
          lt_return  TYPE TABLE OF bapiret2,
          ls_item    TYPE /spe/bapiobdlvitemchg,
          lt_item    TYPE TABLE OF /spe/bapiobdlvitemchg.
    ls_header-deliv_numb = ls_control-deliv_numb = '0080000542'.
    ls_item-deliv_numb   = '0080000542'.
    ls_item-deliv_item   = '000010'.
    ls_item-stge_loc     = 'AA02'.
    APPEND ls_item TO lt_item.
    CALL FUNCTION 'BAPI_OUTB_DELIVERY_CHANGE'
      EXPORTING
        header_data                   = ls_header
        header_control                = ls_control
        delivery                      = '0080000542'
      TECHN_CONTROL                 =
      HEADER_DATA_SPL               =
      HEADER_CONTROL_SPL            =
      SENDER_SYSTEM                 =
      TABLES
      HEADER_PARTNER                =
      HEADER_PARTNER_ADDR           =
      HEADER_DEADLINES              =
      ITEM_DATA                     =
      ITEM_CONTROL                  =
      ITEM_SERIAL_NO                =
      SUPPLIER_CONS_DATA            =
      EXTENSION1                    =
      EXTENSION2                    =
        return                        = lt_return
      TOKENREFERENCE                =
        item_data_spl                 = lt_item
      COLLECTIVE_CHANGE_ITEMS       =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
      WAIT          =
    IMPORTING
      RETURN        =

  • How to update storage location & batch split on delivery items?

    Any idea how to perform the following using a BAPI or function call with regards to updating a Delivery (VL02/VL02N)?
    1) Enter or update a storage location on a delivery item?
    2) Batch split a delivery item to give multiple batch    numbers. For example if delivery item is '101' then    after batch split additional delivery items with batch number assigned will appear as '900001', '900002', '900003', etc Entering a single batch number is straight forward and can be done using WS_DELIVERY_UPDATE/_2
    Do not wish to use BDC or call transaction. Any help appreciated.

    hi sailatha..
    im doing BDC for VL01N transaction.. how can i pass multiple storage locations for picking quantity..  my requirement is  if the material is not there in the specified storage location it should search in the other storage locations for delivery.
    how can i solve this issue bcoz in the VL01N screen i can pass only one storage location.
    this is urgent requirement..
    kindly revert me back if u can help.
    thankx
    helpful answer will be rewarded.

  • BAPI or FM to Update storage location in outbound delivery with many items

    Hello!
    I have an urgent problem.
    Storage location determination didn't work and were  created thousands of deliveries without storage location.
    We want to run LSMW using BAPI.
    Which BAPI can update storage location (for many items in delivery. We saw an option to update the first item' but not all of them)
    PLZ try to help
    thank You

    Hi,
    check this FM:
    RV_DELIVERY_PICK_UPDATE
    SD_DELIVERY_UPDATE_PICKING

  • 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

Maybe you are looking for