|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[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: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: |
Updated Query: declare @PO_Number varchar(256), @PO_Type varchar(256), @Vendor varchar(256), @Label varchar(256), @Gender varchar(256), @Season varchar(256), @Category varchar(256), @Classification varchar(256), @Description varchar(256), @Style varchar(256), @Quality varchar(256), @Color varchar(256), @Size varchar(256), @Type varchar(256), @Units_Greater_Than integer, @Excess_Inventory varchar(1), @Cost_Per_Unit_Over money, @Cost_Per_Unit_Under money, @Warehouse varchar(256), @Section varchar(256), @Units_Less_Than integer, @Status varchar(256), @SO_Number varchar(256), @fields varchar(2000) select distinct '(['+size.description+'_units'+'] > 0) and ' as field,space(1) as RecList into #workingtable from size, iter_intlist_to_table(@Size) i_size where size.size_id = i_size.number set @fields = '' select @fields=@fields+field from #workingtable select distinct 'Section: '+LTRIM(STR(section_number))+' '+section_header+' Inventory' as "MainHeading" from wms_reports_staging_table ,size, iter_intlist_to_table(@Size) i_size, iter_intlist_to_table(@Label) i_label, iter_intlist_to_table(@Classification) i_class, iter_intlist_to_table(@Vendor) i_vendor, iter_intlist_to_table(@Season) i_season, iter_intlist_to_table(@Gender) i_gender, iter_intlist_to_table(@Category) i_category, iter_intlist_to_table(@Status) i_status, iter_intlist_to_table(@Description) i_carton, iter_intlist_to_table(@Quality) i_quality, iter_intlist_to_table(@Color) i_color, iter_intlist_to_table(@Warehouse) i_warehouse, iter_intlist_to_table(@Style) i_style, iter_intlist_to_table(@PO_Type) i_po_type, iter_charlist_to_table(@PO_Number) i_po_number, iter_charlist_to_table(@SO_Number) i_so_number, iter_intlist_to_table(@Section) i_section, iter_charlist_to_table(@Type) i_type where + (case when @fields<>'' then @fields else '' end)+ size.size_scale_id = wms_reports_staging_table.size_scale_id and size.size_id = i_size.number and 1 = 1 and (inventory_status_id = i_status.number) and (po_number = i_po_number.item) and (so_number = i_so_number.item) and (po_type_id = i_po_type.number) and (section_number = i_section.number) and (case when type='' then 'nej' when type is null then 'nej' else type end = i_type.item) and (vendor_id = i_vendor.number) and (label_id = i_label.number) and (gender_id = i_gender.number) and (season_id = i_season.number) and (classification_id = i_class.number) and (category_id = i_category.number) and (label_description_id = i_carton.number) and (style_id = i_style.number) and (quality_id = i_quality.number) and (color_id = i_color.number) and (warehouse_id = i_warehouse.number) and cost > str(@Cost_Per_Unit_Over) and cost < str(@Cost_Per_Unit_Under) and cost = 0 |
Advertisement
| Hall of Fame |