Ship to address Attribute Table

Hi SRM Experts
We are looking for the table where in we can find the ship to address number for all SRM users.
thanks

Hi
use this FM BBp_read_attributes and give input user,orgstr no and  attr as addr_shipt and in the output you may get the address number by using of this address number pass this value into ADRC table you will get all details address.
regards
Muthu

Similar Messages

  • Disabling ship-to-address field on the SRM 7.0 portal.

    Hi All,
    The requirement is to disable the ship-to-address field for user input on the portal.
    I have some information about the table /SAPSRM/V_MDF_IC. Here some entries has to be maintained.
    But I am not able to get what would be the exact data entry to disable the ship-to-address field.
    Please let me know the correct data and procedure to do this.
    Thanks & Regards
    Archana

    Hello Archana
    in standard SRM , if you maintained ship to address attribute or copy ship to address default you might inherit all the user ship to address default.
    but your requirement is no user should not edit the ship to address
    in SRM 5.0 we have undo address button under ship to address .
    if you click undo address all the address will be cleared and now user can enter his desired ship to address.
    so now you need to protect this functionality. you must keep access for only dispaly the ship to address not allow to enter ship to address.
    In srm 7.0 you dont have undo entries ? i am not much aware of srm 7.0 screens . customer requirement is valid.
    br
    muthu

  • Attribute ADDR_SHIPT Ship to address

    Hi,
    I have a problem I cannot resolve that for some of my users the Ship to address number has been maintained in the attributes in PPOMA_BBP so that the user has a default delivery address. However, no matter what we do the ship to address is not defaulting into the cart even though the address can be found via the F4 search help from the cart itself. Does anyone know why this would happen as it only happens for a few users?
    Thanks
    Andrew

    Hi Andrew
    Are they inherited the ship to adress attribute? which version of SRM 550 or 700?
    interesting..
    however display
    what is the entry for your address number.
    check boxes?
    Use Address as: 
      Standard Address 
      Ship-To Address     Copy as Default 
      Invoice Recipient Address     Copy as Default 
    Does addresses have BP number .check in adrc table too
    br
    Muhtu

  • Ship to Address Table

    Hi,
    Please let me know the table for Ship to Address. I know that we will edit the address through T.Code- bbpaddrintc.
    But how to see the Address No, Name Org , Street  , city etc in the SRM System.
    Regards,
    Manoj

    Hello,
    Here is he table that you are enquiring::
    table BUT021_FS and but021
    table ARDC.
    I hope this information helps.
    Kind regards,
    Gaurav
    PLEASE REWARD POINTS FOR USEFUL REPLY.

  • Tables for  bill to and ship to addresses in crm order

    Hi Experts,
    In which tables the bill to and ship to addresses are stored in CRM order?
    Thanks in Advance.

    Hi Jak,
    Goto table CRMD_PARTNER to get the address numbers i.e. ADDR_NR and using this address number retrieve the address details from ADRC table.
    <b>Reward points if it helps.</b>

  • Table name for - ship to address.

    Hi,
    In which table Shopping cart ship to address details are storing?
    Can any one knows please let me know..
    Thanks.

    Hi Thanks for ur answers.
    sorry i dint ask correct question,
    I need to assign the ship to address data in transaction 'BP' by selecting Business partner and creating all the address which are presented in But020 and ADRC related to selected partner in BP transaction.
    So finally In Shopping cart all this address fill be shown in ship to address tab.
    I want to know is there any Function module or program i can use to assing the data ?
    or what table has relation ship with but020 and ADRC to get the address details in SC ship to adress.
    Thanks.

  • Shipping point Address table

    Hi All,
    Can anybody tell me the table where the address for shipping point(VSTEL) is stored?
    Thanks and regards,
    Pragya

    Hi,
      Pass the shipping point to TVST table, i.e. TVST-VSTEL field and get the ADRNR value, pass ADRNR to ADRC-ADRNR and print the address,
    Hope this helps,
    Rgds,

  • From which table the ship to address is picked up in SRM

    Hi,
    Can anyone tell me From which table the ship to address is picked up in SRM?
    BR
    Sairam

    Hi,
    See the  foll related thread:
    Table name for - ship to address.
    BR,
    Disha.
    <b>Pls reward points for useful answers.</b>

  • Table holding Delivery shipping/billing address information

    All,
    Which table holds the shipping and billing addresses for a delivery?
    In my query below, I have retrieved the shipping / billing address attached to the order line referenced on any one of the delivery detail lines. But there are multiple delivery detail lines on any delivery, and they may reference order lines from different orders.
    Questions are:
    1. Does Oracle ensure that all delivery lines on a delivery reference the same hz_locations.location_id values (alias used below is ship_loc / bill_loc)?
    2. Does Oracle store the shipping and billing information for a delivery in one record in one single table? If so, what table is it? Or is retreiving this information from the below SQL via an order line the only way to get that information? (that would mean you have to retrieve this information for only one delivery detail under the delivery).
    SELECT ood.organization_code site, ood.organization_name org_unit, wnd.confirm_date ship_date, oh.order_number,
    NVL(wdd.cust_po_number, oh.cust_po_number) cust_po_number, wdd.source_line_number, bill_party.party_name bill_to_name,
    bill_loc.country bill_to_country, ship_party.party_name ship_to_name, ship_loc.country ship_to_country,
    wnd.confirmed_by end_user_name, msi.segment1 shipped_item_number, wdd.item_description shipped_item_description,
    wdd.shipped_quantity, ol.unit_selling_price unit_price, ROUND((wdd.shipped_quantity * ol.unit_selling_price), 2) total_price, wdd.currency_code,
    wnd.name delivery_name, wdd.delivery_detail_id
    FROM hz_locations ship_loc,
    hz_parties ship_party,
    hz_party_sites ship_ps,
    hz_cust_acct_sites_all ship_cas,
    hz_cust_site_uses_all ship_su,
    hz_locations bill_loc,
    hz_parties bill_party,
    hz_party_sites bill_ps,
    hz_cust_acct_sites_all bill_cas,
    hz_cust_site_uses_all bill_su,
    oe_order_headers_all oh,
    mtl_system_items msi,
    oe_order_lines_all ol,
    wsh_delivery_details wdd,
    wsh_delivery_assignments wda,
    org_organization_definitions ood,
    wsh_new_deliveries wnd
    WHERE ood.organization_id = wnd.organization_id
    AND wda.delivery_id = wnd.delivery_id
    AND wdd.delivery_detail_id = wda.delivery_detail_id
    AND ol.line_id = wdd.source_line_id
    AND msi.inventory_item_id = ol.inventory_item_id
    AND msi.organization_id = ol.ship_from_org_id
    AND oh.header_id = ol.header_id
    AND bill_su.site_use_id = ol.invoice_to_org_id
    AND bill_cas.cust_acct_site_id = bill_su.cust_acct_site_id
    AND bill_ps.party_site_id = bill_cas.party_site_id
    AND bill_party.party_id = bill_ps.party_id
    AND bill_loc.location_id = bill_ps.location_id
    AND ship_su.site_use_id = ol.ship_to_org_id
    AND ship_cas.cust_acct_site_id = ship_su.cust_acct_site_id
    AND ship_ps.party_site_id = ship_cas.party_site_id
    AND ship_party.party_id = ship_ps.party_id
    AND ship_loc.location_id = ship_ps.location_id

    Ok Thanks, I can see that.
    For my original question on table information -
    Does the shipping and billing address for a delivery get stored within shipping tables (WSH%) or somewhere else? There is a ultimate_dropoff_location_id on wsh_new_deliveries. Is that the 1 single delivery location ID for each delivery?
    For billing, I assume that the delivery will be billed per what each referenced order line states?

  • Populating Ship-to-address

    Hi all,
    I have to populate the default address into ship-to-address/performance location when the user attributes have incorrect address. If the user attributes are correct it is getting defaulted correctly. If it is incorrect i want to populate that adress, so i have implemented the BBP_DOC_CHANGE_BADI (BBP_SC_CHANGE). Here i have internal table it_partner where i can get the address details. And in chaging et_partner table i want to insert a row for partner function '23'. But it is not updating that row.
    Can any one help me how to proceed or any other BADI to update the address. thanks in advance.
    vinoth

    Hi,
       If you are using the table it_partner,you can check for the record where partner no is 27(For Ship to address).But when you are using the CHANGE badi,you need to move the data frm all the importing tables to the changing tables.
    i.e.  move it_item[] to et_item[].
        move it_account[] to et_account[].
        move it_partner[] to et_partner[].
        move it_orgdata[] to et_orgdata[].
        move it_hcf[] to et_hcf[].
        move it_icf[] to et_icf[].
    HTH.
    BR,
    Disha.
    Pls reward points for helpful answers.

  • Address number , person number and address type in Ship to address

    HI All,
    We  are working on SRM 6.0.
    In our system we have ship to address as partner function 27 in  shopping cart line item  .
    If all the line items in the same shopping cart have same address  then also we are getting different  address number , person number and address type in the partner functions of SC line items.
    In ship to partner function,  how the address number , person number and address type is decided?
    Your inputs will be valuable for us.
    Thanks
    Snehal

    Hi
    Ship to address no is set up at company level - you can also create a ship to address and you can main in the attribute ship to address.
    if you enter the ship to address manually then new address number might be created.
    What is the setting in your existing system.
    for eg. create a sc with 2 line item  let one from inherited ship to address and anothe ritem you undo them and enter new address.
    and click partner function 27 for line item 1 and 2 in the bbp_pd and it takes you to crmd_partner table and show you different address no.
    br
    muthu

  • Ship-To Address not getting picked for one particular user

    Hi SRM Gurus,
    I am working on SRM5.0 system with ECC6.0 as backend.
    For one particular SRM user, the Ship-To address number which has been maintained in his attributes through transaction PPOMA_BBP, as default delivery address, is not populated when he creates a SC.
    This default ship-to address is not seen while creating the cart even though the address can be found via the F4 search help in the same SC.
    Can anyone tell me why this is happening for one particular user?
    Please note that this problem is occuring even when the user is shopping for self and creating a new SC (no copying from template). So SAP note 1055203 is not valid in my case.
    I have checked the ADRC table, and this address number exists. Infact, when I assign this address number to some other user's Ship-To attribute, this default delivery address is picked in the SC.
    So, I understand that the problem is not with the address, but with the linking of this address number to this user. I even tried deleting and re-assigning the address number in the attribute to this user. But, it doesnot work still.
    Can anyone help me out?
    Thanks n Regards,
    Ancy

    Ship to address not being picked from attributes for any user it was being picked from Org address data , and I had reset the value
    now , when I am trying to create a SC and I have tried to add delivery address  bby 2 types .
    1. By adding through the portal
    2> i have tried to add the same throgh ppomabbp in user attributes "Delivery address"
    I have also made it default however when I raise the SC it again shows me as blank :
    I am not too sure how do I populate the value that I need . Please see below still the delivery address is blank !!

  • SRM 7.0 Ship-To Address

    All,
    I am trying to determine how I can build and maintain a list of delivery addresses in SRM 7.0. I realize tht all company codes have an address which can be used as a deliver to address, but in 5.0, you could use the transaction "Maintain Address for Own Company" where you could add as many addresses for a company code you wanted. You could then set this address as a "Ship-to" address or something else if desired. The user could have this maintained in PPOMA_BBP in the GUI, OR they could perform a search when creating a shopping cart.
    I can find delivery addresses I create (or have been created based on th ecompany creation) in the table ADRC in the SRM 7.0 GUI, however, I can not select any of these addresses when in the shopping cart as ship-to/delivery addresses.
    Does anyone have any input on this? I don't know how a shopping cart can be created without having to free-text a manual delivery address for every line item of every shopping cart.
    Thanks in Advance -Eric

    Purchasers can set the following addresses and defaults for suppliers or for themselves:
    Ordering address
    Ship-from address
    Invoicing party address
    System administrators can set the following addresses and defaults for their own company (purchasing side):
    Ship-to address
    Invoice recipient address
    ==
    Define the attributes Ship-to address (ADDR_SHIPT) and Company (COMPANY) at least once at a high level in the organizational plan. The number of the organizational unit is then copied to the COMPANY attribute. The Ship-to address and Company attributes are then inherited by organizational units at a lower level in the organizational plan. If you define other organizational units as subsidiaries, you can identify these as separate legal entities with different addresses using these attributes.
    Hi Eric
    if you maintain a address number in the ADDR_SHIPT . you must get a address.
    br
    Muthu

  • Search Ship-to-Address Number per Business Partner

    Hi experts!
    Do you know of a FM which would read all ship-to-addresses of a business partner?
    For example we have Business Partner No. 1 with 50 Ship-to-Addresses. Now we would like to find the adress no. of each of the Ship-to-Addresses either with help of a FM or directly in a table.
    Do you have any ideas?
    Many thanks for your help.
    Corinne

    Hi Corinne,
    I suppose you defined your ship to adresses in the org structure. Then you must find them by using module function BBP_READ_ATTRIBUTES with userid and attribute SHIP_TO. The fm must then show you all the address numbers.
    With these address numbers go to table ADRC where you will have all the address details.
    Hope this will help you.
    Best regards,
    Reward points if helpfull.

  • Monitor the changes of Ship to address in Sales Order

    Hi,
    My client has an requirment which they would like to monitor whether the ship-to-address has been modified after the order were save. 
    e.g. 
    Sold-to 12345
    Ship-to 12356
    SAVE the order
    After the order are sale and sometime later, the user went in VA02 and update the ship-to-address to 23456
    now
    sold-to 12345
    ship-to 23456
    It there anyway we can have a report to check if the ship-to has been changes? 
    thanks,
    Rebella

    Hello Rebella,
    The best option of monitering the changes incurred fro the Ship-to-Party details of a SALES ORDER are as follows:
    If you are interested to pick up the information of changes values of Ship-To-Party from a Sales Order then i think you can use the table VBPA. This table will contain the updated value of Ship-To-Party partner function of a Sales Order.
    Second option would be to use a program which actually run when you open a Sales Order in VA03 --> Environment --> Changes. You can develop a t-code which shall call this program.
    You can also use the T-code AUT10 for tracking changes for a Sales Order.
    Hope these infotmation helps you in resolving your issue and please don't forget to mark your thread as closed.
    Regards,
    Sarthak

Maybe you are looking for

  • ITunes 10.7 Won't open

    Just updated iTunes and now it won't open. Anyone else had the same problem? I've reinstalled, run Disk Utility and all the other normal fixes.

  • Reporting Services? - sorry, none here

    Okay, I updated my Windows 2003 server to ZEN 10.1. I have just the one server and all of my data and my database are here. The install went great, very smooth. I've got a couple of issues that I'll address under different topics. Now, I followed the

  • Anyone heard from Frontier about taking over service on 7/1?

    I'm in an area being taken over by Frontier on July 1 but have not heard anything from them regarding the change.  Have had email from Verizon reminding me that on July 1 they will no longer be my service provider.  Just wondering what to expect on T

  • Forwarding Agent should come automatically in Sales order

    Hi Experts, My user's requirement is Forwarding agent should come automatically in Sales order at partners tab. Can you please suggest what configuration do ineed to do, To get this Forwarding agent automatically in sales order level. Regards, Sunina

  • Problem with opening Workitem from Outlook.

    Hi Experts, When I have have a workitem I receive a mail in my outlook with an SAP Icon. When I click the icon, it opens the SAP screen and I am unable to see my workitem and also cannot close my SAP. I have to close it from Task Manager by clicking