Thanks, Scott. I'm working off the custom reports page in the knowledge base (https://support.aspdotnetstorefront....barticleid=212) and have one more question.
The example custom report given is:
Code:
INSERT INTO CustomReport (Name, Description, SQLCommand)
VALUES ('Test Report', 'Test Description of our report', 'SELECT Email, BIllingZip FROM ORDERS')
With the additional information you have given me, I have been able to fill out everything except "SQLCommand". What, exactly, is the store software looking for here?
Code:
INSERT INTO CustomReport (listProductIDs, List all product names and IDs, SQLCommand)
VALUES ('Product ID Report', 'List of All product IDs and SKUs', 'SELECT ProductID, SKU FROM PRODUCTS')
Also, could you please let me know what the name for the product name/title column is?