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.

Similar Messages

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

  • Ship-To Address not trasferred to backend

    Hello all,
    EBP 5.0, R/3 4.7
    I have address maintained in EBP via web and added it to user in ppoma_bbp as default.
    In SC when user check details Ship-To Address is appropriate, but in backend in Purchase Requsition delivery address is from associated plant.
    Looking in BBP_PD for item Ship-To Address tables:
    CRMD_PARTNER - ADDR_NR right one,
    BBP_PDBGP no entries,
    BUT000 root organization address,
    ADDR3_DATA empty.
    Grateful
    Gordan

    Hello Gordan
    By default, the delivery address is not transfered.
    There is an consulting OSS note on this topic:
    you have to change B470_REQUISITION_CREATE (or copy it and call it with driver BADI) to enable the use of table "requisition_addrdelivery":
    create requistion on backend system
        CALL FUNCTION 'BAPI_REQUISITION_CREATE'
          DESTINATION destination
          EXPORTING
            skip_items_with_error          = skip_items_with_error
          IMPORTING
            number                         = number
          TABLES
            requisition_items              = requisition_items_exit
            requisition_account_assignment = requisition_account_assignment
            requisition_item_text          = requisition_item_text
            requisition_limits             = requisition_limits
            requisition_contract_limits    = requisition_contract_limits
            requisition_services           = requisition_services_exit
            requisition_srv_accass_values  = requisition_srv_accass_values
            return                         = return
            requisition_services_text      = requisition_services_text
          requisition_addrdelivery       = req_addrdelivery
          EXCEPTIONS
            communication_failure          = 1  MESSAGE msg_text
            system_failure                 = 2  MESSAGE msg_text
            OTHERS                         = 3.
    Rgds
    Christophe

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

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

  • 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

  • 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

  • How to add custom field in delivery address/performance location tab in SRM shopping cart and Ship to address Pop-up in SRM PO?

    Hi Experts
    i have a reuirement where i have to add custom field in delivery address/performance location tab in SRM shopping cart and Ship to address Pop-up in SRM PO
    i am doing below steps for this.
    1. Adding custom field ZZfield in structure INCL_EEW_PD_PARTNER_CSF by  using  append structure.
    2. Spro ->Supplier Relationship Management -> SRM Server -> Cross application basic settings -> Extensions and field controls (personalization) -> Configure field control ->Configure Control for Fields of Substructures
    then click on  "Metadata for Fields of Substructures and Table-Like Enhancements"  
    add the below entry
    Bus. Object Set Type  : I am trying 7 and 29
    Structure Field Name  : ZZfield
    Bus. Object Type       : BUS2121/BUS2201
    Set Level                    : Item
    Field Visible :  Check box should be checked
    Field Enable :  check box should be checked
    Can anyone has the idea of this?
    Thanks
    Rohit

    Hello Rohit,
    Please create a enchancement for component  /SAPSRM/WDC_UI_DO_SHIPTO.
    Add new input field and label in view V_DODC_SHIPTO.
    Bind the input field value with field ZZfield from structure  /SAPSRM/WDC_UI_DO_SHIPTO in the context node SHIP_TO .
    Regards,
    Neelima

  • Warehouse Ship to Address

    Hi Experts,
    I've come across some interesting behavior that I don't fully understand and cannot find any documentation on an hoping someone can shed some light in these dark corners of SAP B1.
    In the "Shipping Types - Setup" window (Administration->Setup->Inventory->Shipping Types) there is a field for Name (OSHP.TrnspName) and one for Web Site (OSHO.WebSite).  The Web Site field is the one I'm curious about.  It appears to have nothing to do with websites.  In this (Shipping Types - Setup - SAP Business One 9.0 - SAP Library) documentation, it says "Enter the Web site address for the shipping company.".  I am unclear on where this website would ever be linked to.  But here is the really interesting behavior.  If you put a warehouse code in there (OWHS.WhsCode) say for a customer pick up at the warehouse shipping type, then Sales Orders, Purchase Orders etc. will pull in the warehouse address in the Ship To address.  This is great that we have this functionality, but where is it documented and why do we put the warehouse code in the web site field on the shipping method table (OSHP that incidentally is called the "Delivery Types" table and the "Shipping Types" table is OENT)?  What am I missing here?  How many other Easter Eggs is SAP hiding on me?
    Thanks in advance for any insight!
    By the way, I've tested in both 8.81 and 9.0 and it is the same in both.

    Hi,
    Please check that you have assigned default warehouse to the user in the user setup i.e. Setup---> General --> Users (Assign the warehouse to the defaults field in current window)
    Regards

  • Ship to address

    hi experts,
    I have bill to and i need to get ship to address .
    how can i get it .
    thanks,
    neo

    thanks for your reply.
    I need this fields for customer.
    name1
    name2
    STRAS
    LAND1
    PSTLZ
    ORT01
    REGIO
    i check kna1 table .this all fields are their.
    so can i use ship to number as kunnr and get this all field .
    plese tell me if i am wrong.
    thanks,
    Neo

  • Ship To Address Query

    Hi Gurus,
    I am trying to add a oe_order_lines_all table to the following Ship to Address Query but joining the table is giving duplicate results. Could you please let me know the right joins
    select distinct ooh.order_number,hl.address1,hl.address2,hl.address3,hl.city,
    hl.state,hl.postal_code,poh.segment1 po_number,poh.approved_date,
    hpz.party_number,hca.account_number,ool.fulfillment_date,
    ooh.booked_date,ooh.booked_flag,ooh.ship_to_org_id
    from apps.oe_order_headers_all ooh,
    apps.oe_order_lines_all ool,
    apps.hz_cust_site_uses_all hcsu,
    apps.hz_cust_acct_sites_all hcas,
    apps.hz_cust_Accounts_all hca,
    apps.hz_parties hpz,
    apps.hz_party_sites hps,
    apps.hz_locations hl,
    apps.oe_drop_ship_sources odss,
    apps.po_headers_all poh
    where odss.header_id = ooh.header_id
    AND odss.line_id = ool.line_id
    AND odss.po_header_id = poh.po_header_id
    and hcsu.site_use_id = ooh.ship_to_org_id
    AND hca.party_id = hpz.party_id
    and hcas.cust_acct_site_id = hcsu.cust_acct_site_id
    and hca.cust_account_id = hcas.cust_account_id
    and hps.party_site_id = hcas.party_site_id
    and hpz.party_id = hps.party_id
    and hl.location_id = hps.location_id
    Regards

    Hi Sandeep,
    I am not getting any duplicates when i remove ool field from the SELECT statement
    Regards

  • Ship-to address changes on customer master not updating orders

    We have recently noticed that ship-to address changes on the customer master made with XD02 no longer show up on existing standard orders.  Similar changes to the sold-to addresses do show up but no tthe ship-to addresses.  Does anyone know how we can resolve this problem?

    hi jeff,
    the adresses of a partner is
       - with reference to the master-data  ( if unchanges in the Order )
       - of copied in the order and then changed and saved onlyy for the order.
    in the first case, a change of the main data will effect a change in the order.
    in the second case, the change of the main data will not change the order, data - they are separate.
    you can see this in se16 / table vbpa.
    look at the adressnumber.
    Adressnumbers of 9++++ are of the 2nd - manual type.
    I guess, in the ship to partner, there is done a manual change in the order.
    in solt to data normally you don't need such a change. therfor the sold-to partner will get the changes of masterdata -- the ship to partner has manual adress of the orden.
    hans

  • Needed Information for Ship to PO# , Ship to address using VBAK-VBELN

    Hi Gurus,
    Please tell me the table name, field name for fetching the Ship to PO# , Ship to address, Delivery unit of measure,Confirmed ship date,Customer PO date , Storage Location Using the Sales Document: Header Data (VBAK) - Sales Document (VBELN)  .
    TCODE :- VA02
    Any Suggestions welcome.
    Thanks,

    Starting with VBAK-VBELN
                    VBKD-VBELN = VBAK-VBELN  and get
                               --> Ship to PO number = VBKD-BSTKD_E
                               --> Customer PO date = VBKD-BSTDK
    For Ship to Add go to VBPA (partner function) table
                     VBPA-VBELN = VBAK-VBELN & VBPA-PARVW = 'SH' (Ship to party)
           get VBPA-KUNNR  and VBPA-ADRNR for above selection. This is your Ship to Party and address number for ship to party.
           Do not use KUNNR from VBAK that is your Sold to Party.
       --> Now either go to table KNA1 with VBPA-KUNNR and get address or better go to ADRC table with VBPA-ADRNR and get address from appropriate fields based on requirement.
    For Delivery Unit of Measure and Storage Location go to table LIPS
              VBAK-VBELN = VBAP-VBELN
              LIPS-VGBEL = VBAP-VBELN  &  LIPS-VGPOS = VBAP-POSNR
                      --> Delivery UoM = LIPS-MEINS
                      --> Storage loc  = LIPS-LGORT
    For Confirmed Ship date
              VBEP-VBELN = VBAP-VBELN  & VBEP-POSNR = VBAP-POSNR
                   --> Confirmed Ship date = Goods Issue Date = VBEP-WADAT

Maybe you are looking for