Advertisement
Advertisement
| 08.29.2008 at 03:13PM PDT, ID: 23690282 |
|
[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.
Your Input Matters 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! |
||
1: 2: 3: 4: 5: |
UPDATE #DP1 SET dp_bf_sales_cy =
(SELECT COALESCE(SUM(CONVERT(decimal(14,2),sa_debit_total)),0)+COALESCE(SUM(CONVERT(decimal(14,2),sa_discount_total)),0)
FROM dbo.sitecontroller_data_sales WHERE sa_event_id = '10190' AND sa_status IN ('132','16516') AND sa_trans_chain = '0' AND
sa_store_code = dp_store_code AND sa_business_date BETWEEN @startdate AND @enddate AND
(DATEPART(hh,sa_business_time) >= @StartHour AND DATEPART(hh,sa_business_time) < @EndHour) )
|