Posts by Jilani Basha

How to add Jar files to JDeveloper

In this post we are going to discuss how to add jar files to JDeveloper. First we need to download required jar file, after that you need to follow the…

Read More

Message Component Layout in OAF

If we have an requirement to fix the number of the Columns displays for a single row in in the OAF region then we can use Message component layout. In…

Read More

VO Extension Error — Attribute set for comments in View Object VO failed

Once we did VO Extension & migrated those files into server. Post that we may face this type of error Attribute set for comments in View Object VO failed. Solution:…

Read More

How to raise bundle exception in OAF

If we want to display multiple error messages in OAF page. We need to use the code as follows: arraylist errmsg = new ArrayList(); if(pageContext.getParameter(“Type”).equals(“”)) { errMsg.add(new OAException(“Type cannot be…

Read More

Setting NLS language in SQL developer

Sometimes we will observe HR Operating units table will not show any data in database. For this we need to  do the set up in SQL Developer. Preferences –> NLS…

Read More

Special characters validation

For any field if you want throw any exception when entered any special characters.  We need to use following pattern to find. Pattern p = Pattern.compile(“[^a-zA-Z0-9\\s]”);

Read More

500 Internal error in OAF

Once any environment get refreshed in EBS, a new dbc file will be generated. Some times we will receive 500 internal error. To over come this we need to replace…

Read More

Calling External URL in new Tab

When we calling any external URL from OAF page, we need to add destination URI as below. So URL will open in new tab with same browser. javascript:var a =…

Read More

Displaying Number of characters entered in text field

In OAF page, if user want to know how many characters entered in message text input field. Below is the code we need to use in process request.   String…

Read More

Calling External URL in a New window

Suppose if we want to call any external URL in OAF page. So you can call as like below. urlname = https://www.google.com/ pageContext.sendRedirect(urlname);

Read More