CO-PA+CO-OM: one CO-PA object settlemet CO-order

Hello.
We use Automatic Generation of Settlement Rules for internal CO order. Strategy Sequences for Automatic Generation of Settlement Rules consists two type of strategy: Cost Center and CO-PA object. When we create CO-order, create correct settlement rule with many CO-PA objects. When we change the CO-order, create one CO-PA object for all CO-PA items. As a result of this, settlemet CO-order to one CO-PA object. It is incorrect.
We trace process of changing CO-order, and view, that not in the strategy sequences. This is error? When creating CO-order, settlement rule strategy working correctly.
Also, we changing value of field "Modifiable" in Assign Strategy Sequence To Order Type to "Do Not Overwrite" and "Only Overwrite Unused Rules". Without correct results.
We view tables AUFK, CE41000, CE41000_ACCT, COBRA, COBRB. Table CE41000_ACCT consists CO-PA object, that reference in CO-order, but it object not exist in CE41000. In CE41000_ACCT exist reference to other CO-PA object, he is exist in CE41000.
We need to correct recreate CO-PA objects and references to them to CO-order.      
How to achieve that result?
Thanks.

Hi Pradeep kumar Athmakur,
you were not 100% right - there is a way of multiselection option with a trick described in thread:
Re: For a custom charactersitic, how to select range while executing COPA repor
Copy from thread:
The reporting functionality in COPA does not allow the multiple
selection option. The functionality to of multiple selection is
provided by note 516557. This note only provides multiple selection at
the F4 level not at the top selection screen. You will have to use F4
into the individual characteristics and enter the values.
You can use a type of global variable to enter multiple single values
for a characteristic. When you create a global variable in transaction
KE3E, you should define a variable for the characteristic (i.e.Customer)
that is a Select Option Variable rather than a Parameter Variable.
You should include this variable for Customer in the General Data
Selection of your form.
Then you should create a report. When you run the report, Customer
comes up as a required entry with an arrow (=>) for more. When you
press this icon, you are able to enter a range of single values.
Regards,
I tried it with the new variable as selectionoption and not parameter and it worked.
regards
Bjoern

