Oracle OAF: Bounce HTTP Server (Apache)
Use the following commands;$INST_TOP/admin/scripts/adoacorectl.sh stop$INST_TOP/admin/scripts/adoacorectl.sh start
Use the following commands;$INST_TOP/admin/scripts/adoacorectl.sh stop$INST_TOP/admin/scripts/adoacorectl.sh start
You can refer to Metalink note ID 357597.1 1. Set profile "FND: Diagnostics" to "Yes" at user level.2. Login to Personal Home Page as that user and select the "Diagnostics" icon…
To hide a buttonOASubmitButtonBean saveT = (OASubmitButtonBean)webBean.findChildRecursive("Save1");saveT.setRendered(true);To disable a buttonOASubmitButtonBean saveT = (OASubmitButtonBean)webBean.findChildRecursive("Save1");saveT.setDisabled(true);
(from Oracle Application Framework Developer's Guide 12.1.3)Some CSS Styles:OraDataText, OraFieldText, OraTipTextCommon Control Types:OAMessageCheckBoxBeanOAMessageChoiceBeanOAMessageDateFieldBeanOAMessageStyledTextBeanOAMessageTextInputBeanOAMessageLovInputBeanOther Control Types:OAInlineMessageBean, OAMessageAttachmentLinkBean, OAMessageBoxBean, OAMessageColorFieldBean, OAMessageDownloadBean, OAMessageFileUploadBean, OAMessageInlineAttachmentBean, OAMessageLayoutBean, OAMessageListBean, OAMessageLovChoiceBean, OAMessageLovTextInputBean, OAMessagePromptBean, OAMessageRadioButtonBean, OAMessageRadioGroupBean, OAMessageRichTextEditorBean, OARichTextEditorBean
The following code requires you to setup a new custom message in Applications (Application Developer Responsibility) with name XXX_CUSTOM_MSG_BUTTON.OASubmitButtonBean oasb = (OASubmitButtonBean)pageContext.getWebBeanFactory().createWebBean(pageContext, "BUTTON_SUBMIT");oasb.setID("xxCustomButton");oasb.setUINodeName("xxCustomButton");oasb.setEvent("xxCustomButton"); String printTextMsg = pageContext.getMessage("XXX","XXX_CUSTOM_MSG_BUTTON",null);oasb.setText(printTextMsg);oawebbean.addIndexedChild(oasb);
You can use the following snippets, for storing and getting values from the session:set session value:pageContext.putSessionValue("session_xxCode", xxCode_parameterString); get session value:pageContext.getSessionValue("session_xxCode")remove session value:pageContext.removeSessionValue("session_xxCode");Also through pageContext.getApplicationModule(webBean).getOADBTransaction() you can get a lot of session information.For example:pageContext.writeDiagnostics(this,…
Please view:WebLogic Server 12c - ADF: Preparation for ADF on Windows
Let's suppose that we have a spring web application, which is already deployed in Tomcat and we want to migrate to Weblogic Server.We must take care of the following:First create…
In Oracle ADF the weblogic.xml is automatically created.In order to change the context-root element, without editing the weblogic.xml after its creation, simply select:Project Properties > Java EE ApplicationThere you can…
Let's suppose that you want to return on Sys_RefCursor, some values, which does not exist in the database, thus should be created on the fly.One way to do this, is…