Wednesday, November 24, 2010

hi All,
I am a beginner in OAF technology.Here I am try to share what I know and expect more from you people. 

TO get the currency code 
pls add the below code in controller
      OATableBean tableBean = (OATableBean)webBean.findChildRecursive("TabVO1");  (OAMessageTextInputBean)tableBean.findChildRecursive("Salary");
        if (tableBean != null)
      {

      oracle.cabo.ui.validate.Formatter formatter  = new OADecimalValidater("#,##0.00;#,##0.00","#,##0.00;#,##0.00");
      inputBean.setAttributeValue(ON_SUBMIT_VALIDATER_ATTR, formatter);
        
      }