Oracle CRM OnDemand 自定义 Web 小程序 - 将用户对象变量添加到 URL
我有一个自定义 Web 小程序,我将其添加到 Oracle CRM On Demand 应用程序的“潜在客户”对象选项卡中。通过 %%%VARIABLE_NAME%%% 约定在 URL 中包含变量很容易,但这似乎只适用于对象本身(潜在客户、服务请求等),因为我要添加的字段是不同字段的一部分对象(用户)它似乎不起作用。
任何有关如何添加此内容的帮助将不胜感激。
这里讨论了自定义 Web 小程序,在字段下讨论了添加变量: http://下载。 oracle.com/docs/cd/E14388_01/books/OnDemOLH/index.htm?toc.htm?creatingcwa.html
I have a custom web applet that I am adding to the Lead object tab of my Oracle CRM On Demand app. It is easy to include a variable in the URL via the %%%VARIABLE_NAME%%% convention but that seems to only work with the object itelse (Lead, Service Request, etc) Since the field I want to add is part of a different object (the User) it doesnt seem to be working.
Any help on how to add this would be greatly appreciated.
Here it talks about custom web applets, and under Fields it talks about adding a variable:
http://download.oracle.com/docs/cd/E14388_01/books/OnDemOLH/index.htm?toc.htm?creatingcwa.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于这个问题,我从 Oracle Web 服务开发人员那里得到了明确的“不可能”。
事实证明,在一个对象的自定义 Web 小程序中,您无法拥有其他对象的自定义字段。
我的解决方法是将唯一的 userid %%%User id%%% 传递回我的应用程序并从那里开始工作。
I got a definitive "not possible" from an oracle web service developer on this issue.
So turns out that in a custom web applet for one object you cannot have custom fields from other objects.
My work-around is to pass the unique userid %%%User id%%% back to my app and work from there.