Can we use ship-to-party customer  as sold-to ??

Hello evry one ,
                        i defined a customer as a ship-to-party. and when i was using this customer as sold-to-party i was given an error saying customer record does not exist.  how can i use a ship-to-party customer as sold to party..
but when u create a customer as sold to party i  can use it any way ...
let me know if  any one have any idea ..
points for sure
thanks
mmn

Hi,
Sold to Party can perform other partner like Ship to Party, Bill to Party and Payer,
But Other Partner Functions can not perform the Sold to Party Partner Funtion.
Ex :- If there in a sale only, then customer (Sold to Party) comes into picture like
Ship to party( to which adress to goods to be sent), Bill to Party( for which the Bill
to be sent) and Payer ( who settels the Final Amount).
If there in No Sale other Partner Functions like Ship to, Billl to and Payer will not
comes into Picture.
Hope this Clarifies your Doubt and Please Reward If Really helpful,
Thanks and Regard,
Sateesh.Kandula

Similar Messages

  • Fetchi address1, address2,address3 and address4 of a ship to party customer

    Hi,
    How to fetch address1, address2,address3 and address4 of a ship to party customer. Is there any function module available?
    Thanks,
    Kumar

    Kumar,
    you can use BAPI_CUSTOMER_GETDETAIL2
    either:
    * Read a person address:
      DATA: objtype LIKE bapi4002_1-objtype,
            obj_id LIKE bapi4002_1-objkey,
            obj_id_ext LIKE bapi4002_1-extension,
            context LIKE bapi4002_1-context,
            address_number LIKE adrc-addrnumber,
            person_number LIKE adrp-persnumber,
            bapiad2vl LIKE bapiad2vl OCCURS 0,
            bapiadtel LIKE bapiadtel OCCURS 0,
            bapiadfax LIKE bapiadfax OCCURS 0,
            bapicomrem LIKE bapicomrem OCCURS 0,
            return LIKE bapiret2 OCCURS 0.
    * Assign the following object type and key to the private address of a
    * customer contact person
      objtype    = 'BUS1006001'
      obj_id     = <partner number (KNVK)>
      obj_id_ext = ' '
      context    = '0004'
    * call GetDetail module
      CALL FUNCTION 'BAPI_ADDRESSPERS_GETDETAIL'
         EXPORTING
              obj_type      = objtype
              obj_id        = obj_id
              obj_id_ext    = obj_id_ext
              context       = context
         IMPORTING
             address_number = address_number
             person_number  = person_number
         TABLES
             bapiad2vl      = bapiad2vl
             bapiadtel      = bapiadtel
             bapicomrem     = bapicomrem
             return         = return.
    Edited by: Amit Gujargoud on Jul 2, 2008 3:38 PM

  • How can I use a 3rd party XML parser such as xerces with OC4J ?

    Hi all tech experts,
    I am using Oracle Application Server 10g Release 2 (10.1.2) and i have
    installed Portal and Wireless and OracleAS Infrastructure on the same
    computer.
    i tried all the solutions on this thread
    Use of Xerces Parser in out application with Oracle App Server 9.0.4
    but still fighting.
    I have also posted this query on OTN on following thread
    How can I use a 3rd party XML parser such as xerces with OC4J?
    but no reply....
    Please help me on this issue.
    Since OC4J is preconfigured to use the Oracle XML parser which is xmlparserv2.jar.
    i have read the following article which states that
    OC4J is preconfigured to use the Oracle XML parser. The Oracle XML parser is fully JAXP 1.1 compatible and will serve the needs of applications which require JAXP functionality. This approach does not require the download, installation, and configuration of additional XML parsers.
    The Oracle XML parser (xmlparserv2.jar) is configured to load as a system level library of OC4J through it's inclusion as an entry in the Class-Path entry of the oc4j.jar Manifest.mf file. This results in the Oracle XML parser being used for all common deployment and packaging situations. You are not permitted to modify the Manifest.mf file of oc4j.jar.
    It must be noted that configuring OC4J to run with any additional XML parser or JDBC library is not a supported configuration. We do know customers who have managed to successfully replace the system level XML parser and the Oracle JDBC drivers that ship with the product, but we do not support this type of configuration due to the possibility of unexpected system behavior and system errors that might occur from replacing the tested and certified libraries.
    If you absolutely must use an additional XML parser such as xerces, then you have to start OC4J such that the xerces.jar file is loaded at a level above the OC4J system classpath. This can be accomplished using the -Xbootclasspath flag of the JRE.
    i have also run the following command
    java -Xbootclasspath/a:d:\xerces\xerces.jar -jar oc4j.jar
    but no success.
    How could i utilize my jar's like xerces.jar and xalan.jar for parsing instead of OC4J in-built parser ?
    All reply will be highly appreciated.
    Thnx in advance to all.
    Neeraj Sidhaye
    try_catch_finally @ Y !

    Hi Neeraj Sidhaye,
    I am trying to deploy a sample xform application to the Oracle Application Server (10.1.3). However, I encountered the class loader issue that is similar to your stuation. I tried all the three solutions but the application is still use the Oracle xml paser class. I am wondering if you have any insight about this?
    Thanks for your help.
    Xingsheng Qian
    iPass Inc.
    Here is the error message I got.
    Message:
    java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement
    Stack Trace:
    org.chiba.xml.xforms.exception.XFormsException: java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement
         at org.chiba.xml.xforms.Container.dispatch(Unknown Source)
         at org.chiba.xml.xforms.Container.dispatch(Unknown Source)
         at org.chiba.xml.xforms.Container.initModels(Unknown Source)
         at org.chiba.xml.xforms.Container.init(Unknown Source)
         at org.chiba.xml.xforms.ChibaBean.init(Unknown Source)
         at org.chiba.adapter.servlet.ServletAdapter.init(ServletAdapter.java:153)
         at org.chiba.adapter.servlet.ChibaServlet.doGet(ChibaServlet.java:303)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement
         at org.chiba.xml.xforms.Instance.iterateModelItems(Unknown Source)
         at org.chiba.xml.xforms.Bind.initializeModelItems(Unknown Source)
         at org.chiba.xml.xforms.Bind.init(Unknown Source)
         at org.chiba.xml.xforms.Initializer.initializeBindElements(Unknown Source)
         at org.chiba.xml.xforms.Model.modelConstruct(Unknown Source)
         at org.chiba.xml.xforms.Model.performDefault(Unknown Source)
         at org.chiba.xml.xforms.XFormsDocument.performDefault(Unknown Source)
         at org.chiba.xml.xforms.XFormsDocument.dispatchEvent(Unknown Source)
         at org.apache.xerces.dom.NodeImpl.dispatchEvent(Unknown Source)
         ... 18 more

  • Ship to party (customer )to be filled automatically.

    I have a customer (ship to party) number with me
    I want too create a sales order for him through VA01.
    I know the customer number prior to creation of all my sales orders.
    My requirement is after  filling the first screen of
    {  Document type ,sales Org,Distr.Channel ,division.}
    and then going into next screen ,
    I want the ship to party (customer )to be filled automatically with the number.

    Hello ,
    u can do that as follows.
    see the exit available .
    Enhancement     Impl      Exp  V45A0002 Predefine sold-to party in sales document                                                                               
    Function exit                  EXIT_SAPMV45A_002                                                                            
    in that include u write the following code
    E_KUNNR = <custnumber >.
    but all this u have to do with CMOD tcode . general procedure for exits .
    if u do this

  • Can i use a 3rd party superdrive with my Macbook Air?

    Hi,
    As my title says, Can i use a 3rd party superdrive with my Macbook Air rather than the Apple drive?
    Thanks.

    Mark Thornton wrote:
    Hi,
    As my title says, Can i use a 3rd party superdrive with my Macbook Air rather than the Apple drive?
    Thanks.
    This one works just awesome:
    http://www.newegg.com/Product/Product.aspx?Item=N82E16827136201&cmre=external_dvd_burner_usb-_-27-136-201--Product

  • Maxinum number of ship-to party for a sold-to party?

    Dear Expert,
    Is there any limitation on the number of the ship-to party that a sold-to party can have? I was told that one sold-to party can have maximally 999 ship-to party? Is it true? If it is true, what if a sold-to party does have more than 999 ship-to parties? 
    This could be the potential problem of my client, because the number of the ship-to party for one sold-to party is increasing intensively and may exceed the LIMIT in the future?
    Any input will be appreciated.
    Thanks!
    Regards,
    Wang Hui

    Hi Bashir,
    The problem has been solved.
    Actually in sales order, you are allowed to put ship-to party which is not linked to the sold-to party in the master data, that means you can manually key in any ship-to party as you like. I didn't know this before:(
    In our case, the orders are transmitted via EDI and created automatically, so the ship-to party is also determined automatically in a user exit, so we can have as many ship-to party as we want.
    Thanks!
    Regards,
    Wang Hui
    >
    Bashir wrote:
    > Hi,
    >
    >
    > I will need more information on your query to solve
    > Can you provide the details of industry ur client belongs to
    >
    >
    > As it will be more complex to select 1 ship to party from the xxxx numbers, Can you try this with customer Hierarchy functionality.
    >
    >
    > Regards,
    > Bashir

  • Ship to party change to Sold to party

    Hi,
    I want to change the following code which is for Ship to party, to for Sold to Party. How to go ahead?
    <select name="headerShipTo">
    <isa:iterate id="shipTo"
    name="<%= MaintainBasketBaseAction.SC_SHIPTOS %>"
    type="com.sapmarkets.isa.businessobject.ShipTo">
    <% String selected = "";
    if (soldTo.equals(header.getSoldTo())) {
    selected = " selected";
    } %>
    <option <%= selected %> value="<%= shipTo.getTechKey() %>"><%= shipTo.getShortAddress() %></option>
    </isa:iterate>
    </select>
    IS MaintainBasketBaseAction.SC_SOLDTOS will work? I am not able to find API for this.
    Shaun.

    Hi
    Use XD07 Transaction code.
    regards
    Srinivas

  • Validate ship to party depending on sold to party

    i need Validate ship to party depending on sold to party from the table knvp in which userExit should i write the  code??

    Hi,
    sold to party is the partner who ordered , and the shipt o party is where actually the goods to be delivered.
    if in an organization it has one sales department and one manufacturing department then sales Dept orders goods on behalf of Manufacturing plant and the good will be delivered at plant premises. here sales dept is sold to party and Manufacturing plant in ship to party.
    Go through this link it is very useful for u
    https://forums.sdn.sap.com/click.jspa?searchID=12912281&messageID=3626601
    Thanks&Regards,
    Naresh

  • How can I use this?? Custom css style.

    !http://unisonsoft.iptime.org:8000/sample.jpg!
    Please look at this image.( Dashboard -> page option -> section properties -> Custom CSS Style Options (HTML Only) -> Use Custom CSS Style)
    I want to use Custom Css Style.
    What can I do for this?
    Thank you.
    Edited by: user626249 on 2009. 7. 28 오후 10:28

    Thank you Mr.Jhon and everyone.
    My client asked me "how can I see the pages on dashboard with many CSS"
    Sorry...Actually I can`t use ENGLISH very well...
    For example)
    Page1 has two tables.
    These table`s font-size is 12pt.
    page2 has two tables too.
    These table`s font-size is also 12pt.
    In this case, I only want to change table`s font-size 10pt in page2.
    The font is set the file "/OracleBI/oc4j_bi/j2ee/home/applications/analytics/analytics/res/s_oracle10/b_mozilla_4/views.css"
    If I change this css file, page1 and page2 has same format of tables.
    So I need to change olny one page`s table font-size using Custom Css Style.
    This is my best writting...Sorry...;;;;;;;;;;;;;;;;
    Thanks everyone...If you understand me, please help me.^^
    Edited by: user626249 on 2009. 7. 29 오전 2:22

  • Ship to Party / Customer address is not correct in Third party PO Printouts

    Hi,
    I am creating Third party PO, concevrted from Qutation-SalesOrder -automatic PR to PO.   In these  POs,  Ship to Party address is replaced by Vendor's address in PO Printout(ME9F).
    How to avoid this? Is there any setting avilable in SD or MM.
    This problem occures in Production server with only few orders-  not in all POs  and in Quality Server it is working fine without any problem.
    In all problematic POs, it is observed that Customer code appaers in PO -Delivery tab in field "Address" insted of in field" Customer" 
    Please try to give solution,
    Thanks & Regards
    Ajay.

    hi
    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.....................-..................--
    This setting will allow you to change the partner in the sales order.
    Hope this clarifies your doubt.

  • Can I use the third party software to backup my system?

     I have bought a new Thinkpad, and I just want to backup my system, but Lenovo Onekey recovery is not easy to use. I confess that it is very concise and powerful. But, I have to say some disadvantage, that is, It need to press the button and shut all computer. I want to backup my computer silently, and the process won't affect my other operation. I have searched a software- AOMEI Onekey Recovery, but it is the third party software, should I use it to backup my system. there seems to be more powerful in their page http://www.backup-utility.com/onekey-recovery.html, how should I determine? could anyone tell me the advantage or disadvantage?

    Can I use the new Time Capsule to backup my mid 2010 Macbook Pro?
    Yes, if you are asking about using Time Machine to backup the Mac.
    Also can I want to free up my hard disk, can I save my photos and files on the time capsule and later access through wifi?
    You are not thinking of deleting the photos and files on your Mac, are you?  If you do this, you will have no backups for those files.
    Another concern is that Time Machine backs up the changes on your Mac. At some point, Time Machine will automatically delete the photos and files from the Time Capsule.....you just don't know when this might occur.
    In other words, only delete files from your Mac that you can afford to lose.

  • Can I use "dvt" function for customizing the chart format in OBIEE 11g?

    Hi,
    ".pcxml" file cannot be found in OBIEE11g. However, can I use "dvt" function for customization? If yes, how?
    Reference for dvt function:
    http://docs.oracle.com/cd/E23943_01/apirefs.1111/e12418/tagdoc/dvt_pieGraph.html

    Hello,
    I know it's possible, because i already found some blogs about changing the chart colors and turning off the animated graphs.
    <Graph visualEffects="NONE" animationDuration="0">
    But we want to alter more chart options, like make a bar chart default stacked. In 10G this was possible. I think this is also
    possible in 11G through the dvt-graph-skin.xml, but what i want to know is, is there a document that explains which tags you could use in this file.
    It would be great to get some help on this.

  • How to associate Ship-To-Party to a Sold-To-Party using BAPI

    I am looking for a BAPI that will allow me to associate existing Ship-To-Party to an existing Sold-To-Party. I tried to search for the BAPI that might do this job but could not find one. Any help is greatly appreciated.
    System: SAP R/3 4.7
    Edited by: Jignesh Jethva on Nov 19, 2009 12:11 AM

    Hi,
    Check table CRMM_BUT_LNK0141 to obtain the sales area of a BP (by BP Guid).
    If you need the sales office and sales group, read GuidSet of that table and check table CRMM_BUT_SET0140 to list the sales office and sales group by that Guid set.
    There are some function modules too:
    CMS_BUPA_ORGDATA_GET_BL among others.
    Regards,
    Susana Messias

  • Ship-to-party to corresponding sold-to-party

    hi all,
    i need to know how to find out the ship-to-party for the corresponding sold-to-party, what is table used to determine this relation .
    thanks,
    ravi.s

    Hi,
    If you want optimized (buffered) table access, you can use the function module SD_KNVP_READ. This returns the relevant partners as FET_KNVP.
      CALL FUNCTION 'SD_KNVP_READ'
           EXPORTING
                FIF_VKORG             = p_vkorg
                FIF_VTWEG             = p_vtweg
                FIF_SPART             = p_spart
                FIF_KUNNR             = customer
                FIF_FILTER_PARVW      = 'WE'     "Space gives all partners
                FIF_FILTER_PARNR      = ' '
                FIF_CONSUMER          = ' '
                FIF_BUFFER_NOFILL     = ' '   "Pass 'X' if frequent access in the program
                FIF_CLEAR_BUFFER      = ' '   "as needed
           IMPORTING
                FES_KNVP              = dummy_knvp
                FEF_KNVP_RECORDS_READ = dummy_int
           TABLES
                FET_KNVP              = t_shipto
    Hope this helps,
    Bhanu

  • Need to pick Bill to party and Payer from Ship to party instead of Sold to

    Hi,
    Please let me know the configuration setting needs to be done for capturing the Bill to party and Payer from the Ship to party instead of the Sold to party. This requirement needs to apply to curtain document types only.
    Please respond as soon as possible.
    My mail ID: [email protected]

    Hello,
    you can change your customizing settings in the transaction VOPAN  and put there that the Bill-to and payer should be determined from the ship-to party ( in special partner determination procedure). Than assign this partner procedure to your spacial sales order types.
    Best regards,
    Lela

Maybe you are looking for

  • Problem with DVD burner

    When i try to insert a CD or DVD into my PB's internal dvd burner and immediately ejects it. Have tried a bunch of different brands of CDs and dvds. Same results. It takes the disk in and then immediately ejects it. Any ideas as to what's wrong? thx

  • Bapi_document_checkoutview2 extremely slow

    Hi, when I call bapi_document_checkoutview2 it is extremely slow. It needs >= 60s for a 32KB File. My Code extract is:              function = this.createFunction("BAPI_DOCUMENT_CHECKOUTVIEW2");              function.getImportParameterList().        

  • Billing date for Rebate CMs

    Hi, We would like to set the billing date of CMs from rebate settlement to be set as 'current date' instead of the valid-to date of the agreement. We already updated user exit : RV60AFZC and put the code: IF sy-tcode EQ 'RBT_ENH_VB7'. vbrk-fkdat = sy

  • Photoshop photography program for PS CS4; CS5; CS6 users where  is it? 9,99/month

    Hi, I can´t find anymore the offer ADOBE made somewhere in September for existing Photoshop users. 9,99 Euros/month period. The offer was anounced for a period until 31st December 2013. Where is it? Has anybody a link? I can´t believe that Adobe buri

  • SLD server and UME configuration

    Dear Portal Gurus, I have configured the UME as ABAP datasource (R/3) with  client (001). all the things sld is running and able to create jco connections . iam not able to create users from user adminstration when the client is 001 when i modify the