Text getting cleared after throwing OAException message

Hi,
I have a message text input item and a drop down if user does not enter anything in either and hits button then I am throwing a OAException with a message.
The problem is each time the user enters let us say some text in the drop down and does not select anything in the list all the text the user enters is being cleared off. They want to be able to preserve the text they wrote as it could be a lots of words.
I tried acheiving this through saving the text into a variable and displaying it after the error but it gives me compile error saying statement is not reachable.
Here is my part my code....the one in bold is where I was trying to assign the saved text back but it throws me compile error. Can someone suggest some other way of doing what I am trying to do?
else if(SaveButton !=null && ((NoteType.length() == 0 || (NoteText.length()==0 && !"".equals(NoteText.trim())))))
{System.out.println("The Note Status is Null raise an error");
  saveNoteText = NoteText;
  String message = "You must enter a note and select a note type";
        throw new OAException(message, OAException.ERROR);
        *OAMessageTextInputBean Note = (OAMessageTextInputBean)webBean.findChildRecursive("NoteText"); // Does not work*
        *Note.setText(saveNoteText);}*

Hi Guys,
Actually yes I am setting the value to NULL in the beginning of the PR when the page first loads.
But the issue is that if I don't do that then the comments / notes that the user enters are showing up if I hit cancel and come back to the page. So my requirement is that if the User comes in the page the notes and note type should be null or blank.
There are 2 buttons on the page one is the Save button and the other is the Cancel button. I just want the to handle my items correctly on these events.
* IF the user hits the save button without entering the required fields then I raise an OAexception but the all the fields are getting cleared out. ( I don't know how since I set them to NULL in the PR not in PFR). I want the error message but I don't want to clear out the fields.
* IF the user hits the cancel button I don't want to retain or keep the fields I want to blank them out.
Right now, I can make one or the other work but not both. Can anyone please suggest what I should do. Would really appreciate it. Below is my controller code that setting the stuff
public void processRequest(OAPageContext pageContext, OAWebBean webBean)
super.processRequest(pageContext, webBean);
String test = (String)pageContext.getParameter("ImcPartyId");
String ExecuteQueryReport = pageContext.getParameter("ExecuteQueryReport");
String retURL = pageContext.getParameter("retURL");
String ExecuteQuery = pageContext.getParameter("ExecuteQuery");
String SourceSystem = pageContext.getParameter("SourceSystem");
pageContext.putSessionValue("SourceSystem", SourceSystem);
System.out.println("The Party ID Here is "+ test);
{  *OAMessageTextInputBean Note = (OAMessageTextInputBean)webBean.findChildRecursive("NoteText");*     // If I comment this out then in the error
OAMessageChoiceBean NoteType = (OAMessageChoiceBean)webBean.findChildRecursive("NoteTypeID"); // message my fields are not getting blanked out
Note.setText(null);
NoteType.setText(pageContext, null); } // but if I cancel and come back it still shows up...
pageContext.putSessionValue("retURL", retURL);
pageContext.putSessionValue("ExecuteQuery", ExecuteQuery);
pageContext.putSessionValue("ExecuteQueryReport", ExecuteQueryReport);
// This code added to make the cursor busy after apply.
OAWebBean body = pageContext.getRootWebBean();
if (body instanceof OABodyBean)
((OABodyBean)body).setBlockOnEverySubmit(true);
* Procedure to handle form submissions for form elements in
* a region.
* @param pageContext the current OA page context
* @param webBean the web bean corresponding to the region
public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
super.processFormRequest(pageContext, webBean);
     System.out.println("Start the Controller");
String SaveButton = (String)pageContext.getParameter("SaveNote");
String CancelButton = (String)pageContext.getParameter("CancelNote");
String NoteText = (String)pageContext.getParameter("NoteText");
String NoteStatus = (String)pageContext.getParameter("NoteStatusID");
String NoteType = (String)pageContext.getParameter("NoteTypeID");
String Party = (String)pageContext.getParameter("ImcPartyId");
String SourceSystem = (String)pageContext.getSessionValue("SourceSystem");
String NewStatus = (String)pageContext.getSessionValue("NewStatus"); // This is working.
String OldStatus = (String)pageContext.getSessionValue("OldStatus");
String retURL = (String)pageContext.getSessionValue("retURL");
String ExecuteQuery = (String)pageContext.getSessionValue("ExecuteQuery");
String ExecuteQueryReport = (String)pageContext.getSessionValue("ExecuteQueryReport");
System.out.println("THE OLD STATUS IS " + OldStatus + " New Stauts " + NewStatus);
// System.out.println("The Note Type is " +NoteType);
// System.out.println("The Party Cancelled is " + Party);
String RespID = Integer.toString(pageContext.getResponsibilityId());
String UserID = Integer.toString(pageContext.getUserId());
OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean);
Serializable[] params = {NoteText, RespID, UserID, Party, NoteStatus, NoteType};
Serializable[] params1 = {Party, NewStatus, SourceSystem};
if (CancelButton != null)
{ System.out.println("Inside Cancel");
OAApplicationModule projectam = (OAApplicationModule)pageContext.getApplicationModule(webBean).findApplicationModule("ShipperOverviewAM1");
projectam.invokeMethod("rollbackTransaction");
CancelButton = null;
// The user has clicked an "Cancel" icon so we want to navigate back keeping everything in Context.
HashMap param = new HashMap();
param.put("partyID", Party);
param.put("ExecuteQueryReport", ExecuteQueryReport);
param.put("SourceSystem", SourceSystem);
param.put("ExecuteQuery", ExecuteQuery);
param.put("retURL", retURL);
pageContext.setForwardURL("OA.jsp?page=/xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG"
,null
,OAWebBeanConstants.KEEP_MENU_CONTEXT
, null
, param
,true // Retain AM
,OAWebBeanConstants.ADD_BREAD_CRUMB_NO
,OAWebBeanConstants.IGNORE_MESSAGES);
else if(SaveButton !=null && ((NoteType.length() == 0 || (NoteText.length()==0 && !"".equals(NoteText.trim())))))
{System.out.println("The Note Status is Null raise an error");
  String message = "You must enter a note and select a note type";
    throw new OAException(message, OAException.ERROR);  }
else if (SaveButton !=null && ((NoteType.length() > 0 && NoteText.length() > 0 && !"".equals(NoteText.trim()))))
{ System.out.println("Inside here Pressed Save Button");
String returnValue = (String)am.invokeMethod("addNotes", params);
//if (a != null && !"".equals(a.trim()))
// Put an if condition here. Only commit if the Notes return a "S" otherwise throw an exception.
if (returnValue.equals("S"))
{  OAApplicationModule projectam = (OAApplicationModule)pageContext.getApplicationModule(webBean).findApplicationModule("ShipperOverviewAM1");
projectam.invokeMethod("UpdateStatus", params1);
// projectam.invokeMethod("commitTransaction");
System.out.println("Commit Transaction Done.");
MessageToken[] tokens =
{ new MessageToken("NEWSTATUS", NewStatus),
new MessageToken("OLDSTATUS", OldStatus),
String MainUrl = "OA.jsp?page=/xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG&retainAM=Y&ImcPartyId="+Party+"&ExecuteQueryReport="+ExecuteQueryReport+"&SourceSystem="+SourceSystem+"&ExecuteQuery="+ExecuteQuery+"&retURL="+retURL;
OAException descMesg = new OAException("XXTSA", "XX_KSMS_SAVED_NOTES", tokens);
OADialogPage dialogPage = new OADialogPage(OAException.INFORMATION, descMesg, null, MainUrl, null);
pageContext.redirectToDialogPage(dialogPage);
else
{   OAApplicationModule projectam = (OAApplicationModule)pageContext.getApplicationModule(webBean).findApplicationModule("ShipperOverviewAM1");
projectam.invokeMethod("rollbackTransaction");
System.out.println("Rollback Executed ");
String MainUrl = "OA.jsp?page=/xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG&retainAM=Y&ImcPartyId="+Party+"&ExecuteQueryReport="+ExecuteQueryReport+"&SourceSystem="+SourceSystem+"&ExecuteQuery="+ExecuteQuery+"&retURL="+retURL;
OAException descMesg = new OAException("XXTSA", "XX_KSMS_ERROR_NOTES");
OADialogPage dialogPage = new OADialogPage(OAException.INFORMATION, descMesg, null, MainUrl, null);
pageContext.redirectToDialogPage(dialogPage);
// OAApplicationModule rootam = pageContext.getRootApplicationModule();
//am.invokeMethod("commitTransaction");
// System.out.println("Inside Save");
// Try build your own Dialog Page here....
/*String MainUrl = "OA.jsp?page=/xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG&retainAM=Y&ImcPartyId="+Party;
OAException descMesg = new OAException("XXTSA", "XX_KSMS_SAVED_NOTES");
OADialogPage dialogPage = new OADialogPage(OAException.INFORMATION, descMesg, null, MainUrl, null);
// This should take us to and OK Button after pressing the User should go back to Shipper Page. */
}

Similar Messages

  • Error while throwing OAException message

    Gurus
    I have a strange problem while trying to throw an OAException message from ProcessFormRequest method. I have referred so many threads related to this but not getting much idea.
    I am extending a Standard controllers CO where i am doing some custom validation. If validation fails i have to throw an OAException message else the flow should get continue. The code in my extended controller is like the below one.
    ProcessFormRequest()
    if (Wrong Data)
    throw new OAException("Error Message",OAException.ERROR);
    *}else*
    super.processformrequest();
    Now the problem is, whenever the validation is failed the control is going to throw new OAException, but instead of showing the error message its showing an error page with the following details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation.
    *## Detail 0 ##*
    java.sql.SQLException: Missing IN or OUT parameter at index:: 1
    I found that the query belongs to a VO which is not used anywhere in that page. It is just attached to the corresponding AM. I got stucked with this issue. Any help or inputs on this will be of great help.
    Thanks,
    Praveen

    Hi
    Thanks for your suggestion. If i call super.processformrequest() before the validation, the control will be navigated to another page. So my validation should decide whether the control has to navigate to next page or it should show some error message.
    My doubt is when we throw the exception message the control will not go for super.processformrequest and it will be still in the same page which doesnt have this VO attached. Still, why its trying to execute that VO ?
    This issue is now becoming a showstopper. Any inputs on this will be of great help.
    Thanks,
    Praveen.

  • UWL items not getting cleared after performing action

    Hello
    We are on EP 7.0.
    We are experiencing a strange behaviorin UWL.
    When end users receive workitems in their inbox and they take the appropriate actions, the workitems still stay in the inbox. Normally they should no longer appear.
    I have tried the refresh in the UWL iview but no luck.
    It seems to work in DEV and other landscape. It does no work in Production. The software installation of UWL are the same across all landscapes.
    Is there any other setting that is required. In SAP GUI this is not an issue.
    Any feedback or tips would be helpful. thanks.
    Regards,
    Sunil

    Hi,
    As far as I can remember, this is a known limitation of UWL.
    Please, check this thread : UWL work item not getting cleared
    I am unsure whether you use the correct button the refresh the UWL (it is well hidden!), check the slide 6 in this document :
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/20f4843e-314f-2a10-2a88-8c4afa20dda6&overridelayout=true
    Best regards,
    Guillaume

  • Custom fields appended in /SAPAPO/MM_DOC table gets cleared after BOP

    Hi,
    I appended few fields in /SAPAPO/MM_DOC table for STO's. I was able to populate it from ECC.
    But once the BOP job has run all these custom fields are getting cleared.
    Can someone tell me how to fix this.
    Thanks
    Kranthi

    Hi Vaibhav,
    Some of the custom fields has been added to /SAPAPO/MM_DOC table in SCM to populate data of STO's in ECC.
    These custom fields will be updated using  BADI's in SCM.
    When the Back Order Processing(BOP) runs on SCM for these STO's these fields whatever has been updated from ECC are cleared.
    How can I stop clearing these custom fields.
    Can I use any exits or BADI's which can update these fields during BOP.
    Regards,
    Kranthi

  • Blackberry messenger text no clearing after sending message.

    Hi
    I have a blackberry 9800 torch with the latest version of blackberry messenger on it. When typing and message and sending the message, the txt stays and wont clear at all. I have to delete the txt by deleting it. Only way to fix it is to uninstall and reinstall messenger then it will be fine for a day or two then it starts again.
    Any idea on how to fix it so that it doesnt happen at all ?

    Hey jacoatnos,
    Welcome to the BlackBerry Support Community Forums.
    Can you provide your BlackBerry Device Software that you're currently using on the BlackBerry Torch?
    Also what version of BlackBerry Messenger you're using?
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Re: Error while throwing OAException message

    Hi,
    I am facing the same issue, doing the controller extension and when throwing an OAEXCEPTION im getting this error. Please let me know if there is any work around.
    Thanks
    Divya

    Hi,
    Thanks for your reply. I am trying to extended the controller and do a validation and if it fails want to throw an error message on the page.
    This is the extended code i have written in process form request:
        public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
                OAApplicationModule am = oapagecontext.getApplicationModule(oawebbean);
                    OADBTransactionImpl oadbtransactionimpl = (OADBTransactionImpl)am.getOADBTransaction();
                if(oapagecontext.getParameter("HrNext")!=null)
                    oapagecontext.writeDiagnostics(this,"Clicked on the NExt Button",1);
                    String sql =
                              "BEGIN apps.XXMU_GENERAL_PKG.Funds_check_return(:1); END;";
                    String out1 = null;
                    try
                        oapagecontext.writeDiagnostics(this,"entered try",1);
                    OracleCallableStatement cs =
                      (OracleCallableStatement)am.getOADBTransaction().createCallableStatement(sql,0);
                    cs.registerOutParameter(1, Types.VARCHAR);
                    cs.execute();
                    out1 = cs.getString(1);
                    if ("Y".equals(out1))
                        oapagecontext.writeDiagnostics(this,"Funds check succesful",1);
                        super.processFormRequest(oapagecontext,oawebbean);
                    else
                        oapagecontext.writeDiagnostics(this,"Funds check failed",1);
                        throw new OAException("Funds Check Failed test123", OAException.ERROR);
                    cs.close();
                                catch (Exception ex)
                      throw new OAException("Error:"+ex.getMessage(),
                                            OAException.ERROR);

  • Selected list in the right side of the shuttle gets clear after form submit

    Hi all,
    In my application, I have a list of email in the shuttle. User can choose the email from that list of email from the shuttle and/or they can also add additional email address separately. So, in my page, I have a shuttle which has pre-populated email list, and I have a text box and a multi-select list (where they can select multiple email address they entered and hit delete to delete them). The problem that I am seeing is, after selecting the email list from the shuttle, and if they entered additional email address and hit "Add" button (which is a submit button to add email address to the multi-select list), only one email address in the selected side of the shuttle remained. rest of them moved back to the left side. I am not sure how to accomplish not to behave that way. Can someone please guide me how to resolve this issue? Much appreciated. Thanks.
    Soe

    Just found out that there is some error in the page branch, which makes the shuttle to clear off. Now the problem solved. Thanks.

  • Apple X11 for openoffice; graphics and text getting blurred after update

    I downloaded a program from openoffice to have an alternative powerpoint presentation program. i successfully downloaded the program but when i was opening it a dialogue box says that i need to have Apple`s X11. and so i downloaded X11 but after a series of steps of installing it the final step where you choose where to place the application (McKintosh HD), it says it already has its latest version. and yet i CANNOT open the openoffice. how come? i`m getting frustrated now rechecking again and again. i need some advice on this.
    and also, after i updated for the newest mac OS X how come the text and the graphics on the computer are getting blurred? an update is supposed to be better than the old one, but how come it`s the other way around?
    macbook   Mac OS X (10.4.6)  
    macbook   Mac OS X (10.4.6)  

    The X11 package required cannot be downloaded from Apple. It is on the OS X installation disc that came with your computer in the Optional Installs package. Simply open Optional Installs and select the X11 package for installation.
    Be sure to set your Display for millions of colors when using Open Office.
    If you prefer a solution that doesn't require X11 try Neo Office instead. Also an Open Source project Neo Office doesn't require X11 to run. There is an Intel version of Neo Office available.

  • Search parameters are getting cleared after search result

    Hi ,
    We have created z component with search and search result view based on only value nodes.
    we are able to get search result with the give search criteria. After getting result   search parameters are getting refreshed.
    how to keep those values in search parameters.   which method i need to redefine..... what will be the part of code.
    Please suggest .
    thanks
    ram

    Hi,
    You have to set the search field values after the result obtained. I believe you can find this in any of the standard advanced search components - BT111S_OPPT etc. for reference.
    Regards,
    Harish P M

  • ODS Activation queue not getting cleared after activation

    Dear Experts,
    I have a strange situation in my BI 7.0 system. Within one ODS I have an activation queue (new data table) of around 34Gb in size. As far as I know, this table should be empty, because all requests are activated correctly.
    Every night a delta is loaded into the ODS and there are no errors. But still the data remains also in the activation queue.
    In fact: All requests since the initialization still reside in the activation queue.
    My question is: Can I savely delete all data from the activation queue?
    It is only occuring for one ODS, all other ODS'es do clear the activation queue succesfully.
    Here is a part of the log for the last delta load, which might lead to the actual problem:
    07.10.2008 00:07:39 Program RSBATCH_EXECUTE_PROZESS successfully scheduled as job BIBCTL_D48V1ORBHRBOPNPN3S8I1RUEC with ID 00073900        RSM            703
    07.10.2008 00:07:40 Parallel processes (for Activation); 000003                                                                       RSODSO_TOOLS        018
    07.10.2008 00:07:40 Timeout for parallel process (for Activation): 000600                                                             RSODSO_TOOLS        019
    07.10.2008 00:07:40 Package size (for Activation): 020000                                                                             RSODSO_TOOLS        020
    07.10.2008 00:07:40 Task handling (for Activation): Backgr Process                                                                    RSODSO_TOOLS        021
    07.10.2008 00:07:40 Server group (for Activation): No Server Group Configured                                                         RSODSO_TOOLS        022
    07.10.2008 00:07:40 Parallel processes (for SID Gener.); 000003                                                                       RSODSO_TOOLS        018
    07.10.2008 00:07:40 Timeout for parallel process (for SID Gener.): 000600                                                             RSODSO_TOOLS        019
    07.10.2008 00:07:40 Package size (for SID Gener.): 020000                                                                             RSODSO_TOOLS        020
    07.10.2008 00:07:40 Task handling (for SID Gener.): Backgr Process                                                                    RSODSO_TOOLS        021
    07.10.2008 00:07:40 Server group (for SID Gener.): No Server Group Configured                                                         RSODSO_TOOLS        022
    07.10.2008 00:07:40 Activation started (process is running under user OLTP_RFC)                                                     RSODSO_PROCESSING     029
    07.10.2008 00:07:40 All data fields updated in mode "overwrite"                                                                       RSODSO_TOOLS        023
    07.10.2008 00:07:40 Process 000001 for determining SID for InfoObject 0STORNO started                                               RSODSO_PROCESSING     045
    Thanks,
    Steven Groot

    Dear Experts,
    Finally I got some input from SAP about this issue, which resolved the error.
    Within the table RSODSACTREQ, there was an entry with an errorstatus. This entry was the cause of the activation queuenot being deleted.
    As quoted by SAP in response to my OSS Message:
    The RSODSACTREQ table records requests which have been activated.
    However, sometimes this table can contain requests which have actually
    already been deleted.
    The timestamp for this request (REQU_ELCCK3YPESODU19NXQH9BQZ70) is the
    19th of Feb 07, yet there is no such request in the ODS (first request
    is the 20.02.2007).
    Such a request, which has an entry in RSODSACTREQ with status "2"
    will prevent deletion of the new data table.
    If the request does not exist anymore in the change log table and there
    is no data for the request in the active table, then you can resolve
    this inconsistency by deleting the entries for this request from table
    RSODSACTREQ, and then the activation queue will be truncated with the
    next successful activation.
    Maybe you can use this information if it is applicable to your situation as well.
    Regards,
    Steven Groot

  • Why does my drawing gets cleared sometime after paint() ?

    I ' m using a JNI dll for a special video player with JDK 1.6.13 on Windows XP. For painting the video frames I followed the AWT_Native_Native Interface spec on
    [http://java.sun.com/j2se/1.5.0/docs/guide/awt/1.3/AWT_Native_Interface.html]
    For the drawing I use SetDIBitsToDevice() from MS DirectDraw. For testing I tried also TextOut(). Both functions with their painting work, but some time after the paint() call my canvas frame gets completely cleared. Sometimes my painting stays on the screen - but only until the next update event. From the debugger it looks like the window gets cleared after the thread from the paint() method has finished.
    Interestingly if I call Java draw functions in the paint() method (without JNI), the drawing stays permanently.
    Are there any changes in the JVM 1.6 which are not included in the AWT_Native_Interface Spec?
    Thanks for any help or working example code,
    Stefan

    The real solution is to call:
          Toolkit.getDefaultToolkit().sync();in the overridden paint() method before the JNI drawing call.

  • Getting Error when adding a Message Input Text field

    Hi
    Can someone help with this please. I'm not developing and not a OAF guy, but, an offshore team is and they are getting this error after they added Message Input Text field to the iProcurement Receiving page to capture additional information.
    What does this error mean?
    oracle.apps.fnd.framework.OAException: No data found for region (/oracle/apps/icx/por/rcv/webui/XXPAIcxPorRcvSrchPG.Tag_input).
    at oracle.apps.fnd.framework.webui.JRADWebBeanMetaData.getDefaultValue(JRADWebBeanMetaData.java:480)
    at oracle.apps.fnd.framework.webui.OAWebBeanTextInputHelper.setMetaDataProperties(OAWebBeanTextInputHelper.java:92)
    at oracle.apps.fnd.framework.webui.OAMessageTextInputHelper.setMetaDataProperties(OAMessageTextInputHelper.java:89)
    at oracle.apps.fnd.framework.webui.OAMessageTextInputHelper.createWebBean(OAMessageTextInputHelper.java:61)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1263)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAWebBeanTableHelper.addAkChildren(OAWebBeanTableHelper.java:182)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OATableHelper.setMetaDataProperties(OATableHelper.java:282)
    at oracle.apps.fnd.framework.webui.OATableHelper.createWebBean(OATableHelper.java:202)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1149)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.addAkChildren(OAQueryHelper.java:470)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:126)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.setMetaDataProperties(OAQueryHelper.java:344)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.createWebBean(OAQueryHelper.java:242)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1149)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.addAkChildren(OAPageLayoutHelper.java:703)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:126)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.setMetaDataProperties(OAPageLayoutHelper.java:257)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.createWebBean(OAPageLayoutHelper.java:208)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1415)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:1300)
    at oracle.apps.fnd.framework.webui.OAPageBean.createRootWebBean(OAPageBean.java:4374)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2131)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1710)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:501)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:422)
    at oa_html._OA._jspService(_OA.java:88)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
    at oa_html._OA._jspService(_OA.java:98)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
    at oa_html._OA._jspService(_OA.java:98)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    Exception:
    oracle.adf.mds.MetadataDefException: Unable to find component with absolute reference = /oracle/apps/icx/por/rcv/webui/XXPAIcxPorRcvSrchPG.Tag_input, XML Path = null. Please verify that the reference is valid and the definition of the component exists either on the File System or in the MDS Repository.
    at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1374)
    at oracle.adf.mds.MElement.findElement(MElement.java:97)
    at oracle.apps.fnd.framework.webui.JRADWebBeanMetaData.getDefaultValue(JRADWebBeanMetaData.java:477)
    at oracle.apps.fnd.framework.webui.OAWebBeanTextInputHelper.setMetaDataProperties(OAWebBeanTextInputHelper.java:92)
    at oracle.apps.fnd.framework.webui.OAMessageTextInputHelper.setMetaDataProperties(OAMessageTextInputHelper.java:89)
    at oracle.apps.fnd.framework.webui.OAMessageTextInputHelper.createWebBean(OAMessageTextInputHelper.java:61)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1263)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAWebBeanTableHelper.addAkChildren(OAWebBeanTableHelper.java:182)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OATableHelper.setMetaDataProperties(OATableHelper.java:282)
    at oracle.apps.fnd.framework.webui.OATableHelper.createWebBean(OATableHelper.java:202)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1149)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.addAkChildren(OAQueryHelper.java:470)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:126)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.setMetaDataProperties(OAQueryHelper.java:344)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.createWebBean(OAQueryHelper.java:242)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1149)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.addAkChildren(OAPageLayoutHelper.java:703)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:126)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.setMetaDataProperties(OAPageLayoutHelper.java:257)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.createWebBean(OAPageLayoutHelper.java:208)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1415)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:1300)
    at oracle.apps.fnd.framework.webui.OAPageBean.createRootWebBean(OAPageBean.java:4374)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2131)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1710)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:501)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:422)
    at oa_html._OA._jspService(_OA.java:88)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
    at oa_html._OA._jspService(_OA.java:98)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
    at oa_html._OA._jspService(_OA.java:98)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:534)
    Exception:
    oracle.adf.mds.MetadataDefException: Unable to find component with absolute reference = /oracle/apps/icx/por/rcv/webui/XXPAIcxPorRcvSrchPG.Tag_input, XML Path = null. Please verify that the reference is valid and the definition of the component exists either on the File System or in the MDS Repository.
    at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1374)
    at oracle.adf.mds.MElement.findElement(MElement.java:97)
    at oracle.apps.fnd.framework.webui.JRADWebBeanMetaData.getDefaultValue(JRADWebBeanMetaData.java:477)
    at oracle.apps.fnd.framework.webui.OAWebBeanTextInputHelper.setMetaDataProperties(OAWebBeanTextInputHelper.java:92)
    at oracle.apps.fnd.framework.webui.OAMessageTextInputHelper.setMetaDataProperties(OAMessageTextInputHelper.java:89)
    at oracle.apps.fnd.framework.webui.OAMessageTextInputHelper.createWebBean(OAMessageTextInputHelper.java:61)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1263)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAWebBeanTableHelper.addAkChildren(OAWebBeanTableHelper.java:182)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OATableHelper.setMetaDataProperties(OATableHelper.java:282)
    at oracle.apps.fnd.framework.webui.OATableHelper.createWebBean(OATableHelper.java:202)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1149)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.addAkChildren(OAQueryHelper.java:470)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:126)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.setMetaDataProperties(OAQueryHelper.java:344)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.createWebBean(OAQueryHelper.java:242)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1149)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.addAkChildren(OAPageLayoutHelper.java:703)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:126)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.setMetaDataProperties(OAPageLayoutHelper.java:257)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.createWebBean(OAPageLayoutHelper.java:208)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1415)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:1300)
    at oracle.apps.fnd.framework.webui.OAPageBean.createRootWebBean(OAPageBean.java:4374)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2131)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1710)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:501)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:422)
    at oa_html._OA._jspService(_OA.java:88)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
    at oa_html._OA._jspService(_OA.java:98)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
    at oa_html._OA._jspService(_OA.java:98)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:534)
    Thank you!

    You need to provide more details with respect to what you are doing step by steps.
    --Shiv                                                                                                                                                                                       

  • Error:  Failed to get a response after sending the message

    This is another one of those errors I only get some of the time with a specific script. I can't figure a rhyme or reason for it. The full error is:
    Failed to get a response after sending the message: <Message name="PageComplete"><Parameter WindowIndex="0"></Parameter><Parameter PassIfPageAlreadyComplete="false"></Parameter></Message>.
    It's triggering at a WaitForPage() method in the script. The script is executing from the OTM server which is Windows Server 2008 R2 and only runs for OTM. No roles or features (other than SMTP). IE-ESC is off for all users. The script runs with -delayPercentage 1.
    The script runs fine from within OpenScript workbench every time. The script does work when executed from OTM, however it will sometimes fail. When I run the scripts back to back the failure rate is about 50%. Same error every time....
    Any help, insight, and ideas would be greatly appreciated.
    Edited by: Colyn1337 on Mar 14, 2013 11:20 AM

    Also, some time it throw slightly different error like:
    "/web:window[@index='0']/web:document[@index='2']/web:form[@index='1']/web:inp
    ut_text[@id='saw_*' or @index='1']" failed to respond to action: <Message
    name="Click"><Parameter WindowIndex="0"></Parameter><Parameter
    DocumentIndex="2"></Parameter><Parameter index="1"></Parameter><Parameter
    tag="INPUT"></Parameter><Parameter type="text"></Parameter></Message>.
    Please help to triage.

  • How to get clear small text on black background?

    hi,
    I'm trying to get some clear small text on black, in the letterboxed area below some video. I've been trying 14pt, with a bit of tracking, using Arial, Helvetica, Skia, and Lucida Grande. They all look clear enough when rendered out to QT, but on my production monitor they dont look good. When I compress it for DVD (using very high bit rate settings) they really fall apart.
    I even tried making the text in After Effects, which is what I do with my subtitles, but those are larger (about 24points) and for some reason the small text generated in After Effects looked worse than the native FCP text.
    Does anyone have suggestions for the best combination of font and point size to give me clear small text for a black background? I dont mind going up a few point sizes.
    Any suggestions would be highly appreciated. Thank you....

    Hi all,
    Many thanks for all the suggestions.
    I wound up using Helvetica 18pt, white set at 85%, and applied stib's de-interlacer (http://www.pureandapplied.com.au/plugins.html).
    I tried Guassian Blur set to 0.1 but that made it less clear and didn't really help with the flicker. I also made sure to set the position to an even numbered line (I'm using uncompressed)
    When I tried Helevetic 17pt, the "a" and the "e" both fell apart towards the top of the letter making them hard to read. I would guess that "g", "i", and "j" would also have problems had I used them.
    I didnt have enough time to test, but I wonder if there isnt some font that is better suited for this kind of work than Helvetica. Futura is nice and clean, but a bit thin. Helvetica Neue is also good, but not much differnet than Helvetica. Verdana and Lucida Grande might also be good choice. What do you all use?
    thanks again...

  • When i restart the weblogic server 9.2,all messages in Topic get cleared

    Hi,
              When i restart the weblogic server 9.2,all messages in Topic get cleared for inactive dudrable subscribers.
              Please advise what the issue here.
              Thanks.

    Hi Tom, Thanks you so much for spending your time on this issue.
              A)I didn't specify any persistent mode.so i believe default mode is "Persistent"
              B) when i click on durable subscribers link on the corrersponding Topic it is showing 2 users.
              actually these durable subscribers are created by executing below code after look up the Topic.
              TopicSubscriber tsub = ts.createDurableSubscriber(topic,"mysub");
              C) Delivery Mode Override is set to "No-Delivery".
              but Time-to-Live Override is set to 21600000 .
              i assume Time-to-Live is causing problem.
              Please advise.
              Thanks.
              Edited by rodex at 03/25/2008 3:55 PM

Maybe you are looking for