I have the following code. How can I modify it so it displays the value of what it will put in the tot_sls_amt? I do not want to update any tables.beginupdate oeordhdr_sqlSET tot_sls_amt = (select FLOOR(A.SumExtUnitPrice*100)/100 from(selecT ord_type,Ord_no,sum((UNIT_PRICE*QTY_TO_SHIP)-((unit_price * qty_to_ship)*(DISCOUNT_PCT*.01)))as SumExtUnitPrice from oeordlin_sqlgroup by ord_type,ord_no)Awhere A.ord_type = oeordhdr_sql.ord_type and A.ord_no = oeordhdr_sql.ord_no)from oeordlin_sql join oeordhdr_sql on oeordlin_sql.ord_type = oeordhdr_sql.ord_type and oeordlin_sql.ord_no = oeordhdr_sql.ord_nowhere oeordhdr_sql.ord_type <>'C' and oeordlin_sql.line_no = 9999 and isnull(oeordlin_sql.item_desc_2,' ')<>'CHANGE' AND OEORDLIN_SQL.ITEM_NO = 'RBATE'END