Similar Messages

  • How to make a only one spectified type object running at the same time ?

    I want to run specified function with java program in unix,AIX environment.But i want only one specified type object can run at this time when i make command "java xxx &" several times at this time.I had used thread but it can not work. I think there are two processes for system so it can not work. Which class or way in java can i use for this problem ? or I use thread in the wrong way.
    please help me . thank you everybody !!!
    ps:the command "java xxx &" mentioned above,xxx is name of java program ,
    & means command run in background.

    RMI is a good option you can think of. There is one registry and only one object can be bound to it with a specified name. But if your application is large, RMI calls can really slow down your application.
    Another option is to use Sockets. When you load the application check if you can start a server socket on a particular port. If you can, then start the program. If not, another application is already running. So exit your program. The socket you have created will be used only to bind to a particular port. In any system, there can be only one socket bound to a port and this guarantees the single instance running. When your application closes, close the socket too.

  • Assigning object of one class to object of another class.

    Hi,
    How will i assign an object of one class to an object of another class?
    Ex:
    ClassX A=some_method();
    Now how will I assign the object A of class ClassX to the object 'B' of another class 'ClassY'.

    In java you can only assign a object reference of one class into object reference of another class if the first class is the Second class (in other words the first class is a subclass of second class).
    for example if this is a inheritance chart
    Car ==========>Mercedes
    "===========>Audi
    then you can use
    Audi a1 = new Audi();
    Car c1 = a1;
    or Mercedes m1 = new Mercedes();
    Car c1 = m1;
    but not
    a1 = m1;
    before assigning a variable into another variable of different class, use:
    if(variable1 instanceOf ToBeAssignedIn Class){
    variable2 = variable1;
    example:
    Audi a1;
    Car c1;
    if(a1 instanceOf Car){
    c1 = a1;
    Edited by: gaurav.suse on Apr 10, 2012 1:14 PM
    Edited by: gaurav.suse on Apr 10, 2012 1:15 PM

  • Help with multi-table mapping for one-to-many object inheritance

    Hi,
    I have posted on here before regarding this (Toplink mapping for one-to-many object inheritance but I am still having problems mapping my object model to my schema.
    Object model
    The Person and Organisation objects contain base information and have the primary keys person_id and organisation_id. It is important that there is no duplication of person and organisation records, no matter how many times they are saved in different roles.
    There are two types of licenceholder in the problem domain, and the ILicenceHolder interface defines information and methods that are common to both. The PersonalLicenceHolder object represents one of these types of licenceholder, and is always a person, so this class extends Person and implements ILicenceHolder.
    The additional information and methods that are required by the second type of licenceholder are defined in the interface IPremisesLicenceHolder, which extends ILicenceHolder. Premises licence holders can either be people or organisations, so I have two objects to represent these - PremisesLicenceHolderPerson which implements IPremisesLicenceHolder and extends Person, and PremisesLicenceHolderOrganisation which implements IPremisesLicenceHolder and extends Organisation.
    The model is further complicated by the fact that any single Person may be both a PersonalLicenceHolder and a PremisesLicenceHolderPerson, and may be so several times over. In this case, the same basic Person information needs to be linked to several different sets of licenceholder information. In the same way, any single Organisation may be a PremisesLicenceHolderOrganisation several times over.
    Sorry this is complicated!
    Schema
    I have Person and Organisation tables containing the basic information with the primary keys person_id and organisation_id.
    I have tried to follow Donald Smith's advice and have created a Role table to record the specialised information for the different types of licence holder. I want the foreign keys in this table to be licenceholder_id and licence_id. Licenceholder_id will reference either organisation_id or person_id, and licence_id will reference the primary key of the Licence table to link the licenceholder to the licence. Because I am struggling with the mapping, I have changed licenceholder_id to person_id in an attempt to get it working with the Person object before I try the Organisation.
    Then, when a new licenceholder is added, if the person/organisation is already in the database, a new record is created in the Role table linking the existing person/organisation to the existing licence rather than duplicating the person/organisation information.
    Mapping
    I am trying to use the toplink mapping workbench to map my PremisesLicenceHolderPerson object to my schema. I have mapped all inherited attributes to superclass (Person). The primary table that the attributes are mapped to is Person, and I have used the multi-table info tab to add Roles as an additional table and map the remaining attributes to that.
    I have created the references PERSON_ROLES which maps person.person_id to roles.person_id, ROLES_PERSON which maps roles.person_id to person.person_id and ROLES_LICENCE which maps roles.licence_id to licence.licence_id.
    I think I have put in all the relationships, but I cannot get rid of the error message "The following primary key fields are unmapped: PERSON_ID".
    Please can somebody tell me how to map this properly?
    Thank you.

    I'm not positive about your mappings, but it looks like the Person object should really have a 1:M or M:M mapping to the Licenceholder table. This then means that your object model should be similar, in that Person object could have many Licenses, instead of being LicenceHolders. From the looks of it, you have it set up from the LicenceHolder perspective. What could be done instead if a LicenceHolder could have a 1:1 reference to a person data object, rather than actually be a Person. This would allow the person data to be easily shared among licences.
    LicenceHolder1 has an entry in the LicenceHolder table and Person table. LicenceHolder2 also has entries in these tables, but uses the same entry in the Person table- essentially it is the same person/person_ID. If both are new objects, TopLink would try to insert the same person object into the Person table twice. I'm not sure how you have gotten around or are planning to get around this problem.
    Since you are using inheritance, it means that LicenceHolder needs a writable mapping to the person.person_id field- most commonly done through a direct to field mapping. From the description, it looks like roles.person_id is a foreign key in the multiple table mapping, meaning it would be set based on the value in the person.person_id field, but the person.person_id isn't actually mapped in the object. Check to make sure that the ID attribute LicenceHolder is inheriting from person hasn't been remapped in the LicenceHolder descriptor to a different field.
    Best Regards,
    Chris

  • Java.io.NotSerializableException - while retriving "one to many" objects

    i am getting java.rmi.MarshalException java.io.NotSerializableException
    while i try to retrive one to many objects
    i have recently migrated from kodo 2.5.x to kodo 3.0.1, and i have parent
    object reference in child objects (reverse mapping reference according to
    kodo 2.5.x) as shown below
    public class BankStatementEntry implements BankStatement {
    private Set accountSummary = new HashSet();
    public interface BankStatement extends Serializable {
    * Returns the accountSummary.
    * @return Map
    public Set getAccountSummary();
    * Returns the accountSummary.
    * @return Map
    public void setAccountSummary(Set accountSummary);
    public class AccountSummaryRecord implements AccountSummary {
    private BankStatementEntry bankStatementEntry;
    public interface AccountSummary extends Serializable {
         * Returns the transactionDetails.
         * @return Collection
         public Set getTransactionDetails();
    the problem is, when i try to retrive BankStatementEntry object, i have to
    iterate through each child (AccountSummaryRecord) object and manualy
    remove parent object reference (BankStatementEntry) by setting null.
    Otherwise EJB throws java.io.NotSerializableException
    Is this bug ?
    Thanks
    karup.

    Thread [Servlet.Engine.Transports : 1] (Suspended)
         java.io.NotSerializableException.<init>() line: 50 [local variables
    unavailable]
         com.ibm.CORBA.iiop.UtilDelegateImpl.copyObjectByProxy(java.lang.Object,
    org.omg.CORBA.ORB, java.lang.ClassLoader, java.lang.Class,
    org.omg.CORBA.portable.Streamable) line: 1316 [local variables unavailable]
         com.ibm.ws.orb.WSUtilDelegateImpl(com.ibm.CORBA.iiop.UtilDelegateImpl).copyObject(java.lang.Object,
    org.omg.CORBA.ORB) line: 771 [local variables unavailable]
         javax.rmi.CORBA.Util.copyObject(java.lang.Object, org.omg.CORBA.ORB)
    line: 327 [local variables unavailable]
         au.com.aig.aiaa.paymentdishonor.process.ejb._BankStatementProcessor_Stub.fetchBankStatement(java.util.Date,
    java.util.Date) line: 366
         au.com.aig.aiaa.business.process.ejb.CommonFacadeBean.fetchBankStatement(java.util.Date,
    java.util.Date) line: 102
         au.com.aig.aiaa.business.process.ejb.EJSRemoteStatelessCommonFacade_aa40cc36.fetchBankStatement(java.util.Date,
    java.util.Date) line: 61
         au.com.aig.aiaa.business.process.ejb._CommonFacade_Stub.fetchBankStatement(java.util.Date,
    java.util.Date) line: 266
         au.com.aig.aiaa.paymentdishonor.web.ReportsAction.execute(org.apache.struts.action.ActionMapping,
    org.apache.struts.action.ActionForm,
    javax.servlet.http.HttpServletRequest,
    javax.servlet.http.HttpServletResponse) line: 67
         org.apache.struts.action.RequestProcessor.processActionPerform(javax.servlet.http.HttpServletRequest,
    javax.servlet.http.HttpServletResponse, org.apache.struts.action.Action,
    org.apache.struts.action.ActionForm,
    org.apache.struts.action.ActionMapping) line: 446
         org.apache.struts.action.RequestProcessor.process(javax.servlet.http.HttpServletRequest,
    javax.servlet.http.HttpServletResponse) line: 266
         org.apache.struts.action.ActionServlet.process(javax.servlet.http.HttpServletRequest,
    javax.servlet.http.HttpServletResponse) line: 1292
         org.apache.struts.action.ActionServlet.doGet(javax.servlet.http.HttpServletRequest,
    javax.servlet.http.HttpServletResponse) line: 492
         org.apache.struts.action.ActionServlet(javax.servlet.http.HttpServlet).service(javax.servlet.http.HttpServletRequest,
    javax.servlet.http.HttpServletResponse) line: 740
         org.apache.struts.action.ActionServlet(javax.servlet.http.HttpServlet).service(javax.servlet.ServletRequest,
    javax.servlet.ServletResponse) line: 853
         com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(javax.servlet.ServletRequest,
    javax.servlet.ServletResponse) line: 110 [local variables unavailable]
         com.ibm.ws.webcontainer.servlet.StrictServletInstance(com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet)._service(javax.servlet.ServletRequest,
    javax.servlet.ServletResponse) line: 174 [local variables unavailable]
         com.ibm.ws.webcontainer.servlet.IdleServletState.service(com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet,
    javax.servlet.ServletRequest, javax.servlet.ServletResponse) line: 313
    [local variables unavailable]
         com.ibm.ws.webcontainer.servlet.StrictServletInstance(com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet).service(javax.servlet.ServletRequest,
    javax.servlet.ServletResponse) line: 116 [local variables unavailable]
         com.ibm.ws.webcontainer.servlet.ServletInstance.service(javax.servlet.ServletRequest,
    javax.servlet.ServletResponse,
    com.ibm.ws.webcontainer.webapp.WebAppServletInvocationEvent) line: 258
    [local variables unavailable]
         com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(com.ibm.ws.webcontainer.servlet.ServletInstanceReference,
    javax.servlet.ServletRequest, javax.servlet.ServletResponse,
    com.ibm.ws.webcontainer.webapp.WebAppServletInvocationEvent) line: 42
    [local variables unavailable]
         com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(javax.servlet.ServletRequest,
    javax.servlet.ServletResponse,
    com.ibm.ws.webcontainer.webapp.WebAppServletInvocationEvent) line: 40
    [local variables unavailable]
         com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(com.ibm.ws.webcontainer.webapp.WebAppRequest,
    javax.servlet.http.HttpServletResponse) line: 872 [local variables
    unavailable]
         com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(javax.servlet.ServletRequest,
    javax.servlet.ServletResponse, boolean) line: 491 [local variables
    unavailable]
         com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(javax.servlet.ServletRequest,
    javax.servlet.ServletResponse) line: 173 [local variables unavailable]
         com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(javax.servlet.http.HttpServletRequest,
    javax.servlet.http.HttpServletResponse) line: 79 [local variables
    unavailable]
         com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(java.lang.Object)
    line: 199 [local variables unavailable]
         com.ibm.ws.webcontainer.srt.WebAppInvoker(com.ibm.ws.webcontainer.cache.invocation.CachedInvocation).handleInvocation(java.lang.Object)
    line: 71 [local variables unavailable]
         com.ibm.ws.webcontainer.cache.invocation.CacheableInvocationContext.invoke(java.lang.Object)
    line: 114 [local variables unavailable]
         com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(java.lang.String,
    com.ibm.ws.webcontainer.srp.ISRPConnection) line: 187 [local variables
    unavailable]
         com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(com.ibm.ws.webcontainer.oselistener.api.IOSEConnection)
    line: 331 [local variables unavailable]
         com.ibm.ws.webcontainer.http.HttpConnection.handleRequest() line: 56
    [local variables unavailable]
         com.ibm.ws.webcontainer.http.HttpConnection(com.ibm.ws.http.HttpConnection).readAndHandleRequest()
    line: 432 [local variables unavailable]
         com.ibm.ws.webcontainer.http.HttpConnection(com.ibm.ws.http.HttpConnection).run()
    line: 343 [local variables unavailable]
         com.ibm.ws.util.ThreadPool$Worker.run() line: 592 [local variables
    unavailable]

  • How to assign one JSP request object to another JSP

    Hi,
    I want to assign one JSP request object (i.e., previous JSP Page request object) to another JSP (i.e., current JSP page request object).
    I don't want to use "<jsp:forward>" tag or "RequestDispatcher" obect here.
    Because i want to display one message in the current JSP page, before sending both JSP pages' request to a servlet. How to do this ?
    please help
    Thanks in advance
    Vishnu

    You cannot assign a request and response object of one jsp/servlet to another, every jsp or a servlet get is own fresh copy of request and response object with the request parameter data from the previous page.
    Unless u use request dispatcher or jsp:forward action, this solution that u r looking for by re-assigning the request and response object doesn't work

  • Wich function (class) could I use to create one pixel high object (frame)?

    Hi guys, I need a pointer on a certatin line on the graphic screen. And I want it to be written in Java. I know how to make it to be "always on top" now, but AFAIK every applet or application is to be shown in a bordered window saying it is a Java object for security reasons. As I want it to be one pixel high, I apparently need to get rid of the frame border. Supposedly I have to switch off the security, but it's OK for me.
    Wich function (class) do I use to create one pixel high object?
    And one more thing. How do I generally show a graphic object of nonrectangular shape out of the bordered frame? Is there a way to do it without creating an transparent rectangular window/frame?

    I didn't quite know what you mean, but how's this?
    public class MySinglePixelWindow extends JWindow {
       public MySinglePixelWindow() {
          super();
          setSize(1,1);
          setLocation(0,0);
       public void paint(Graphics g) {
          super.paint(g);
          g.fillRect(0,0,1,1);
    }Transparent Window:
    public class MyTransparentWindow extends JWindow {
       java.awt.Robot robot;
       BufferedImage screen;
       public MyTransparentWindow() {
          super();
          try {
             robot = new Robot();
          } catch(Exception e) {}
       public void show() {
          image = robot.createScreenCapture(getBounds());
          super.show();
       public void paint(Graphics g) {
          super.paint(g);
          Graphics2D g2 = (Graphics2D)g;
          g.setComposite(AlphaComposite.newInstance(AlphaComposite.SRC_OVER,0.8));
          g.drawImage(image,0,0,this);
    }Puh!
    You can't move this window though...
    Nille

  • How to get file names for one oracle directory object.

    Hi all ,
    I defined one oracle directory object . Now I want to know how many files stored under this object in physical directory and their names ? anyone know how to do it by pl/sql ?
    Thanks,
    George

    Chris Poole has an [XUTIL_FINDFILES package|http://www.chrispoole.co.uk/apps/xutlff.htm] which can do this in pure SQL. It does require, though, that your DBA install code in the SYS schema and that you rely on the behavior of an undocumented X$ table. That may not be possible in certain environments.
    I personally prefer a small Java stored procedure along the lines of [this one from Tom Kyte|http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:439619916584]. It isn't a pure PL/SQL solution, but it tends to fit relatively cleanly in any environment. Most DBAs will be willing to grant the privileges this sort of approach requires where they would be hesitant to grant the access necessary for XUTIL_FINDFILES.
    Justin

  • BCM 2007 error: "To help prevent malicious code from running, one or more objects"

    Recently we changed our e-mail accounts around to a new domain name. After this switch, BCM no longer allows adding, editing or any other manipulation of contact records. I get an error message saying "To help prevent malicious code from running, one
    or more objects in this form were not loaded."
    I have tried clearing the forms cache, uninstalling and reinstalling BCM and even adding the old e-mail address back into the Outlook profile and nothing works.
    Is there something I have missed somewhere or am I looking at a complete reinstall of Outlook and BCM?
    Jon

    Hi Jon
    Thank you for the update.  It could be another Active X Component - BCM 2007 calls several of them
    On thing you could do is run a Process Monitor Log to see if perhaps another component is Blocked. To do that try the following:
    1. Close Outlook and as many other programs as possible
    2. Download and Extract Process Monitor from here -
    http://technet.microsoft.com/en-us/sysinternals/bb896645
    3. Start Process Monitor
    4. Start Outlook
    5. Reproduce the error in BCM
    6. Stop Process Monitor by going to the File menu and unchecking "Capture Events"
    At this point you can try filtering by clicking the Filter Icon (the Funnel) on the menu bar.  Click on the Left Drop down at the top of the Dialog and Select "Path"
    For the second dropdown select "Contacts" and then filter on "ActiveX Compatibility" (without the quotes)
    in my lab, every GUID under HKLM\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility came up with a result of "Name Not Found"
    On your system, are there any are present (the Result Column will show "Success")?
    If so, then I would check the Compatibility Flag for that one (Hint - if you right-click on an Entry you can select "Jump To" to open Regedit to that location)
    - or -
    If you would like for me to take a look at it, in Process Monitor Go to the File > Save Menu and save it as a .PML file. Then send it to me at cts-larrymei at live.com
    Note - Please ZIP the file prior to sending it
    Thanks!
    Larry - MSFT
    Larry Meinstein

  • Help! "Requested Operation would cause one or more objects to be too small"

    I tried to copy several pieces of text I selected and grouped together to another page. They seemed to disapper, so I went back a step. They immediately made my pasteboard gynormous.... that's one problem, but then, when I tried to type on the page I was going to I get this error message, "Requested operation would cause one or more objects to be too small...." and it won't let me type anything on that page. I can type on other pages, but not that one. I shut my computer down, started again, but still it's there. I saved as another document, but still.... can't type anything on the page. I've got a newspaper to get out. eek. Any help would be greatly appreciated.

    Nobody can help you without any system info, details about your documents, fonts used and whatnot. From your description it simply sounds like a DPI settings issue...
    Mylenium

  • Inserting Object link as reference object in Maint Order/Notification

    Dear all,
    I've mapped pipe line using obejct link,now when i create Maint Order or Notification system displays below mentioned message,
    Select a link object as reference object
    Message no. IH101
    Diagnosis
    You are trying to create an order or a notification for a link object, but have not yet selected an object.
    Procedure
    Place the cursor on a link object. This object will be entered in the notification or order as the object referred to.
    In std Screen RefObject thers is no ref object for Link,
    Please guide me how we can create Maint.Order/Notification against Object Link,as it is required to track cost as well as history of repairs in pipe line.
    Thanks in advance
    Regards
    Parshil
    Edited by: PM_in_SAP on Jul 27, 2010 9:19 AM

    Hi,
    i refer page no 18 of SAP book Object Networking (CS-BD/PM-EQM-ON) SAP AG Release 4.6C,
    To select a particular link from the list, (IN18)select the object link and choose one of the following options:
    Goto --> Change/Display --> link, You reach the object link data screen.
    Goto -->Create notification  --> Notification type
    You reach the screen where you can create a maintenance notification for the link. If a link object is entered for the selected link, the system automatically uses it as a reference object for the notification.
    Goto --> Create order
    You reach the screen where you can create a maintenance order for the link. If a link the system automatically uses it as a
    reference object for the order.
    Regards
    Parshil
    Edited by: PM_in_SAP on Jul 27, 2010 11:22 AM

  • F110 - one spool request number per payment order --URGENT

    Hi folks,
      I am ABAPer working for ECC6 upgrade project when i am running F110 payment run for customers to generate payment orders i am getting all the orders in one spool request no, But i need to generate one spool request no. per payment order.
      thanks in advance for you valuble inputs
    regards,
    ramahari

    Hi Madhuri,
    Call open form write form and close form in loop so that till sales order remains in the loop the form will continue to print. In this way all sales order in internal table will print in the same spool.
    Hope this will help you.
    Regards,
    Vijay

  • Services for Object in Maintenance order can not link

    Hello,
    "Services for object" in Maintenance Order can not link to share point.
    Linking documents from the C drive or Global drive is successful but if SHAREPOINT is used, it fails
    When trying to link to a Word document on our Sharepoint... It fails... when I'm in an order... it gives me an error... (displayed on the attached Word file...) and when I'm working within a document... (CVN02) it merely links to my C:\ drive which won't work...  
    We need to link to our "master" Sharepoint (web based) documents.
    Please suggest the solution.
    Thanks
    Regards
    Anil

    Anil,
      Couldn't you add the web address as the attachment?
    Regards
    Narasimhan

  • Our system has detected an unauthorized login attempt to your AppIeID from an IP address location different than one you usually use. In order to protect your account, we will disable your AppleID due to our concern for the safety and integrity of the App

    Our system has detected an unauthorized login attempt to your AppIeID from an IP address location different than one you usually use.
    In order to protect your account, we will disable your AppleID due to our concern for the safety and integrity of the AppIe community.
    In order to confirm that you are the rightful owner of this account, we recommend that you click here: My Apple ID.
    I received this e-mail during the night and wondered if is genuine?

    It's a scam to steal your Apple ID and password.
    Delete it.

  • More than one ship to party in sales order

    Hi All,
    Can anyone tell me , could we have more than one ship to party in sales order if no then why not?
    Regards,
    Ashima

    Hi Ashima,
    One order can have any no.of ship-to-parties.If an order contains more than one item,there is a possibility to maintain different ship to parties for each and individual item.We can do this while processing the sales order,at item level.In order to do this we have to follow the menu path
    In the overview of saled doc use the menu path Goto-Item-parner.
    Here u can find default ship to party for all items.Here u can change your desired ship to party particulat to that item.
    Like wise u can maintain any no.of ship to parties in a single order.
    But one thing is imp all these ship to parties must be assigned to that sold to party,Which is entering at the header level.
    Basing on the no of ship to parties we are maintaining at the item level during the creation of order, delivery splits into more than one.

Maybe you are looking for