Soap UI tool is used for testing the web service. It can be downloaded from the below link:
Below are the steps for testing the Web Service using Soap UI tool:
Soap UI tool is used for testing the web service. It can be downloaded from the below link:
Below are the steps for testing the Web Service using Soap UI tool:
Soap UI tool is used for testing the web service. It can be downloaded from the below link:
Below are the steps for testing the Web Service using Soap UI tool:
There was a requirement with one of my client to open an OAF page from workflow email notification. In R12 below error will occur if you try to open an OAF Page URL link directly.
You are trying to access a page that is no longer active.
- The referring page may have come from a previous session. Please select Home to Proceed.
Note: When you call a standard page this error won't appear. This happens only when you try to open a custom page.
| Create Code | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
public void createEmployee() { OAViewObject vo = (OAViewObject)getEmployeeFullVO1(); // Per the coding standards, this is the proper way to initialize a // VO that is used for both inserts and queries. See View Objects // in Detail in the Developer's Guide for additional information. if (!vo.isPreparedForExecution()) { vo.executeQuery(); } Row row = vo.createRow(); vo.insertRow(row); // Required per OA Framework Model Coding Standard M69 row.setNewRowState(Row.STATUS_INITIALIZED); } |
| Cancel Button Code | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
if (pageContext.getParameter("Cancel") != null) { am.invokeMethod("rollbackEmployee"); // Indicate that the Create transaction is complete. TransactionUnitHelper.endTransactionUnit(pageContext, "empCreateTxn"); pageContext.forwardImmediately("OA.jsp?page=/oracle/apps/fnd/framework |
The Page xml files(*PG.xml) and region xml(*RN.xml) files resides in the database. So you have to import the file into the database to make it work in the instance. Oracle application provides XMLExporter/XMLImporter to export and import page files from and to the database.