I'm using CR XI and I see where to view the SQL statement for the report, but is there any way for me to modify it?
For example, right now it's:
I would like to change the ORDER BY line. How do I go about doing this? Thanks for any help!
For example, right now it's:
Code:
SELECT DISTINCT "InvoiceLine"."BillAddressAddr1",
"InvoiceLine"."InvoiceLineItemRefFullName",
"InvoiceLine"."InvoiceLineDesc", "InvoiceLine"."InvoiceLineQuantity",
"InvoiceLine"."InvoiceLineSeqNo", "InvoiceLine"."RefNumber",
"InvoiceLine"."TxnDate", "InvoiceLine"."Memo"
FROM "InvoiceLine" "InvoiceLine"
WHERE "InvoiceLine"."Memo" LIKE 'tank service%'
ORDER BY "InvoiceLine"."BillAddressAddr1", "InvoiceLine"."RefNumber"
I would like to change the ORDER BY line. How do I go about doing this? Thanks for any help!