Showing posts with label Disable Future Date. Show all posts
Showing posts with label Disable Future Date. Show all posts

Friday 29 August 2014

Disable Future Date on ADF Page

Hello Fellas,
today i'm sharing my learning, to how to Disable future date on our ADF page.

Take a Input date component on your page.
Make a managed bean, and simply create a method, and put this snipet of code on your bean,


    public Date getDate()      {            Date date=new Date(new java.sql.Date(new java.util.Date().getTime()));            return date;            }  

make the date of type oracle.jbo.domain.Date 
you can get the actual java class from this link     .XBean.java 

and make max value of the input date component from the source code.





actual result





thank you :)


you can download the actual code from here

FutureDateApp

A Guide to Installing Oracle HR Schema on an Existing Docker Container

  Hi Reader, Today I want to share my learning on how to install Oracle HR schema on a existing docker container. Step 1: Download the verif...