OracleArea51 Blog

Serving Oraclelites Globally ...
May 19
2012

Tango Map

Posted by Sudhakar Mani in Untagged 

Sudhakar Mani
Mar 23
2012

Redirect Configurator Extension to new Window

Posted by Kaushal Bhati in soa suite , soa , oracle apps , oracle , oaf , oa framework , fusion , esb , ebusiness suite , ebs

Kaushal Bhati

Use below method         
Attach it to the [on command] event of any button.
 public void generateOutput(IRuntimeNode rtNode, HttpServletResponse response)
 {
                        PrintWriter out = response.getWriter();
                        response.setContentType("text/html");
                        response.sendRedirect("www.google.com");
}
or you can embed HTML response in the page.
public void generateOutput(IRuntimeNode rtNode, HttpServletResponse response)
 {
                        PrintWriter out = response.getWriter();
                        response.setContentType("text/html");
                                     sHTML = "<html>n" +
                                                            "<head>n " +
                                                            "<title>Information</title><script language='javascript' type='text/javascript'>n " +
                                                            "function closeWindow(){" +
                                                            "alert('closedd');" +
                                                            "}" +
                                                            "</script></head>n " +
                                                            "<body onunload='closeWindow()'> " +
                                                            "</body>n"+
                                                            "</html>n";
                                                            out.println(sHTML);
}

Apr 07
2011

How to Create hgrid (custom application)

Posted by venkat in soa suite , soa , oracle apps , oracle , oaf , oa framework , fusion , esb , ebusiness suite , ebs

venkat

Hi All,

 

Any one can help me out to create hgrid(custom application).

Mar 23
2011

Indexes

Posted by Kasiraja in soa suite , soa , oracle apps , oracle , oaf , oa framework , fusion , esb , ebusiness suite , ebs

Kasiraja

Indexes

 
  There are 4 types of indexes in Oracle8-

a) Btree index

b) Btree index clusters

c) Hash cluster index

Mar 16
2011

Oracle PL/SQL CODE OPTIMIZATION

Posted by Kasiraja in soa suite , soa , oracle apps , oracle , oaf , oa framework , fusion , esb , ebusiness suite , ebs

Kasiraja

1. Introduction

 

Programs containing a large number of codes of line and complex structure may consume more time for processing leading to a downfall of performance.

 

Mar 08
2011

How to read the file from filesystem and display it on the OA Framework Page

Posted by Sudhakar Mani in oracle apps , oracle , oaf , oa framework , ebusiness suite , ebs

Sudhakar Mani

Requirement was to build an OAF page which will display the files stored in the filesystem.OA Framework doesn't support this functionality natively.But core java comes in handy during these situations.

Challenges:

1) Dynamically read the files from a specific directory.
2) Create the link items dynamically and provide action type programatically
3) Filter the files by name
4) Open the pdf file using a custom function(OA Framework supports FileDownload from a blob but we need to show that from file-system).

Below code addresses all the challenges above and creates a seamless approach to read the file from filesystem and display them in an OAF Page.

Feb 07
2011

How to send email and save the pdf to the file system with BI Publisher

Posted by Sudhakar Mani in soa suite , soa , oracle apps , oracle , oa framework , esb , ebusiness suite , ebs , bursting to filesystem , bi publisher bursting , bi publisher

Sudhakar Mani

I got this requirement recently with one of my client to send an email as well as save the pdf on the file system for future audit purpose.The existing program was sending the email attachment with the bursting Control file,but now we have to include the option to save it to the file system after the email is sent.I went with the multiple delivery channel approach to get the functionality working..the code snippet for the bursting file is available below.

Feb 06
2011

Java for OA Framework

Posted by potdar in soa suite , soa , oracle apps , oracle , oaf , oa framework , fusion , esb , ebusiness suite , ebs

potdar

I am learning JAVA for OA Framework. From the DOS command prompt I need to compile the JAVA programs in the online video. I need the url to download the JAVA
compiler. After than how do I set the environmental variables so as to compile the JAVA program in notepad from the C: command prompt in DOS.

Jan 18
2011

How to Update Start Date and End Date of an Oracle Project

Posted by Sudhakar Mani in oracle projects , oracle apps , oracle , ebusiness suite , ebs

Sudhakar Mani

Recently I had this requirement to update the project start date and end date on a oracle project.This requires lot of validations before update can be performed but the below API really simplified my work..Have a look at the below API sample Call

Dec 09
2010

How to test an Oracle Apps Web Service using SOAP UI

Posted by Aarthi in Untagged 

Aarthi

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:

 

Advertisements