CREATE VIEW vCustomQuoteItems
AS
select QuIt_LineItemID, prod_code, quit_productid,quit_description,
quit_linenumber, prod_name,quit_orderquoteid,
FORMAT(quit_quantity,'N2')as quit_quantity,
uom_description as quit_uomid,
FORMAT(quit_quotedprice,'N2') as quit_quotedprice,
FORMAT(quit_quotedpricetotal,'N2') as quit_quotedpricetotal,
uom_description
from vLineItemsQuote
left join vUOM on UOM_UOMID=quit_uomid
In the Accelerator web.config change the setting from
image.png
28 KB
View full-sizeDownload Please note that your columns may be different and this view is just an example. You may need to customise this some more.