We are wondering if there is a report that we can make that will track when a quote is converted to an SO. I currently have a dirty query that kind of works, but not very well. It isn’t really giving the right data.
Currently our process is to create the quote, then when the customer says they want it, we go to the Quote>Actions>Quote>Create Sales Order. The green box that says WON shows up on the quote. I am wanting a report that has the quote number, SO number, and dollar amount from the SO where the quote is WON. Does anyone have anything like this that I could start from and then customize for our organization? Below is what I have so far. I know there is a Task.Conclusion that should be used, but even if the green box that says WON is not there, it doesn’t look like users can go in and change it to WON. Idk…
select distinct
[OrderDtl].[OrderNum] as [OrderDtl_OrderNum],
[OrderDtl].[DocUnitPrice] as [OrderDtl_DocUnitPrice],
[QuoteHed].[ShortChar01] as [QuoteHed_ShortChar01]
from Erp.OrderDtl as OrderDtl
inner join Erp.OrderHed as OrderHed on
OrderDtl.Company = OrderHed.Company
and OrderDtl.OrderNum = OrderHed.OrderNum
inner join Erp.QuoteHed as QuoteHed on
OrderDtl.Company = QuoteHed.Company
and OrderDtl.QuoteNum = QuoteHed.QuoteNum
and ( QuoteHed.ShortChar01 = 'W' )
where (OrderDtl.DocUnitPrice > 0.01)
Thanks in advance!