Hi everyone:
Dumb question: I have a process and at the end of it a message is saved in a page item. In the same process, I read the same page item for the "process success message" field. I would like the saved output to be in 2 lines when applying changes. I have tried using CHR(13) and it doesn't work.
For example
:
:
IF v_count > 0 THEN
:P1_SUCCESS := 'Number changed: ' || v_count || chr(13) || --This is where i was to break
'Items changed: ' || v_list;
ELSE
:P1_SUCCESS := 'No Match Found';
:
:
Please help,
-Bino