Sales order.. basic doubt about payment terms

hello,
I am trying to create a sales order with 2 materials,
I am getting 2 different Payments Terms, why I am getting so, I belive terms of payments are copied from Customer Master data. My SP, SH, BP, Payer are all same.
please let me know, what else should I check.
thank you
madhu.

Hi Roberto,
Thanks for quick reply, can you kindly let me know in more details. where should I look for these condition recordes. If I see the pricing condition types in pricing anlysis, Can I see them ..pls let me know
thank you. awarded points.
thank you once again.

Similar Messages

  • Question about Payment term and due date

    Hi experts,
         I encouter a question about payment term:
    I have the payment term ,the baseline date,document date and posting date.How can I get the due date??Is any SAP function module can calculate the due date?
    Thanks a lot in advance.
    Villy.Lv.

    Hi guys,
       we can use this FM FI_TERMS_OF_PAYMENT_PROPOSE to get the Days for net due date and add it to base line date,then we get the due date.
    BR and thanks a lot.
    Villy.Lv.

  • US localization. Select 2 Sales orders in one down payment invoice

    US Localization.
    I need to create a Sales Down payemnt invoice selecting 2 sales order but is not possibile to select more than one SO.
    In Other localization I see that it is possible.
    There is some set up or on the US localization it is not possible?
    Thanks

    Hi,
    Is it was happening for one customer or all? Please check SAP note:
    1649125 - LOC_US/CA_Impossible to base a foreign currency down
    payment on multiple orders
    1766588 - LOC_US_CA_System Exchange rate cannot be used in A/R
    Downpayment Invoice
    Thanks & Regards,
    Nagarajan

  • How can we reject a Sales order after first Down payment invoice for Italy?

    Hello,
    As a legal requirement in Italy the Down paymenty have to be transformed into real invoices, another legal requirement is that an invoice cannot be cancelled it has to reversed by a credit memo.
    I would like to know in this context how we can reject a sales order line once a Down payment invoice has been emitted.
    When I do enter a reason for rejection in the sales order line I receive the message : V1036: Subsequent documenst exist for item XXX and then V2432 Cancellation not possible. Down payment request already created.
    I can create a down payment credit memo in order to cancel the down payment invoice but how can I get rid of my SD requirement in MD04 if I cannot reject the sales order line?

    Hello,
    have you tried using a recjection code which is not relevant for billing?
    Regards,
    Uli

  • Sales order status with down payment requests.

    Due to our requeriments, all the invoices created from a sales order has down payment request as billing category.
    The problem is that the sales order status continues as "Being processed" instead of completed.
    Is there any customising that makes the sales order status as completed when the down payment request is created for all the sales order value?
    Thanks in advance.

    Hello,
      this is the correct behaviour of the system: you have an item of 100; in the billing plan if you want to manage downpayment you will have, let's say two items:
    10 for the downpayment 
    100 for the final invoice.
    The system proposes the amount you defined for the downpayment and the total amount for the final invoice.
    Then you will have to bill the downpayment invoice, release it into accounting and clear it. If you will do this steps correctly, when you create the final invoice the system will show you:
    invoice amount 100
    advance payment -10
    net value = 90.
    Hope to be useful..
    Best regards,
    Andrea

  • Sales order Fileds: Doubt!

    Hi,
    I am not a fucntional guy: can you please tell me where can i find the following fields in VA03?
    Open Quanities
    Number of deliveries
    Number of delieveries on time
    Thanks,
    Ravi

    Hi Ravi,
    You can goto schedule line tab at the item level in VA03 and can find the ralevant(NOT EXACT) data.
    The table is VBEP.
    If you want the number of deliveries for a particular sales order then you can find it through table VBFA.
    Regards
    Karan

  • Basic doubt about Primary Key/Foreign Key in Oracle Tables

    Hi,
    I have a doubt whether Primary Keys/Foreign Keys are allowed in Oracle. Some of the people I know are telling me that Oracle does not encourage having Primary Keys/Foreign keys in its database tables.
    However if I go to the ETRM and look for information about some of the Oracle Tables, I am informed that Primary Keys do exist. However I am being told that ETRM is not a reliable way of having correct information about table structure.
    It would be great if any one of you provides me with some insight in this. Any pointers to a document would be great.
    Thanks

    It is not that PK/FKs are disallowed in Oracle Apps (there are some on the standard Oracle Apps tables), but they are typically not used. I am not positive what the logic behind this is, but my guess is that it was party due to the earlier versions of Oracle Apps pre-dating declarative database referential integrity in Oracle DB and also on performance issues with the standard referential integrity with the earlier versions of declarative database referential integrity.
    As far as eTRM is concerned - I understood that the data is based on a design repository rather than a physical Oracle Apps DB. So all of the information in there is logically correct, but not necessarily enforced via the standard Oracle DB declarative referential integrity (rather by the application code or APIs).

  • Basic doubt about Primary Keys/Foreign Keys in Oracle Tables

    Hi,
    I have a doubt whether Primary Keys/Foreign Keys are allowed in Oracle or not. I have been informed that Oracle does not encourage having Primary Keys/Foreign keys in its database tables. Instead it urges users to have unique constraints on the requisite columns.
    However if I go to the ETRM and look for information about some of the Oracle Tables, I am informed that Primary Keys do exist. At the same time, I am being told that ETRM is not a reliable way of having correct information about table structure (at least the Primary Key information).
    It would be nice if any one of you provides me with some insight in this. Any pointers to a document would be welcome.
    Thanks

    FYI,
    There is seprate forum for Core Sql quieries
    PL/SQL
    Thanks

  • Basic doubt about XML file generation

    Hi,
    I am new to Java. I am facing some trouble designing and implementing a particular problem involving XML files.
    Problem:
    I have an XML file which contains a set of properties and their default value. What I need to do is to read another file/stream which will have name=value strings and then, for all the names that I find there, change default value to current value. These names can appear in any order. For example,
    <name1 value=default1/>
    <name2 value=default2/>
    <name3 value=default3/>
    And I will get something like "set name3=value3 name1=value1" (This data comes to me from a stream -usb device- and not from a file). Then I should change it to
    <name1 value=value1/>
    <name2 value=default2/>
    <name3 value=value3/>
    What is the best possible way to do this in Java? This has to go into an embedded system so it will be nice if it can be done with minimum memory and less processing power.
    I am currently reading J2EEtutorial (1.4). I have not read much. But I am confused if I should be using SAX, DOM or XSLT. To speak the truth, I don't even know the difference between all those. Any help will be greatly appreciated.
    Thanks & Regards,
    Suseelan

    Use a DOM parser to parse the original XML.
    DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder domBuilder = domFactory.newDocumentBuilder();
    Document document = domBuilder.parse( inputStreamToFile );Then read in the contents from your USB stream into say an array or Vector. Then go through each child node in the domBuilder class, get the nodes name and see if it's in the Vector of objects from the USB stream. If it is, then replace the "Value" attribute in the dom node with what is in the Vector.
    Make sense?
    Message was edited by:
    bryano

  • Few basic doubts about accessing AM from backing bean class

    Hi ADF experts,
    I have just started working in ADF Faces.I made a sample search page.My page is attached to a managed backing bean. I have attached command button on my page to a custom method in backing bean class.
    So on, click of button this method is called in backing bean.Now, i have few doubts:
    1)How to get values of various UI beans in this event code?
    2)I am accesing AM , in my method with this code:
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ExternalContext extContext = facesContext.getExternalContext();
    Application app = facesContext.getApplication();
    DCBindingContainer binding = (DCBindingContainer)app.getVariableResolver().resolveVariable(facesContext, "bindings");
    //Accessing AM
    ApplicationModule am = binding.getDataControl().getApplicationModule();
    iS this correct ?
    3) After getting handle of am how to call my custom method in AM Class?there was "invokeMethod" API in application module class in OAF, is there any such method here?
    Please help me.
    --ADF learner.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Thanks for ur response Frank, actually I am from OA Framework back ground.It would be great if help us a little with ur valuble thoughts.
    OA Framework also uses bc4j in model layer of framework. We have a requirement where our existing developers from OA Framework have to move to ADF to make a new application where time lines are quite strict.If this would not be possible we will switch to plain jsp and jdbc,but our tech experts say ADF Faces is the best tech.
    In OA Framework, Application Module is key class for all busiess logic and Controller is used for page navigation. So, I m just trying to find the same similarity , where we write we add all event codes in custom action methods in the backing bean class of page, which we consider equivalent to process form request method in Controller class of OAF.
    But there are two things, I still want to know:
    1)While page render, how to call specific AM methods(like setting where clause of certain VOs)
    2)In action methods, the way i described(I found that in one thread only)to access AM, what is wrong in that?Also, I went through
    http://radio.weblogs.com/0118231/stories/2004/09/23/notYetDocumentedAdfSampleApplications.html
    where coule of examples use similar approach to access AM from backing bean class and call custom methods of AM(Doing various, deletes etc from VOs).
    3)In these methods can we set any property of beans on the page, I am asking because in OAF, generally we use PPR for js alternatives.But all properties of beans cannot be set in post event.
    Thanks and Regards
    --ADF Learner                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Basic Doubt about security

    Dear All,
    I am trying to implement following functionality. Can you suggest how i should go about implementing this in actual code.
    I have an J2EE application consisting of swing client and server components deployed on J2EE complient server. Now whenever a client tries to log in to system the username and password info is transmitted to server for authentication. Here i need to introduce a functionality by which password and may be user name is encrypted to before it is sent to app server and then app serve at it's end will decrypt before authenticating the user.
    Now theoritically i am planning to do following : using public/private key encryption. Client will encrypt the required string using public key and send it to server. Server will now decrypt using the private key which is available at it's end. The client and the app server aer on physical different machines. Does this make sense ? And is it correct ?
    Now my questions :
    Is my mechenism correct ?
    How to generate public/private keys ? is it using keytool but what are steps?
    How should transfer of these key take place ?
    If keys are generated using API rather then keytool how to transmit these keys to server?
    If keys are generated using keytool still how to distribute these keys and use the same in the program while doing encyrption/decryption ?
    Kindly reply soon. This is urgent. Thank you in advance
    Sachin

    I would suggest making an SSL connection to the server which verifies the password (and if it is not too computationally intensive, then for data as well). Java 1.4 has SSL functionality built-in (you just need to do some key management on the server end -- if you get a certificate from a provider that is preloaded).

  • How to handle Order/Invoice with split Payment terms ?

    Hi we are implementing 11.5.9 for one of our sites...
    we have a situation wherein we charge the customer on placing the Order, on shipping the
    goods and on their acceptance...
    For example,Assume total order is $200,000. 10% on placing order; 20% on shipping: and 70%
    when customer accepts.
    10% - 20,000
    20% - 40,000
    70% - 140,000
    We need to issue invoices at each stage too...
    Can anyone suggest a way out ??
    thanks in advance..

    Hi,
    After much thought, My knowledge took me to Customization way to this Scenario.
    1. Define Order type to close immediately after delivery.
    2. Design a Invoice Print report, which will bring details into a TEMP table from Order depending on Order status.
    i.e. Order booked -- 1 line inserted into temp table with 10% of order amount and status as Booked.
    The Invoice will be printed using this details and an interface program should fire, which will interface this line to ra_interface_lines_all.(Plan program as per your needs. This is just a test case I have taken)
    3. On next run, after delivery, the Line status will change to Delivered, which will insert another line into TEMP table which current record flag 'Y'. Prints and Interfaces the invoices to AR.
    Similarly next step.
    Design of this TEMP table and other validations, you can discuss with Technical Consultant. I think, we can achieve this only with this minimum customization.
    Standard application is just giving workarounds and not perfect solution to this.
    Regards,
    Sridhar

  • Basic doubt about ITAB

    Dear All,
    techinicallly is there any difference between.
    data : it_mara type standard table of mara.
              t_mara type mara occurs 0.
    Which is better way to define. I know both are internal tables without header.
    onemore thing, header that it is obsolete to use "occurs 0", is this right.
    Please let me know.
    Regards
    madhu

    Hi,
    Yes...you should use only table declarations without the occurs clause. This improves performance a lot. And this kind of declarations has become mandatory with the ECC6.0 release.
    Try practicing to declare without the occurs clause.
    Thanks,
    Subramanian

  • Enforce payment as per payment term given on sales order

    Hi Everybody
    I have created a sales order and given the payment term thereon. I want to build a check that system should not let the user ship confirm if amount has not been received as per payment term. Is there any standard solution or any workaround or personalization that can cover the above scenario.
    Regards
    Masood ul Hassan
    Edited by: 875050 on Jul 26, 2011 10:20 PM

    Hi Masood,
    This can be achieved by linking the credit check rule. Payment term is one of the components for credit check.Order lines with a given payment term. Credit check can be set at different levels like booking, picking and shipping.
    For example,
    With Order Management and Oracle Receivables, the payment terms also have a Credit Check flag. Disabling this flag will automatically exclude order lines with that payment term from the credit evaluation. Only those lines that have payment terms with credit checking turned on are compared against the credit limits.
    For refernce:
    Oracle® Order Management
    Implementation Manual
    Part No. E13406-04
    17-4 Oracle Order Management Implementation Manual
    Thanks
    Nancy

  • Payment term issue "error payment term is not defined"

    I have created a new payment term, and incorporated in customer master and created sales order . payment term is getting populated in sales order with an error "payment term is not defined". Please help to resolve.'
    David

    There can be many possibilities for this error,  in tcode OBB8,
    - the terms of payment is not marked for customer.
    - date limits are not mention properly.
    - if the installments are not config properly
    Or
    Try it putting manually in to the sales doc.
    If problem persists, take assistance of FI team member to sort out the error.
    Also, refer following SAP Notes:
    - 66529  F5839 Payment term & not defined
    - 598025  Work method terms of payment for condition records
    - 1180397 enterprise SOA conversion/Supplement to Note 117317
    - 311514 No payment method for installment terms of payment
    - 649567      EDI: incorrect baseline date for payment
    - 208023      Posting bill doc ->FI:incor cash discount rate used
    - 391939      Entries ignored with warning messages in sales document
    Thanks & Regards
    JP

