cancel
Showing results for 
Search instead for 
Did you mean: 

CPQ : How to get the total number of quotes in "preparing" status on a domain ?

agnesbaton
Explorer
0 Kudos
759

We need to get the number of quotes which are in status 'preparing" on a specific domain ? How should we proceed to get it ?

View Entire Topic
yogananda
Product and Topic Expert
Product and Topic Expert

Hi agnes.baton

you can get the count of quotes which is in "Preparing" status and you can further extend it according to your need
status = 'Preparing'
sql = "select count(*) as Count1 from quotes where OrderStatus = '"+ status +"'"
no_of_count = SqlHelper.GetFirst(sql)

agnesbaton
Explorer
0 Kudos

how to get the quote owner ?

what are the different columns for table quotes ?