Wednesday, March 6, 2013

Adding and Using Jar files in Oracle ADF Application/Project

In this project i will show how to add and use a Jar file of some other ADF Project in your ADF application. First create a Jar file which you want to use in your ADF application and then add them into your application by using following procedure. 1) In your Oracle ADF application go to "Resource Palette", if not visible then go to view and click on "Resource Palette " and now you will be able to see this. 2) Next do this, select new connection...

Tuesday, March 5, 2013

Displaying alternative values for specific attributes in Oracle ADF

Sometime we come across such type of requirement in Oracle ADF when we want to display some alternative value of attribute based on some condition. For example if we have a column in database that represents status of something, then instead of storing whole word like "Approve", "Reject", "Pending" etc we can just store "A", "R" ,"P" respectively to save space and to improve performance as well. But it is not good to show "A, R , P " etc on UI because it is not user friendly. Alternatively we can show Approve, Reject or pending etc.  ...

Create Sequence in Oracle ADF

In this post i will show how we can create and use sequence in Oracle ADF by using Groovy expression. First create a sequence in your database then use the following code to implement it. (new oracle.jbo.server.SequenceImpl("PURCHASEREQ_SEQ",adf.object.getDBTransaction())).getSequenceNumber() here PURCHASEREQ_SEQ is my sequence name that I have created in Database. See the below snapshot for clarification. so this is really simple and easy way...

Oracle Universal Content Management (UCM) Installation and Configuration guide, Webcenter Content

11)    Required software:   Ø    Oracle Database 11g. Ø    Oracle Weblogic server 11g. Ø    Oracle Repository Creation Utility. Ø    Oracle Webcenter Content 11g (UCM). Ø    Oracle JDK 22)    Installation Steps Ø    Installation of Oracle JDK Ø    Installation of Oracle Database 11g Ø    Creation of required schemas for UCM by using Repository Creation Utility (RCU) Ø   ...

Friday, March 1, 2013

Delete Multiple records in Oracle ADF Table

In this post i am going to show how to delete multiple records in Oracle ADF table. You can select multiple records and then delete them in one transaction instead of doing one by one. 1) Create a new fusion application and create Employees entity object, then its view object. 2) Create an application module and add your view object in it. you can perform all above step in just one wizard as well. 3) Double click on EmpoyeeVo and go to Java...