Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can not create childlist error....

Status
Not open for further replies.

que4life

Programmer
Feb 15, 2005
7
US
Below is a stored procedure that gives the desired record when run in access...When I run the sp in vn.net I am getting an error that it can not create a childlist for the field tmpLoungeSales. I have other queries that work fine in the code. Any and all help is appreciated.

INSERT INTO tmpTotalLoungeSales ( Total_LoungeSales )
SELECT Sum(LoungeTotalSales) AS SumOfL_Total
FROM LoungeSalesSummary
WHERE (((LoungeSalesSummary.L_Date) Between [@BegCalDate] And [@EndCalDate]));

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top