Sunday, March 26, 2017
Tuesday, March 21, 2017
oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27120: SQL error during query execution.
Create the sequence and grant access to apps
Thursday, March 9, 2017
Application Module not displaying in projects list
Go to
Tools --> Projects Properties --> Project Content --> Jave Content
Add the path where you set your package e.g C:\jdev\jdevhome\jdev\myproject
Go to Exclude tab select path, press button remove and finally press button OK.
Tools --> Projects Properties --> Project Content --> Jave Content
Add the path where you set your package e.g C:\jdev\jdevhome\jdev\myproject
Go to Exclude tab select path, press button remove and finally press button OK.
Saturday, March 4, 2017
Launching an Oracle E-Business Suite Form From a Submit Button in an OA Framework page
If you wish to launch an Oracle E-Business Suite form from a submit button in an OA Framework page, you must use the OAPageContext.forwardImmediatelyToForm(String url) method from oracle.apps.fnd.framework.webui.OAPageContext. An example of how to use this API is shown in the code sample below:
public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
{
super.processFormRequest(pageContext, webBean);
if (pageContext.getParameter("Apply")!=null)
{
String destination = "form:SYSADMIN:SYSTEM_ADMINISTRATOR:STANDARD:FND_FNDMNMNU"; pageContext.forwardImmediatelyToForm(destination);
}
}
public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
{
super.processFormRequest(pageContext, webBean);
if (pageContext.getParameter("Apply")!=null)
{
String destination = "form:SYSADMIN:SYSTEM_ADMINISTRATOR:STANDARD:FND_FNDMNMNU"; pageContext.forwardImmediatelyToForm(destination);
}
}
Subscribe to:
Posts (Atom)