Set bill to and ship to as primary

ple find the link PL/SQL

Perhaps if your link pointed to a question, rather than the enter a new post screen, you would have better luck getting assistance.

Similar Messages

  • Vendor's bill-to and ship-to partner

    Hello,
    I need to identify the Bill-to and Ship-to partner in the account assignment for a vendor.  Can someone please explain how to go about doing this?
    Thank you,
    JR

    ?? Vendors ship to us...we're the bill-to, ship-to from their Sales Order viewpoint....

  • Vendor's bill-to and ship-to partner in SRM

    Hello,
    I need to identify the Bill-to and Ship-to partner in the account assignment for a vendor in SRM. Can someone please explain how to go about doing this?
    Thank you,
    JR

    ?? Vendors ship to us...we're the bill-to, ship-to from their Sales Order viewpoint....

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

  • Populating Bill to and Ship to

    We use a custom process (which calls the order creation API) to create orders. Now, a number of orders got created with the Bill to and Ship to missing. There had been a change of address made using the Telesales form and the change got reflected only at the party level, and not the account level, and so the sites weren't present at the account level, which led to this situation. We are now trying to update these orders, and populate the Bill to and Ship to using API. We have populated the account level tables already. However, when we proceed to using an API to update the order header, we get the error saying that we cannot update the Bill to/Ship to as lines already exist for this order. There are some 10000 orders stuck, and we need a resolution pretty badly, as these orders need to be booked.Can anyone assist?
    thanks!!

    Hello,
    I think you booked sales order and API can update this sales order. Try update sales orders with out API use update in oe_order.... :) First use in test instance.
    Regards,
    Luko

  • Bill to and ship to address on PO

    Asper Business requirement we want  Bill to and Ship to adrresses on PO.How to configure this
    Thx

    Hi,
    You Want this in the PO Print out or in the PO screen it self.
    if it is for PO it self ,you can define a Text feild in the header for the Bill to
    And in the Item text for ship to .
    If you Want the Ship to and Bill to from CSO in Print Out..(if the PO is third part CSO driven PO)
    the Logic is EKKN-- sales order number ,And VBPA for the sales order partner functions
    or else
    The Bill to would be the Plant to which the vendor is raising the invoice
    NOrmally it can be the Plant address from the first line item in the PO,which is not deleted.
    Or the same can be Maintained in standard text  So10.
    Regarding Ship to.address it can be four ways-plant,customer,vendor,address ID
    Plant
    EKPO -Pass PO NUmber - collect the plant and pass in table T001W to get the address number
    and pass the address number to ADRC table
    Customer (third party)--item category  'S"
    IN table EKPO -collect the customer Number-KUNNR and pass that value to KNA1 table and then get the address number and then get the address from ADRC table.
    Direct address number ( created by t code MEAN- Type ME01)
    This adress number-ADRNR can be taken from EKPO table and pass this value to adrc table to get the address.
    Vendor ( subcontracting)
    In this IN EKPO we will have the vendor field -LIFNR and this field collect the vendor number and pass in LFA1 and get the address number and then pass the address number to ADRC table
    If in EKPO,the address number and customer vendor field are blank then it picked from the plant and we have to default the Plant Address
    hope so it helps
    Regards
    Anjanna
    Edited by: Shiva Rajanala on May 6, 2009 4:28 AM

  • What's Impact of changing the customer Name(along with Bill To and Ship To) at the header level after book

    Dear All,
    Revision: 11.5.10.2
    We have a case where some of the orders we have created have incorrect customer name along with incorrect Bill To Ship To.
    All these orders are booked. And their Line Status is either Awaiting Shipping or Supply Eligible.
    What Impact of changing the customer Name(along with Bill To and Ship To) at the header level.
    Thanks,
    Helen

    Hi Helen-Oracle
    As said above there should not be an impact if the warehouse on the order before and after changing the customer, ship to and bill to remains same.
    Additionally, if the item on-hand qty is sufficient to reserve the item and there is no B2B internal requisition kicked off.
    As long as the above conditions are fine, I don't see any impact of changing the customer, bill to and ship to.
    Also, you can run a complete wing to wing cycle in case you really want to test the behavior of the system in such scenario.
    Please feel free to mark the response as helpful or correct if you think it is helpful and to help people easily find help and answered responses.
    Thanks
    Mirza Tanzeel

  • Customer has same Bill-To and Ship-to address...

    If a Customer has same Bill-To and Ship-to address, then is there any way to enter one address and copy to another in the BP-Master??? (in SAP B1 2007 B PL7)

    If you want to copy them automatically, only FMS may not be good enough.  By SDK or add-on wold be better. It is not that difficult to copy them manually . Because not all Customers have same Bill-To and Ship-to address, automation might not be a good idea.
    Thanks,
    Gordon

  • If the bill-to and ship-to are the same

    Hi everybody,
    Can somebody please help me with this? If I have both the bill-to and ship-to party as the same, how can I get that information as two different addresses etc in Sales. I am looking at the KNA1 table and I know I can use partner functions for this but I cannot figure out how to use them to get the information in one report as bill-to and ship-to if the information is the same.
    PLease somebody help.
    Thanks.

    IF it would help here is the code:
    DATA: l_kunnr LIKE vbpa-kunnr.
    SELECT kna1kunnr kna1name1 kna1stras kna1ort01 kna1regio kna1pstlz
    kna1brsch kna1erdat kna1ktokd kna1bran1 kna1~telf1
                     kna1telfx knvpparvw knvp~vkorg
                     knvp~vtweg
                     knvp~spart INTO
                     CORRESPONDING FIELDS OF TABLE
                     typ_tab FROM KNA1 JOIN knvp on
                     kna1~kunnr =
                     knvpkunnr where knvpparvw = 'Z3'.
    LOOP at typ_tab.
      WRITE: / typ_tab.
         WRITE:/ typ_tab-kunnr,typ_tab-name1,typ_tab-stras,   typ_tab-ort01,
                 typ_tab-regio, typ_tab-pstlz,'USA',
                 typ_tab-brsch, typ_tab-erdat, typ_tab-bran1, typ_tab-telf1,
                 typ_tab-telfx, typ_tab-parvw, typ_tab-vkorg,
                 typ_tab-vtweg, typ_tab-spart.
         SELECT kunnr INTO l_kunnr FROM VBPA
         WHERE kunnr EQ
         typ_tab-kunnr and parvw EQ 'RE'.
         ENDSELECT.
      WRITE: / l_kunnr.
         SELECT name1 stras ort01 regio pstlz INTO TABLE   typ_kna1 FROM
         kna1 where kna1~kunnr = l_kunnr.
         LOOP AT typ_kna1.
             WRITE:/ typ_kna1-name1,typ_kna1-stras,typ_kna1-  ort01,
                    typ_kna1-regio,typ_kna1-pstlz.
             WRITE:/.
        ENDLOOP.
    ENDLOOP.
    Thanks & regards,
    AM

  • Tax Determination Bases on Bill to Party and Ship to Party

    Hi Guru ,
    I have a requirement Tax should be determined based on Bill to Party and Ship to Party.
    If Bill to and Ship to are  Overseas Customers then '0' TAX.
    For all remaining Customers 7 % Tax
    Could you please advice
    Thanks

    Hello,
    Define two  ACCESS SEQUENCE with the combination of Region code/Country key
    Define the two TAX  CONDITION types and assign the Access sequence one for each scenario
    In OVK1 assign the Country key and TAX CONDITION and in OVK3 assign the tax category as 0 for the Overseas customer and 1 for Domestic customer
    Then in VK11 maintain the condition records as 0% for Overseas customers and  7% for the Domestic customers.
    Regards,
    santosh

  • Please review your billing information and approve it

    PLEASE help me before I pull out my hair!  I have a photo book I've created in iPhoto 09.  It's ready to be ordered (in-time for Christmas!) and no matter what I do, it comes back with a "please review your billing information and approve it".  There are two things in this repeated (at least 20 times) process that I find interesting 1) every time I re-enter my account info, it says I have an invalid city, state zip code combination and 2) when I try to check out my preferences in iPhoto it freezes up (spinning beach ball) and I have to force quit.  Here's what I've done already:
    1. restarted iPhoto
    2.  restarted computer
    3.  re-entered billing information in apple store
    4.  enabled one-click purchasing and express checkout options in apple store
    5.  trashed iPhoto preferences
    6.  deleted my keychain preferences
    7.  re-entered account info in iPhoto
    8.  double-checked that I choose United State
    9.  Changed credit cards and tried all the above over again
    I'm out of ideas.  Someone PLEASE help me figure out what is going on!

    every time I re-enter my account info, it says I have an invalid city, state zip code combination
    The zip code error suggests you are ordering from an Apple Print Products Store in the wrong country.  Your Billing Address, Shipping Address, Credit Card, Apple ID must all be valid in the same country as the Apple Store is you are ordering from. Is the region setting in your System Preferences > Language & Region the same as the country of your Billing Address and Shipping Address?

  • One sold to party, multiple ship to, bill to and payers

    Hi all,
    My requirement is that one sold to party should have three ship to, two bill to, and one payer. In sap partner determination how we have to configure this, can we use single account group and also tell me step wise process. Also want to know that can we change partners at sales order level, if so what settings we have to do and how this can be done at order level
    Points assured for benificial answers.
    Sunanda.P

    Hello Sunanda,
    In VOPA transaction code, you create a partner determination procedure. Here you specify the partner functions to be used & also mark the mandatory partner functions.
    This partner determination procedure is then assigned to the account group. Basically the standard account group for "sold to party - 0001" has all partner functions "SP", "SH", "BP" & "PY". Your requirement demands separate partner functions for SP, SH, BP & PY.
    So you will have to create 4 different partner determination procedures in VOPA.
    ZSOL - SP
    ZSHI - SH
    ZBIL - BP
    ZPAY - PY
    Create similar acount groups ZSOL, ZSHI, ZBIL & ZPAY in transaction code OBD2 & do the appropriate field selection for them.
    Now assign the partner determination procedures to the account groups in VOPA.
    ZSOL = ZSOL
    ZSHI = ZSHI
    ZBIL = ZBIL
    ZPAY = ZPAY
    Also assign the individual partner functions to the account group as mentioned below:
    ZSOL = SP, SH, BP, PY
    ZSHI = SH
    ZBIL = BP
    ZPAY = PY
    For ZSOL we assigned all partner functions because, when you will create a sold to party customer, you also have to specify who will the ship to party, bill to party & payer customers for the sold to party.
    Now if you want you can assign the same number range to all account groups (assign a single person to create the customer master. So whenever a new customer is created, the partners will be created in line which will be very helpful)
    Assume the number range is "0000010000 to 0000099999"
    Create SP for 10000 = one sold to party
    Create SH for 10001 = ship to party 1
    Create SH for 10002 = ship to part 2
    Create SH for 10003 = ship to party 3
    Create BP for 10004 = bill to party 1
    Create BP for 10005 = bill to party 2
    Create PY for 10006 = one payer
    Go to XD02 - select the customer 10000 - go to sales area data - partner functions.
    Here in the "PF" column enter SH & in number enter 10001
    Here in the "PF" column enter SH & in number enter 10002
    Here in the "PF" column enter SH & in number enter 10003
    Here in the "PF" column enter BP & in number enter 10004
    Here in the "PF" column enter BP & in number enter 10005
    Here in the "PF" column enter PY & in number enter 10006
    So you have assigned the relevant partners to the sold to party.
    Now when you create a sales order, after entering the sold to party when you press enter, the system will display a pop up asking fro selecting the relevant ship to, bill to & payer customers for that sales order.
    For your second question - partners change in sales order:
    Go to transaction code VOPA - select sales document header - click on partner procedures - double click on "TA-standard order" - here you will see the partner function & the columns & the entries shoulbe as under:
    Func..........Desc................Not changeable.............Mandat. Func.......Source............Seq.
      SP.........Sold to party...............X.....................................X.....................---.................--
      SH.........Ship to party..............--...................................X.....................-..................--
      BP.........Bill to party................--...................................X.....................-..................--
      PY...........Payer......................--...................................X.....................-..................--
    If you are not able to find the partner function either enter the partner function in the white box at the bottom, or place cursor on the partner function & press page down key on the key board.
    This setting will allow you to change the partner in the sales order.
    Hope this clarifies your doubt.
    Thanks & regards,
    Allabaqsh G. Patil

  • Change the Primary Address, Billing Address, or Shipping Address

    We currently allow the users to add multiple addresses per account, we need to have the ability to change which is the primary address, which is the billing address and which is the shipping address. Currently is the addresses view we can see the Billing and Shipping checkbox but can not edit them. We are also unable to see the primary checkbox but can load to that field. How can we allow the users to edit the Primary, Billing and Shipping checkboxes in the Addresses view?

    Brian,
    Name your address fields Address 1 and Address 2 and then match your picklists to this, you might need to manually create the 3rd address fields. Think I may have missed the point here, i've just checked an environment and see you are talking about the Address Related information not the main address information in the body of the Account record. Sorry, can't help ;-D
    Alex
    Edited by: AlexN (CRMNow) on Oct 17, 2008 10:38 AM

  • Open orders and Shipped not billed orders

    Hi All,
                     What is the fastest way to calculate the open orders amount and shipped not billed amount for a given customer.
    Thanks
    Venugopal Reddy

    Can u try this option and see if this is increasin your performance.
    For the billing documents ...
    Goto table VBUK and check the fields LFSTK = 'C' " Delivery completed and
                                                            FKSTK NE 'C' . "billing open
    At header level check that GBSTK ne C "over all processing status is open .
    This will yield you the list of open Invoices ..
    You need to bring in the select query with a join on VBRK and VBUK ..
    once u get the list of open invoices  then calculate the open qty from VBRP and VBUP where VBUP-GBSTA ne 'C'.
    here pick the qty from vbrp and sum it up to check the open qty.
    just like this ..
    SELECT vbeln
             fkart
             kunag
             gbstk
             INTO TABLE it_billing_h
             FROM vbrkuk                       "VBRKUK is a DB view " VBAK+VBUK
             WHERE vkorg IN so_vkorg
             AND vtweg IN so_vtweg
              AND spart IN so_spart
             AND kunag IN so_kunnr
             AND gbstk NE 'C'.
        IF NOT it_billing_h[] IS INITIAL.
          SELECT c~vbeln
                 c~posnr
                 c~matnr
                 c~fkimg      "---->open qty
                 d~fksta
                 d~fksaa
                 d~uvfak
                 d~fkivp
                 d~fssta
                 d~gbsta
                 INTO TABLE it_billing_items
                 FROM vbrp AS c JOIN vbup AS d
                 ON dvbeln EQ cvbeln
                 AND dposnr EQ cposnr
                 FOR ALL ENTRIES IN it_billing_h
                 WHERE d~vbeln EQ it_billing_h-vbeln
                 AND d~gbsta NE 'C'.
    use control break and sum the qty ..
    hope this helps ,
    Regards,
    Vijay

  • How can I set up my time capsule as the primary base station with a centurylink router? I'm trying to extend my coverage, increase signal strength, and be able to connect a printer.

    I recently moved and now I'm trying to set up my Time Capsule as the primary base station or router with an existing network that has a Centurylink modem/router. The TC still has the settings for my old network. I also have backups on it. I have the data backed up to another HD so it's not an issue to return it to factory settings if doing so deletes the back ups. Do I need to restore it to the factory settings to set it up? Also, what settings would I select on the TC (and the Centurylink modem/router) in order for the TC to serve as the router, instead of the Centurylink router? I want to be able to use the TC to back up my Mac's, print wirelessly, and improve overall performance. I tried setting the TC up and ended with 2 different networks. Can anyone please help me with this?

    The TC has to plug into the existing modem router by ethernet.. you cannot use wireless.
    You have a choice of which is router.. only if Centurylink agree to bridge their modem router.. this has to be done by the ISP and often they do not allow it.
    Is your broadband cable or adsl or fibre or ???
    If it is cable and you are allowed to purchase your own cable modem pick a pure modem version with no router in it.. plug the TC into it by ethernet.
    Setup the TC in DHCP and NAT mode.. (depending on broadband type).
    You must reset the TC to factory to do the setup.. no files are lost at all.
    Here is my current recommended setup.. with Yosemite life has become harder than ever.
    Factory reset universal
    Power off the TC.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the TC to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    N.B. None of your files on the hard disk of the TC are deleted.. this simply clears out the router settings of the TC.
    Setup the TC again.
    ie Start from a factory reset. No files are lost on the hard disk doing this.
    Then redo the setup from the computer with Yosemite.
    1. Use very short names.. NOT APPLE RECOMMENDED names. No spaces and pure alphanumerics.
    eg TCgen5 and TCwifi for basestation and wireless respectively.
    Even better if the issue is more wireless use TC24ghz and TC5ghz with fixed channels as this also seems to help stop the nonsense. But this can be tried in the second round.
    2. Use all passwords that also comply but can be a bit longer. ie 8-20 characters mixed case and numbers.. no non-alphanumerics.
    3. Ensure the TC always takes the same IP address.. you will need to do this on the main router using dhcp reservation.. or a bit more complex setup using static IP in the TC. But this is important.. having IP drift all over the place when Yosemite cannot remember its own name for 5 min after a reboot makes for poor networking. If the TC is main router it will not be an issue.
    4. Check your share name on the computer is not changing.. make sure it also complies with the above.. short no spaces and pure alphanumeric.. but this change will mess up your TM backup.. so be prepared to do a new full backup. Sorry.. keep this one for second round if you want to avoid a new backup.
    5. Mount the TC disk in the computer manually.
    In Finder, Go, Connect to server from the top menu,
    Type in SMB://192.168.0.254 (or whatever the TC ip is which you have now made static. As a router by default it is 10.0.1.1 and I encourage people to stick with that unless you know what you are doing).
    You can use name.. SMB://TCgen5.local where you replace TCgen5 with your TC name.. local is the default domain of the TC and doesn't change.
    However names are not so easy as IP address.. nor as reliable. At least not in Yosemite they aren't. The domain can also be an issue if you are not plugged or wireless directly to the TC.
    6. Make sure IPv6 is set to link-local only in the computer. For example wireless open the network preferences, wireless and advanced / TCP/IP.. and fix the IPv6. to link-local only.
    There is a lot more jiggery pokery you can try but the above is a good start.. if you find it still unreliable.. don't be surprised.
    You might need to do some more work on the laptop itself. eg Reset the PRAM.. has helped some people. Clean install of the OS is also helpful if you upgrade installed.
    Tell us how you go.
    Someone posted a solution.. See this thread.
    Macbook can't find Time Capsule anymore
    Start from the bottom and work up.. I have a list of good network practice changes but I have avoided Yosemites bug heaven.
    This user has had success and a few others as well.
    RáNdÓm GéÉzÁ
    Here is why Yosemite has fundamental issues.
    http://arstechnica.com/apple/2015/01/why-dns-in-os-x-10-10-is-broken-and-what-yo u-can-do-to-fix-it/

