Hi Chakrapani,
We simulated and reproduced the problem. But we don't quite know if it is the same in your case. We recommend that you submit a ticket at https://www.appeon.com/standardsupport/newbug and provide a reproducible test case so that we can better track and verify it.
Here is our PowerScript that simulates and reproduces the problem:
Declare usp_setclientinfo procedure for dbms_application_info.set_client_info(:ls_name||’@’||:ls_company) using sqlca;
The workaround is to replace “:ls_name||’@’||:ls_company” with a variable, for example:
string ls_parm
ls_parm = ls_name + ’@’+ ls_company
Declare usp_setclientinfo procedure for dbms_application_info.set_client_info(:ls_parm) using sqlca;
Regards,
David