Search Community
Articles
Playlists
Chola - Search - Videos
Chola - Search - Channel
Forums
Attachments

Aarthi Sudhakar's Blog

My Knowledge Base !!
Dec 09
2010
Aarthi

How to test an Oracle Apps Web Service using SOAP UI

Posted by Aarthi in Untagged 

User Rating:  / 0

Soap UI tool is used for testing the web service. It can be downloaded from the below link:

http://www.soapui.org/

Below are the steps for testing the Web Service using Soap UI tool:

 

User Rating:  / 0

Soap UI tool is used for testing the web service. It can be downloaded from the below link:

http://www.soapui.org/

Below are the steps for testing the Web Service using Soap UI tool:

 

Sep 04
2010
Aarthi

Extending the PageLayoutRN of a Page in OAF

Posted by Aarthi in Untagged 

User Rating:  / 0
I had this requirement where I had to use the same page structure but change few things in the page dynamically.I extended the PageLayoutRN of the original page and dynamically created few links and other things that I had to do in that page.

User Rating:  / 0

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.

Nov 05
2009
Aarthi

Create Page Code in OAF

Posted by Aarthi in Untagged 

User Rating:  / 0




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);
 
 
  } 

 

Nov 05
2009
Aarthi

Cancel Button Code for OAF Page

Posted by Aarthi in Untagged 

User Rating:  / 0






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
/toolbox/labsolutions/webui/EmpSearchPG"
,
null, OAWebBeanConstants.KEEP_MENU_CONTEXT, null, null, true, // retain AM OAWebBeanConstants.ADD_BREAD_CRUMB_NO); }  

 

Oct 11
2009
Aarthi

Exporting OA Page Definitions

Posted by Aarthi in oracle

User Rating:  / 0

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.

Sep 25
2009
Aarthi

OBIEE Architecture/Components

Posted by Aarthi in Untagged 

User Rating:  / 0
The main components of OBIEE are :
  • Oracle BI Presentation Services
  • Oracle BI Applications.
Now let us see what are the use and definitions of all the components.
Sep 24
2009
Aarthi

Installing OBIEE on Windows

Posted by Aarthi in Untagged 

User Rating:  / 0
Oracle Business Intelligence Suite Enterprise Edition Plus (Oracle BI EE Plus) is a comprehensive suite of enterprise BI products that delivers a full range of analysis and reporting capabilities.
Sep 22
2009
Aarthi

Basics of WSDL

Posted by Aarthi in Untagged 

User Rating:  / 0

WSDL is Web Service Definition Language.It is an XML-based language for describing Web services and how to access them.WSDL is also used to locate Web services.It is a W3C recommendation.

Advertisements