Maybe you are looking for

  • Window - No Disk Message when Syncing

    Quite often I get a Windows - No Disk error message when syncing a new CD to my Ipod Classic 160GB. The box has a message saying "There is no disk in the driver. Please insert a disk into drive G." Drive G is a port for the USB connecting cable and d

  • Itunes to apple tv 2 not connecting

    When I am in iTunes and I want to play music and listen to it on my stereo, I connect to my Apple TV 2. My ATV2 is connected to my TV which is connected to my stereo - it's all digitial and it's great when it works. But lately I can't get my iTunes t

  • Even more about deleting the first word in a string

    hi, i have this code that removes the first word in a string, returns the shorter string, removes the first word from the shorter string aso... what i would like it to do is to stop when it hits a non-character, but i can't get it to do that. does an

  • AI client installation fails cannot connect to pkg.oracle ......

    I cannot find where to amend the repository location for the AI clients, as a route out to oracle is not available. I have updated the default.xml file and the ai_manifest.xml file whre else is this parameter stored? It also exists withn the AI iso f

  • Webdynpro for integrating with BI/BW

    Hi Experts I have a requirement that we need to display BI/BW reports on our microsoft sharepoint by  Webdynpro c where can i find examples on how to intergrate BI/BW reports in  and Webdynpro thanks points will awarded