Maybe you are looking for

  • I can't print anymore, the "help" button doesn't work, and Firefox always sets to "Never Remember History" even if I change it

    SO many issues with Firefox now! For one, it crashes quite a bit. I submit the crash report, and go from there. Keeps happening. But the main thing is this: I go to "Options" and under "Privacy" it has "Never remember history" - I change it to "use c

  • How to delete preferences in Motion 5.1.1

    Just thought I'd share this. I saw a post on fcp.co that they had introduced a way to delete the preferences for FCP in the latest update. I looked it up, and Motion 5.1.1 now has the same option.  If you hold down Command+Option when launching the a

  • Network issue between Macbook Pro and Windows

    I have a Macbook Pro 2012 model running 10.8.5. Also have a Win7 PC. When both are connected to the home router via wire (or the Windows on wireless), everything is fine from network connectivity point of view. However if I move the Mac to Wireless (

  • Re: want to  Know Some thing about  Following

    Hi I am New to reports and don't know waht are the function of these menu's Tell Me more about these. 1) File -----------------> Distributions ????? 2) Program ----------------> Tracing??? 3) Layout ----------------> Anchor?? and a property Base Prin

  • Photoshop 3.0

    Anybody got any idea how to get an unlock code for Adobe Photoshop Album Starter Edition 3.0? Thanks! Bossman96