Tag Archives: ADF

How to fix the ADF Security error “JpsAnonymousRoleImpl” in Jdev 11.1.1.6.0

I have created a sample ADF application in Jdev 11.1.1.6.0 and when executed in “Integrated Weblogic server” within Jdev, it did not display any error message in the console and the application web page is loaded in the default browser … Continue reading

Posted in ADF (Application Development Framework), Jdeveloper, WebLogic Server 11g | Tagged , , , , , , , , , | 7 Comments

How to setup Session-Timeout in ADF application

Scenario: When there was no user activity performed in the ADF page for 5 minutes  in my application, the session was getting timed-out. Due to this the User need to re-login again into the ADF application. But in my case … Continue reading

Posted in ADF (Application Development Framework) | Tagged , , , , , | 2 Comments

How to display the text-area in the Table in ADF.

Inorder to show the multiple lines of text data (generally for Description column) in the table column, you have to increase the number of rows in the <inputText> tag as shown <af:column sortProperty=”DocumentDescr” filterable=”true”                          sortable=”true”                          headerText=”#{bindings.AttachmentsVO1.hints.DocumentDescr.label}”                          id=”c1″ … Continue reading

Posted in ADF (Application Development Framework) | Tagged , , , , , , , , | 2 Comments

How to conditionally enable / disable the column contents in the ADF 11g table

Scenario: I have below contents in my table – In the “Remove Attachment” column have Delete Icon when clicked, it will deletes the record. I want to Enable this Delete Icon based on the Condition. Then it will look as … Continue reading

Posted in ADF (Application Development Framework) | Tagged , , , , , , , | 3 Comments

How to invoke a method from Managed Bean when JSPX Page Loads in ADF

Scenario: In order to restrict the number displayed rows in the table, I have to set the View Criteria on the Iterator before the page loads. Solution: I have created a method (fetchSourceRecords()) in the Managed bean (Attachments.java) in which … Continue reading

Posted in ADF (Application Development Framework) | Tagged , , , , | 13 Comments

How to display the Date and Time format in ADF page

In this post you will know how to display the DATE and TIME on the JSPX page. If you want to display the DATE format in “DD-MON-YYYY ” and Time in “Hour:Min:Sec AM/PM” do as below – 12 hour format … Continue reading

Posted in ADF (Application Development Framework) | Tagged , , , , , , | 4 Comments

Resolution for Invalid Column Index error in ADF.

Scenario: Created an Entity object (EO) on the table and created a View object (VO) on the Entity object. Now a DATE column is added to the table. The newly added DATE column is updated into the Entity object from … Continue reading

Posted in ADF (Application Development Framework) | Tagged , , , , , , , | 1 Comment

How to make a field mandatory in JSPX page in ADF

In this scenario, we need to make <inputListOfValues> field as Mandatory, which means no NULL values are accepted and User cannot enter NULL value in the Field. We need to display an Error message when ever User submits the form … Continue reading

Posted in ADF (Application Development Framework) | Tagged , , , , , , | 2 Comments

How to set the label for any field remotedly (by using other tags) in ADF 11g

If we want to format the display of the label for any field, we can use the <outputLabel> tag for that, as we get more options on <outputLabel> tag. The for attribute of the <outputLabel> tag should be the ID … Continue reading

Posted in ADF (Application Development Framework) | Tagged , , , , , | 1 Comment

How to wrap the Label before any fields (input, LOV, Checkbox, Radia button etc.) in ADF 11g

In normal the label for any field will be in a single striaght line. If we want it to wrap into two lines before the field we need to use <outputFormatted> tag as shown below –     <af:outputFormatted id=”of1″ value=”No … Continue reading

Posted in ADF (Application Development Framework) | Tagged , , , , | 1 Comment