在EBS 11i实例中有一个表单函数'CustomForm' - 它的WEB HTML调用定义如下
javascript:void window.open('OA_HTML / jsp / pol / log / xxcustom.jsp?xx_resp_id = [RESPONSIBILITY_ID]')---这在Oracle EBS 11i中运行良好
因此,当我们点击与“CustomForm”相关联的菜单时,xxcustom.jsp会出现在新的浏览器页面中,并且该URL [RESPONSIBILITY_ID]将替换为实际的责任ID值,如下所示
http://isy900.bas.com:8042/OA_HTML/jsp/pol/log/xxcustom.jsp?xx_resp_id=12345'
但是当我在R12.2.6中实现相同的内容(因为我正在为11i到R12重新实现)在页面URL中
http://isy900.bas.com:8042/OA_HTML/jsp/pol/log/xxcustom.jsp?xx_resp_id=[RESPONSIBILITY_ID] ---Note the value is not appearing
如何在EBS R12.2.6中实现相同的功能?