Oracle OAF: Deployment
Here are the parts of deployment in OAF:a. Deploy Customizations (supposing that we have created a folder /oaf/custdocs in the source system and /oaf/custdocs_STG in the target system):1. Source System:…
Here are the parts of deployment in OAF:a. Deploy Customizations (supposing that we have created a folder /oaf/custdocs in the source system and /oaf/custdocs_STG in the target system):1. Source System:…
Here is how different files are copied to the application server:- Controller files (CO.class): go from /myclasses/.../webui to $JAVA_TOP/.../webui- View Object files (VO.xml, VOImpl.class, VORowImpl.class): go from /myclasses/.../server to $JAVA_TOP/.../server-…
Here are some examples from OAF types of messages:Debug Message:pageContext.writeDiagnostics(this, "CustomDebug message: milestone 01", OAFwkConstants.PROCEDURE);(Can be viewed with Diagnostics enabled on PROCEDURE level)Error Message:throw new OAException("XXX", "XXX_MY_CUSTOM_MSG", null, OAException.ERROR, null);Confirmation…
The following piece of code is an example of how we can loop a View Object (VO) and do something: public void processFormRequest(OAPageContext pageContext, OAWebBean oawebbean) { super.processFormRequest(pageContext, oawebbean); …
This code requires you to setup a new function with name XXX_CUSTOM_PAGE, specify the complete path and assign this function to your responsibility.String AuctionHeaderId = ReqRow.getAttribute("AuctionHeaderId").toString();String BidNumber = ReqRow.getAttribute("BidNumber").toString();HashMap hm…
In configuration file httpd.conf, replace the "Indexes" keyword with "-Indexes".The access to the specific directories that you change it, will be forbidden.For example:<Directory "${path}/www"> # # Possible values for the…