Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: Recurring Orders Summary report

  1. #1
    chuckb_jr is offline Junior Member
    Join Date
    Apr 2009
    Posts
    17

    Default Recurring Orders Summary report

    Would like some help in knowing what I need to query to be able to build a summary level report of all my recurring orders so we can do some forecasting.

    Are there any products out there that will do this? Does anyone just have a query they can send me?

    Thanks.
    c b j

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    not sure what exactly the kind of report you want (i.e. columns, etc) but you can try this:

    Code:
    select o.OrderNumber, o.OrderDate, os.OrderedProductName,os.Quantity, o.OrderTotal,o.TransactionState  from Orders o inner join Orders_ShoppingCart os on o.OrderNumber = os.OrderNumber where o.CartType =2  order by os.OrderNumber
    CartType:
    0 = ShoppingCart
    1 = WishList
    2 = RecurringCart
    3 = GiftRegistryCart

    You can execute this via Custom Report in the admin, see this KB.
    Last edited by ASPAlfred; 01-06-2011 at 10:52 PM.

  3. #3
    chuckb_jr is offline Junior Member
    Join Date
    Apr 2009
    Posts
    17

    Default

    This is a perfect start, thank you!

    I think I just need to add NextRecurringShipDate in here and sort by that and it's exactly what I need.
    Last edited by chuckb_jr; 01-07-2011 at 05:33 AM.