Advertisement

03.23.2008 at 02:31PM PDT, ID: 23263034
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.4

advanced loop in manipulating data layout for coldfusion report

Asked by tiredntroubled in Cold Fusion Markup Language

Tags: ,

Hi all,

I have a stored procedure which is returning a specific set of data related to a customer.  The data is being displayed in coldfusion so that information is returned for each customer.

Eg.

Heading 1  Heading 2  Heading 3
Mary Smith
1          2            3

Heading 1  Heading 2  Heading 3
Nancy Turner
1          2            3


Heading 1  Heading 2  Heading 3
Gary Silly
1          2            3


The way I have this is by calling the procedure:
       <cfstoredproc datasource="#Request.MyDSN#" procedure="[sp_retrieve_data">
                  <cfprocparam cfsqltype="CF_SQL_TIMESTAMP"   value="#form.Issued_Date#" />
                  <cfprocparam cfsqltype="CF_SQL_VARCHAR"   value="#form.state#" />
                  <cfprocparam cfsqltype="CF_SQL_VARCHAR"   value="#form.selectRegion#" />
            <cfprocresult name="MyQuery" resultset="1"  />
      </cfstoredproc>

I then query to pull back each customer:
<cfquery name="qCust" dbtype="Query">
      select distinct cust
      from MyQuery
      order by cust
</cfquery>

Then, I have another query:
<cfloop query="qCustp">
            <cfquery name="qDetail" dbtype="query">
            select data1, data2, data3
                  from MyQuery
                  where
                  cust = '#qCust.cust#'
            </cfquery>

Then with a table, I output the headings and the data from qDetail.

I would now like to show 2 sections for each customer one which is already there, and if there are any previous orders,
I would like that to show beneath it, so for example:
Customer Data
Heading 1  Heading 2  Heading 3
Mary Smith
1          2      3

Previous Orders
Heading 1  Heading 2  Heading 3
Mary Smith
1          2      3

Customer Data
Heading 1  Heading 2  Heading 3
Nancy Turner
1          2      3


Previous Orders
Heading 1  Heading 2  Heading 3
Nancy Turner
1        2      3

Right now, I have all that I need being returned from the procedure.  I think I need to somehow add another loop in the coldfusion page.  This is where I need help.  Any insight would be most appreciated.  Thanks.

Start Free Trial
[+][-]03.24.2008 at 02:34AM PDT, ID: 21192584

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Cold Fusion Markup Language
Tags: coldfusion, ie 7
Sign Up Now!
Solution Provided By: Zvonko
Participating Experts: 1
Solution Grade: A
 
 
[+][-]03.24.2008 at 02:39AM PDT, ID: 21192588

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.24.2008 at 02:30PM PDT, ID: 21197132

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.24.2008 at 02:52PM PDT, ID: 21197408

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]03.25.2008 at 06:46PM PDT, ID: 21208128

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 - Hierarchy / EE_QW_2_20070628