Here is the source code that produce the error in the subject.  This was
code that worked fine in 3.x, but in 4.0.1 fails.

And ideas?
-----------------------------------------------------

        <cfquery name="Bill" datasource="#PrimaryDataSource#">
                SELECT * FROM vwCreditOrgs WHERE chargestatus IN ('D','F','T','C') AND
Total > 0
        </cfquery>

<cfloop query="Bill">

        <cfset BillCustID = Bill.Customerid>
        <cfquery name="NextDate" datasource="#PrimaryDataSource#">
                SELECT bill,nextbilldate FROM customers
                WHERE customerid = '#bill.organizationid#'
        </cfquery>

        <cfquery name="OrgDomains" datasource="#PrimaryDataSource#">
                                        SELECT customerid,bill FROM customers
                                        WHERE organizationid = '#OrgID#'
                                        ORDER BY customerid
                                </cfquery>

                                <!--- Loop through all child domains to update payment 
info --->
                                <cfloop query="OrgDomains">
                                </cfloop><!--- Next Child Domain (query=OrgDomains) 
--->

</cfloop><!--- Next customer (query = Bill) --->


------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to