Sales Quotation Doc Due Date

Hi,
Is it possible to set doc due date of quotation to 60 days, instead of 30 days?
Gr, Mark

i tried this i think i don not use the correct query.
i use now SELECT GETDATE() +60
but when i set it to auto refresh on cardcode everytime i open the quotation its refreshing the date.
What query and setting do you use??
gr, Mark

Similar Messages

  • How to identify open sales orders by sales representative by due date. ?

    We rely heavily on forecasting our "billing pipeline".   Billing Pipeline is defined in our organization  by:
    All billings for a specified date range + (all open sales orders + deliveries)  not yet billed but due by  a specified due date = Billing Pipeline.  
    The open items list by Sales Orders + Deliveries will accommodate that by the company but does not accommodate a breakdown by sales person.
    I am looking for a way to generate all Sales Orders & Deliveries that are not yet billed by due date for each sales person. 
    Has anyone done this in SAP core reporting or have a query to accomplish this ...?
    Thanks, Dan
    Prograde

    This one will show you Open orders by open lines by Sales Person by Date Range
    You can use the same structure for Open Deliveries. Change Ordr to Odln and RDR1 to DLN1
    Regards,
    M. Jenkins
    SELECT T2.SlpName, T0.DocNum, T0.CardCode, T0.CardName, T0.NumAtCard as 'Cust PO', T1.ItemCode, T1.Dscription, T1.Quantity, T1.OpenQty AS 'Open', T1.Price, (T1.OpenQty * T1.Price) AS 'Total Net', T1.ShipDate FROM ORDR T0  INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OSLP T2 ON T0.SlpCode = T2.SlpCode WHERE CONVERT(nchar(8), T0.DocDate, 112) >= [%0] AND  CONVERT(nchar(8), T0.DocDate, 112) <= [%1]  and  T1.LineStatus ='o' ORDER BY T2.SlpName, T0.CardName, T0.DocNum
    Edited by: Inc. Cowper on Feb 4, 2009 8:39 PM

  • Customer Report with Sales Employee and Due date

    Hi,
    I need to configure a report for Customers with Sales Employee & Due date.is there any standard report for this combination in SAP or Do i need to Configure separate report for this.If i need to configure this -kindly help me with some guide lines to prepare this.It would be a great help if you provide some steps to configure this Report.
    Thanks in advance
    Suvarna

    Have you tried the txn code MC-Q or the report program RMCV0500.

  • Include Document Date & Doc Due Date in SAP B1 Aging Details Report

    We are not able to view the actual document date and document due date from the Aging details report, it should be an essential information that should be show in the aging report. It make no sense that user still have to manually drill into each document to just read the document date/ due date for their aging analysis!!!
    Try to imaging that how important this information to a business, for instance, to age the invoice which due for 1 - 30 days, the document date which due for 1 days is categorise into 1-30days aged, the documents due for 30days also categorise into 1-30days aged, however it bring the different meanings to user and user need these information to take the action decision! How useful for an aging report which could not equip user with these basic information to provide user with efficiency to make effective decision???
    I think it is necessary to incorporate this level of details to the SAP B1 Aging Report.

    Hi Theerawat,
    You may check these threads first:
    Document Date
    Posting / Due / Document date trouble
    Re: Posting Date
    Re: Difference between posting & system date in Inventory Audit Report
    Thanks,
    Gordon

  • Doc due date error

    I keep receiving this error when I try to close a PO and create an Invoice from it.  Error env:Receiver -5002 Date deviates from permissible range [OPCH.DocDueDate] 18 1 AddObject Add PO invoice DC703486-75C0-ADED-97D1-0E10D8197155.  Has anyone seen this before. Thanks in advanced.

    The posting and value dates for the current time period had to be adjusted in the general settings

  • Quickest method - Plant and due date to o/s PO and SA items

    Due to volumes, performance is an issue for a Z report. Ideas on quickest method to get to outstanding PO items and SA Delivery Schedule items due on given dates for a single Plant. There are other search criteria but I don't believe these will be tightly specified and Plant and due date (at EKET or EKES level, as applicable) are the prime ones.
    Thanks,
    Nick
    Moderator message: please do not cross-post, one thread only per problem.
    Edited by: Thomas Zloch on Jun 9, 2011 11:02 AM

    OK. I've found a solution... which works if a customer never indicates different delivery dates on a same Sale Order.
    As you can see in the system information view, the field described as "Del. date" in the Sale Order lines is named <b>ShipDate</b> !
    So I simply use a FormatedSearch to change its content according to the Sale Order Document Due Date and the customer location.

  • Due date is showing earlier than doc. date

    Hi,
    I have a funny question. I have posted billing doc. in VF01 for 10000/- on 30.06.2009 payment term is 30 days from the doc. date so the due date should be 30.07.2009. Against this doc. i have posted one residual payment for 5000/- on 15.08.2009 but when i am executing customer line item report in FBL5N system is showing this residual doc. date is 15.08.2009 and due date is 30.07.2009. Why is the due date showing a earlier date than doc date? The due date should be the same day or later than doc date.
    Adv. thanks to all....
    Regards

    Hi,
    When we do a residual payment option, the new document created for the residual amount, is created with reference to the original document. When we create documents with reference, by default the baseline date of the new document is same as that of the original. You can change the base line date by double clicking on the line after simulating.
    Also check if you find any options in SPRO under the open item processing in the business transaction node for Accounts receivable and Accounts payable.
    Thanks and Regards,
    Anit

  • Copy data directly from service order to sales quotation

    I know the process to create the sales quotation from service order in customer interaction center but my query is that is there a way that data should be directly copied from the service notification to the service order to the quotation because I have entered the data completly in the notification .Entring the data again and again make mistakes .
    THANKS
    AVANISH GULATEE
    M-08447307358

    look for the BADIS that get triggered when you save the notification. if you find any BADI, then you can create new implementation for it and you can write the code. you can use CRM_ORDER_MAINTAIN to create service order inside that new implementation.

  • Create a report to show changes in Sales Order Due Dates

    Hello all,
    I've recently started using SAP Business One 8.8 and I want to run a report to show a list of Sales Orders with the original Sales Order Due Date, and the New Date that it has been changed to. What is the best way to create a report to show me this?
    thanks
    Leigh

    Hi Leigh.......
    Try this......
    Select T0.DocNum, Max(T1.UpdateDate) 'Last Update', T0.DocDueDate
    from ADOC T0
    JOIN ADOC T1 on T1.DocNum = T0.DocNum AND T1.ObjType = '17'
    where T0.ObjType = '17'
    Group By T0.DocNum, T0.DocDueDate
    Regards,
    Rahul

  • Sales Credit Memos, Payment terms and due date for payment

    Hello all,
    does anyone out there know how to get the terms of payment assigned to sales credit memos taken into account when the due date for payment is calculated in the accounting document?  (I know this is a bit puzzling as why should one need payment terms for a credit memo)
    I have looked at SAP notes 17410 et al..but remain unclear re how 'V' is populated in BSEG-REBZG.

    Number of the Invoice the Transaction Belongs to
    For line items which are related to another line item, this field contains the number of the partner document.
    Use
    In the standard system the field is used for:
    o   Credit memos which refer to a particular invoice item
    o   Subsequent invoices for an invoice item
    o   Partial payments for an invoice item
    o   Partial clearings of down payments.
    In the first two cases mentioned, the terms of payment are copied from the cross-referenced invoice item into the item currently being processed. This ensures that items due on the same date are paid together by automatic payment.
    A special rule applies to credit memos which have a "V" in this field.  The due date is determined in the same way as for an invoice. If the field is empty (containing neither a document number nor a "V") the due date is the baseline date for payment.

  • How to assign values to UDf of sales quotation at Doc level using UIAPI

    HI,
    I have a custom form, viz. Sales feedback.
    When the user clicks button "Copy to sales quotation" of this form,
    I create an instance of Sales quotation form and open it in SAPB1.
    I have to populate all sales feedback data to this form(Sales quotation form's UPAPI).
    What is the simpest way to do this?
    Also, How can I assign UDF values to sales quotation from sales feedback.
    Regards
    Trupti Mahurkar

    Hi Trupti,
    for assign UDF values, trying with:
    Dim oTargetDoc,oSourceDoc As SAPbobsCOM.Documents
                oTargetDoc.UserFields.Fields.Item("myUDF").Value=  oSourceDoc.UserFields.Fields.Item("myUDF").Value()

  • We are using EBS 12.1.3.  When we input a sales order from a customer we input the sales order and specify the date the customer wants it.  This isn't always the date that we intend on manufacturing it though.  I need to put a customer due date in, but be

    We are using EBS 12.1.3.  When we input a sales order from a customer we input the sales order and specify the date the customer wants it.  This isn't always the date that we intend on manufacturing it though.  I need to put a customer due date in, but be able to put a date in another field that MRP can read in the event we choose to manufacture based on another date.  For example, early.
    Any help would be appreciated.

    What you are experiencing is 100% related to Malware.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Copying valid until date from sales quotation to sales order

    Dear all,
    is it possible to copy the Valid Until Date of a sales quotation to the Delivery Date of a Sales Order, when I use the "Copy To Sales Order" button of a sales quotation?
    Is there a way to do this?
    Can someone help me, please?
    Regards
       Emanuele
    Edited by: Emanuele Croci on Oct 19, 2009 11:49 AM

    The problem is that the FS will not fire using the Copy To button without any data changing.
    (I would consider it an error, but it works that way.)
    If you use the next FS, connected to the Remarks field, you can use it on the order with the Copy From button, or manually activated after a Copy To.
    declare @c nvarchar(254)
    declare @p int
    set @c=$[$16.1]
    set @p=charindex('Quotations',@c)
    set @c=substring(@c,@p+10,20)
    set @p=charindex('.',@c)
    Select OQUT.DocDueDate
    From OQUT
    Where OQUT.DocNum=cast(substring(@c,1,@p-1) as int)

  • Alert for change in due date on sales order

    Hi,
    I would like the system to create an alert when ever a user changes the due date on an existing sales order. The alert should only be triggered once when the change takes place.
    Please help
    Kind Regards
    Grant

    Grant,
    You could use the Query below 
    SELECT DISTINCT T1.DocNum AS 'Document Number', T1.CardCode, T1.CardName, T0.DocDueDate [Old Due Date], T1.DocDueDate [New Due Date] FROM  [dbo].[ADOC] T0  INNER JOIN  [dbo].[ORDR] T1 ON T0.DOCNUM = T1.DOCNUM WHERE T0.ObjType = N'17'   AND  T0.DocNum = 400000
    AND T1.DOCDUEDATE <> T0.DOCDUEDATE
    NOTE: The number of times the Alert appear cannot be controlled through a Query, it is a setting in the Alerts windows. 
    Suda

  • How  to upload sales quotation data through LSMW?

    Hello i need to upload the sales quotation data from transaction VA21 for this we are using LSMW direct input method
    the program RVINVB10 is used and there are 8 segments as given below was mapped
    BVBAKKOM   Header records
    VBPAKOM      Partner records
    BVBAPKOM    Item records
    BVBEPKOM     Schedule line data
    H_BTEXHKOM Header text record
    H_BTEXLKOM  Header text line
    BTEXHKOM      Item text record
    BTEXLKOM      Item text line
    i have tried to upload the data using some test data but unable to upload. can anybody send the sample test data for it which needs to be given in flat file?
    when i debugged the program i found some problem with the function module SD_SALES_HEADER_MAINTAIN
    please let me know what are the export and import parameters to pass to this function module to work properly

    yes

Maybe you are looking for