For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.
Hi
Anyone got some guidelines on on rolling back to 5.0 from 5.1?
The latest 5.1 documentation omits this information? https://docs.oracle.com/database/apex-5.1/HTMIG/cleaningup-after-failed-installation.htm#HTMIG265
Should I follow the 4.2 non-CDB process and replace all references to APEX_040200 with APEX_050000?
****** The above doesnt work... scripts have changed... *****
Regards,
Shaun
Xandot wrote:
Facing issue while redirecting text values from one page to another like:
Page 1:
Page 2:
when I like to empno then it'll transfer ename to the next page on ename field but problem is its only showing "J & a".
after comma text is not copied to the next page, so how to handle this kind on the issue related to special char?
I'm using below code URL code for redirect page:
HTML Header:
<script language="JavaScript" type="text/javascript"> function callMyPopup (ENAME,EMPNO) { var url; url = 'f?p=&APP_ID.:11:&APP_SESSION.::::P11_ENAME,P11_EMPNO:'+ escape(ENAME) +',' + EMPNO; w = open(url,"winLov","Scrollbars=1,resizable=1,width=925,height=400"); } </script>
It's possible to pass values containing commas in APEX URLs by escaping the value using backslashes ("\") as described in the documentation:
f?p=&APP_ID.:11:&APP_SESSION.::::P11_ENAME,P11_EMPNO:\'+escape(ENAME)+'\,'+EMPNO
However, generally the best approach is simply not to pass string values in URLs. Whilst it is possible to escape strings to make them URL- and APEX parameter-safe, it is much better practice to avoid the problem altogether. Change the application so that it only passes alphanumeric EMPNO key values as URL parameters. In target pages/regions, use the key value to retrieve ENAME using region/item source attributes, computations, or processes.
Thanks for the information. I will remove text variables from the link.