...
If we wanted to search for all landing reports with a date of landing between 01/10/2010 and 01/20/2010, we would run something similar to:
DatatypeFactory datatypeFactory = DatatypeFactory.newInstance();
SimpleDateFormat slashFmt = new SimpleDateFormat("MM/dd/yyyy");
Date calendarStartDate = slashFmt.parse("01/10/2010")
Calendar startDate = new GregorianCalendar();
startDate.setTimeInMillis(calendarStartDate.getTime());
...
In eLandings this error would be displayed in red.
For the list of potential elandings messages see the elandings codes page and click on Message Codes
Note: the search button calls two web services: findUserLandingReports() and findUserProductionReports(). You may see errors reported from both webservice method calls displayed in eLandings.