For reports, is there a way to escape characters that have special meaning to the substitution logic?
For example, I am trying to create a variable defined to include this column based on a check box:
This is what I've attempted so far:
But this give me an error
"Display Reject Code: Checkbox requires 2 items:
CHECKBOX="checked,unchecked"
due to the commas used in the Decode statement.
I haven't figured a way to get around this.
Thanks,
Christian
For example, I am trying to create a variable defined to include this column based on a check box:
Code:
Decode(r.reject_code, null, r.status, r.reject_code || ' - ' || c.short) Reject_Code,
Code:
&<NAME="Display Reject Code"
Checkbox = "Decode(r.reject_code, null, r.status, r.reject_code || ' - ' || c.short) Reject_Code,"
Suffix = "," >
"Display Reject Code: Checkbox requires 2 items:
CHECKBOX="checked,unchecked"
due to the commas used in the Decode statement.
I haven't figured a way to get around this.
Thanks,
Christian