For input string error by filter table and execute CreateInsert

Dear all
I am useing Jdeveloper 11.1.1.3
i have a pannel tabl with 2 showDetail item
one for table another for form.
by default table tab is active , when user press create button form will be active and CreateInsert Action will execute.
now if user search any value in table filter (for example seach name column with Admin value)then press create botton :
form will be active an an error raise :      For input string:"Admin"
in console i have :
<Utils><buildFacesMessage> ADF: Adding the following JSF error message: For input string: "Admin"
java.lang.NumberFormatException: For input string: "Admin"

Hi,
is the "CreateInsert" action completed by the user - entering a new row and submitting it ? Note that table and form share the same VO and therefore validation applies to both of them. Also which version of JDeveloper do you use ?
Frank

Similar Messages

  • Risk File uploads fails -  For input string: ""

    Hello,
    I noticed that everytime I tried analyzing something it came back with No Conflict for anything.
    On further investigation I realized that none of my custom risks shows up in Rule Architect tab.
    I have been trying to upload the Risk Files again and it does not get uploaded and at the bottom I see the following message :
    For input string: ""
    please advise how I should overcome this issue.
    Thanks,
    Farah

    Farah,
    We are having this issue and would like to know how you addressed it.
    Specifically, we went through our source rules in Access to customize them, and then saved them as text files.
    They all mostly loaded.  Then during the load of the R3 function actions, the computer crashed.
    When it came back up, we weren't sure if the function actions had completed, so we tried to reload it, and got that whole oracle duplicate error that's been discussed in this thread.
    We investigated further and noted that the function load had worked partially, until the time the laptop crashed.  So now when we try to load the rest of the functions, it gives the "For input string: """ error.
    Any ideas?
    Thanks,
    Santosh

  • Error in JSF  - java.lang.NumberFormatException: For input string:

    Nice day friends,
    I am sure that this is one stupid question by newbie like me, but I already lost hope since there no many post on this error especially in JSF at Google.
    Here the full error I've got :
    executePhase(RENDER_RESPONSE 6,com.sun.faces.context.FacesContextImpl@12bb287) threw exception
    java.lang.NumberFormatException: For input string: "id"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Integer.parseInt(Integer.java:447)
    at java.lang.Integer.parseInt(Integer.java:497)
    at javax.el.ListELResolver.toInteger(ListELResolver.java:373)
    at javax.el.ListELResolver.getValue(ListELResolver.java:167)
    Here my snippet of code :
    NationalityDO.java (managed bean)
    public class NationalityDO implements Serializable {
    @Id
    @Column(name = "ID", nullable = false)
    private String id;
    private List nationalityList;
    public NationalityDO() {
    public NationalityDO(String id) {
    this.id = id;
    public String getId() {
    return this.id;
    public void setId(String id) {
    this.id = id;
    public List getNationalityList(){
    NationalityDA da=new NationalityDA();
    if(nationalityList==null){
    System.out.println("if(nationalityList==null)");
    try {
    nationalityList=da.retrieveNationalityList();
    } catch (Exception ex) {
    ex.printStackTrace();
    return nationalityList;
    public void setNationalityList(){
    this.nationalityList=nationalityList;
    This is my NationalityDA (used to retrieve data)
    public class NationalityDA {
    public NationalityDA() {
    public List retrieveNationalityList() throws Exception{
    ArrayList ls=new ArrayList();
    Connection con = null;
    PreparedStatement ps = null;
    ResultSet rsReturn = null;
    try {
    con = DBManager.getDBConnection();
    String sql="select id,descr,setup_date,change_date from nationality order by id asc" ;
    ps = con.prepareStatement(sql);
    rsReturn = ps.executeQuery();
    while(rsReturn.next()){
    List lsNationality =new ArrayList();
    lsNationality.add(rsReturn.getString(1));//id
    lsNationality.add(rsReturn.getString(2));//descr
    ls.add(lsNationality);
    } catch(SQLException sqlex) {
    sqlex.printStackTrace();
    } finally {
    con.close();
    ps.close();
    return ls;
    Here my nationality.jsp
    <h:dataTable value='#{nationality.nationalityList}' var='item' border="1" cellpadding="2" cellspacing="0">
    <h:column>
    <f:facet name="header">
    <h:outputText value="Id"/>
    </f:facet>
    <h:outputText value="#{item.id}"/>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="Descr"/>
    </f:facet>
    <h:outputText value="#{item.descr}"/>
    </h:column>
    </h:dataTable>
    Here my face-config.xml
    <managed-bean>
    <managed-bean-name>nationality</managed-bean-name>
    <managed-bean-class>com.dataobject.nationality.NationalityDO</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>/nationality/testNationality.jsp</to-view-id>
    </navigation-case>
    <navigation-case>
    <from-outcome>fail</from-outcome>
    <to-view-id>/nationality/testNationality.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    For your information, the retrieve of data work successfully, this is the table description in oracle database which is varchar for id,
    SQL> desc nationality
    Name Null? Type
    ID NOT NULL VARCHAR2(4)
    DESCR VARCHAR2(20)
    SETUP_DATE TIMESTAMP(6)
    CHANGE_DATE TIMESTAMP(6)
    *If you feel that I should improve my writing in forum, I am really happy to know
    Thanks,
    unid

    thanks....
    Actually I already view the site many times before but after you told me then I get the idea,that's y working together is better, because i sometimes won't realize my mistake even it was the easiest one...
    So i just change my code in NationalityDA.java as
    while(rsReturn.next()){
    NationalityDO n=new NationalityDO();
    n.setId(rsReturn.getString(1));
    System.out.println("rsReturn.getString(1)"+ rsReturn.getString(1));
    n.setDescr(rsReturn.getString(2));
    System.out.println("rsReturn.getString(2)"+ rsReturn.getString(2));
    n.setSetupDate(rsReturn.getDate(3));
    System.out.println("rsReturn.getString(3)"+ rsReturn.getString(3));
    n.setChangeDate(rsReturn.getDate(4));
    System.out.println("rsReturn.getString(4)"+ rsReturn.getString(4));
    ls.add(n);
    Once again, thanks..and my 3 dukes are yours..
    -unid

  • Getting java.lang.NumberFormatException: For input string: "63420;https=127.0.0.1" Error while creating bpel service in oracle soa suite12c

    Hi ,
    I am getting below error when I try to create a bpel project in oracle soa suite 12C, can any one help on this issue why it is happing, earlier am able to create bpel service.
    java.lang.NumberFormatException: For input string: "63420;https=127.0.0.1"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
    at java.lang.Integer.parseInt(Integer.java:492)
    at java.lang.Integer.parseInt(Integer.java:527)
    at oracle.jdeveloper.webservices.wsdl.CachedWSDLReader.getNewReaderInstance(CachedWSDLReader.java:379)
    at oracle.jdeveloper.webservices.wsdl.CachedWSDLReader$1.initialValue(CachedWSDLReader.java:299)
    at oracle.jdeveloper.webservices.wsdl.CachedWSDLReader$1.initialValue(CachedWSDLReader.java:295)
    at java.lang.ThreadLocal.setInitialValue(ThreadLocal.java:160)
    at java.lang.ThreadLocal.get(ThreadLocal.java:150)
    at oracle.jdeveloper.webservices.wsdl.CachedWSDLReader.getReaderImpl(CachedWSDLReader.java:309)
    at oracle.jdeveloper.webservices.wsdl.CachedWSDLReader.getExtensionRegistry(CachedWSDLReader.java:425)
    at oracle.jdeveloper.webservices.wsdl.CachedWSDLReader.readWSDLWithExtensionRegistry(CachedWSDLReader.java:468)
    at oracle.tip.tools.ide.utils.xml.wsdl.WSDLUtil.parseWSDL(WSDLUtil.java:1398)
    at oracle.tip.tools.ide.bpel.v2.datamodels.util.TemplateUtil.createProcessWSDL(TemplateUtil.java:1208)
    at oracle.tip.tools.ide.bpel.v2.designer.builder.model.ProcessBuilderUtil.createWSDLFiles(ProcessBuilderUtil.java:198)
    at oracle.tip.tools.ide.bpel.v2.designer.builder.model.ProcessBuilder.createIDEProject(ProcessBuilder.java:73)
    at oracle.tip.tools.ide.bpel.v2.designer.builder.ui.CreationDialogPanel.doCreate(CreationDialogPanel.java:57)
    at oracle.tip.tools.ide.bpel.shared.designer.processbuilder.ui.BPELCreationDialog.handleOK(BPELCreationDialog.java:199)
    at oracle.tip.tools.ide.bpel.shared.designer.processbuilder.ui.BPELCreationDialog.actionPerformed(BPELCreationDialog.java:239)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
    at java.awt.Component.processMouseEvent(Component.java:6516)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3320)
    at java.awt.Component.processEvent(Component.java:6281)
    at java.awt.Container.processEvent(Container.java:2229)
    at java.awt.Component.dispatchEventImpl(Component.java:4872)
    at java.awt.Container.dispatchEventImpl(Container.java:2287)
    at java.awt.Component.dispatchEvent(Component.java:4698)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
    at java.awt.Container.dispatchEventImpl(Container.java:2273)
    at java.awt.Window.dispatchEventImpl(Window.java:2719)
    at java.awt.Component.dispatchEvent(Component.java:4698)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:735)
    at java.awt.EventQueue.access$200(EventQueue.java:103)
    at java.awt.EventQueue$3.run(EventQueue.java:694)
    at java.awt.EventQueue$3.run(EventQueue.java:692)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
    at java.awt.EventQueue$4.run(EventQueue.java:708)
    at java.awt.EventQueue$4.run(EventQueue.java:706)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:705)
    at oracle.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQueueWrapper.java:169)
    at oracle.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQueueWrapper.java:151)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:154)
    at java.awt.WaitDispatchSupport$2.run(WaitDispatchSupport.java:182)
    at java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:221)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.WaitDispatchSupport.enter(WaitDispatchSupport.java:219)
    at java.awt.Dialog.show(Dialog.java:1082)
    at java.awt.Component.show(Component.java:1655)
    at java.awt.Component.setVisible(Component.java:1607)
    at java.awt.Window.setVisible(Window.java:1014)
    at java.awt.Dialog.setVisible(Dialog.java:1005)
    at oracle.tip.tools.ide.bpel.shared.designer.processbuilder.ui.BPELCreationDialog.display(BPELCreationDialog.java:83)
    at oracle.tip.tools.ide.bpel.shared.designer.manager.BPELDesignerManager.launchCreationDialog(BPELDesignerManager.java:53)
    at oracle.tip.tools.ide.bpel.shared.designer.manager.BPELDesignerManager.launchCreationDialog(BPELDesignerManager.java:48)
    at oracle.tip.tools.ide.bpel.shared.plugins.soa.sca.BPELComponent.createImplementation(BPELComponent.java:46)
    at oracle.tip.tools.ide.fabric.gui.controller.ActionComponentEdit.add(ActionComponentEdit.java:118)
    at oracle.tip.tools.ide.fabric.gui.controller.ActionComponentEdit.process(ActionComponentEdit.java:95)
    at oracle.tip.tools.ide.fabric.gui.controller.DiagramController.processActionRequest(DiagramController.java:358)
    at oracle.tip.tools.ide.fabric.gui.controls.DiagramSOAPopupHandler.actionPerformed(DiagramSOAPopupHandler.java:117)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
    at javax.swing.AbstractButton.doClick(AbstractButton.java:376)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:833)
    at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:877)
    at java.awt.Component.processMouseEvent(Component.java:6516)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3320)
    at java.awt.Component.processEvent(Component.java:6281)
    at java.awt.Container.processEvent(Container.java:2229)
    at java.awt.Component.dispatchEventImpl(Component.java:4872)
    at java.awt.Container.dispatchEventImpl(Container.java:2287)
    at java.awt.Component.dispatchEvent(Component.java:4698)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
    at java.awt.Container.dispatchEventImpl(Container.java:2273)
    at java.awt.Window.dispatchEventImpl(Window.java:2719)
    at java.awt.Component.dispatchEvent(Component.java:4698)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:735)
    at java.awt.EventQueue.access$200(EventQueue.java:103)
    at java.awt.EventQueue$3.run(EventQueue.java:694)
    at java.awt.EventQueue$3.run(EventQueue.java:692)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
    at java.awt.EventQueue$4.run(EventQueue.java:708)
    at java.awt.EventQueue$4.run(EventQueue.java:706)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:705)
    at oracle.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQueueWrapper.java:169)
    at oracle.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQueueWrapper.java:151)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)
    Thanks in advance.
    Cheers,
    bala

    Please paste composite.xml and bpel source file here. Looks like one of the endpoints is getting goofed up.

  • PI 7.1 Error, For Input String: ""

    Hi Experts,
    I need help in troubleshooting this issue. Whenever I try to open one of a udf-intensive mapping, this is the error I'm getting. I've also tried searching this in SDN but to no avail. The steps that I have done are:
    1. Exported the mapping in an XI copy and imported it in PI 7.1, same error.
    2. Removed the UDFs in the XI mapping copy and imported it in PI 7.1, still got the same error.
    Ideas anyone?

    Hi Michal,
    Thanks for the quick response, I did as what you have instructed. Just opening the message mapping itself, it is  already generating the error. And whenever I press okay, the Definition, Test and Functions tab in the message mapping goes blank. However, when testing using operation mapping, it is producing correct output. Here is the error in the message mapping:
    STACKTRACE:
    com.sap.aii.utilxi.misc.api.BaseRuntimeException: For input string: ""
        at com.sap.aii.mappingtool.Project.load(Project.java:561)
        at com.sap.aii.mappingtool.Project.loadMetadata(Project.java:823)
        at com.sap.aii.mappingtool.Project.<init>(Project.java:178)
        at com.sap.aii.mappingtool.api.MappingToolFactory.getInstance(MappingToolFactory.java:53)
        at com.sap.aii.mappingtool.fwutil.util.ToolUtil.restartTool(ToolUtil.java:350)
        at com.sap.aii.mappingtool.fwutil.api.ViewUtil.refreshControls(ViewUtil.java:61)
        at com.sap.aii.ibrep.gui.mapping.xitrafo.XiMappingView.refreshControls(XiMappingView.java:195)
        at com.sap.aii.ibrep.gui.mapping.xitrafo.XiTransformationView.refreshControls(XiTransformationView.java:130)
        at com.sap.aii.ib.gui.editor.XiView.refresh(XiView.java:238)
        at com.sap.aii.utilxi.swing.framework.DocumentContainer.refreshView(DocumentContainer.java:341)
        at com.sap.aii.ibrep.gui.mapping.xitrafo.TabbedPane$TabChangeListener.stateChanged(TabbedPane.java:203)
        at javax.swing.JTabbedPane.fireStateChanged(Unknown Source)
        at javax.swing.JTabbedPane$ModelListener.stateChanged(Unknown Source)
        at javax.swing.DefaultSingleSelectionModel.fireStateChanged(Unknown Source)
        at javax.swing.DefaultSingleSelectionModel.setSelectedIndex(Unknown Source)
        at com.sap.plaf.frog.TabbedPaneSelectionModel.setSelectedIndex(TabbedPaneSelectionModel.java:23)
        at javax.swing.JTabbedPane.setSelectedIndexImpl(Unknown Source)
        at javax.swing.JTabbedPane.setSelectedIndex(Unknown Source)
        at com.sap.plaf.frog.FrogTabbedPaneUI$MouseGetter.mouseReleased(FrogTabbedPaneUI.java:3668)
        at java.awt.Component.processMouseEvent(Unknown Source)
        at javax.swing.JComponent.processMouseEvent(Unknown Source)
        at java.awt.Component.processEvent(Unknown Source)
        at java.awt.Container.processEvent(Unknown Source)
        at java.awt.Component.dispatchEventImpl(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Window.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.EventQueue.dispatchEvent(Unknown Source)
        at com.sap.aii.utilxi.swing.toolkit.Guitilities$EventProcessor.dispatchEvent(Guitilities.java:319)
        at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.run(Unknown Source)
    Apologies for the long stack trace, this is the only idea I can think of

  • Getting error for input string 0000 #

    Hi ,
    I am getting error on the portal that has an exception as error occured for For input string: "0000  #" .I think its because of some problem with the RFC that m getting this error but please suggest.The code done with dynamic coding is given below:
    for(int j=0; j<intList; j++)
                                       IDynamicNodeElement dynObj = wdContext.createDynamicNodeElement();
                                       strLine = wdContext.nodeWeb_Table_Disp1_Out().getWeb_Table_Disp1_OutElementAt(j).getTline();
    intLine = strLine.length();
                                       strLine = strLine.substring(1,intLine-1);               
                                  String[] strArr = strLine.split("#");
                                       for(int k=0;k<intCat;k++)
    String strVal = strArr[k];
                                            if(wdContext.nodeField_Catalog_Disp1_Out().getField_Catalog_Disp1_OutElementAt(k).getDatatype().equalsIgnoreCase("DATE"))
                                                 try
                                                      String strdate ="";
                                                      SimpleDateFormat ch1 = new SimpleDateFormat("yyyyMMdd");
                                                      //wdThis.wdGetAPI().getComponent().getMessageManager().reportSuccess(wdContext.currentUser_ProfileElement().getDatefmt()+strVal);
                                                      String strFmt = "";
                                                      if("YYYY/MM/DD".equalsIgnoreCase(wdContext.currentUser_ProfileElement().getDatefmt()))
                                                           strFmt = "yyyy/MM/dd";
                                                      else
                                                           strFmt = "MM/dd/yyyy";
                                                      SimpleDateFormat ch2 = new SimpleDateFormat(strFmt);
                                                      strVal = strVal.trim();
                                                      if(!"".equals(strVal))
                                                           strdate = ch2.format(ch1.parse(strVal));     
                                                      }          dynObj.setAttributeValue(wdContext.nodeField_Catalog_Disp1_Out().getField_Catalog_Disp1_OutElementAt(k).getFieldname(),strdate);
                                                 catch(Exception e)
                                            else if(wdContext.nodeField_Catalog_Disp1_Out().getField_Catalog_Disp1_OutElementAt(k).getDatatype().equalsIgnoreCase("QUAN"))
                                                 Double dblVal = null;
                                                 DecimalFormat sdf = new DecimalFormat("#,###.####");
                                                 dblVal = new Double(strVal);
                                                 if(!strVal.matches("(?i).-."))
                                                      dblVal = new Double(strVal);
    dynObj.setAttributeValue(wdContext.nodeField_Catalog_Disp1_Out().getField_Catalog_Disp1_OutElementAt(k).getFieldname(),new BigDecimal(strVal.trim()));
                                                 else
                                                      dynObj.setAttributeValue(wdContext.nodeField_Catalog_Disp1_Out().getField_Catalog_Disp1_OutElementAt(k).getFieldname(),null);
                                            else
                                                 dynObj.setAttributeValue(wdContext.nodeField_Catalog_Disp1_Out().getField_Catalog_Disp1_OutElementAt(k).getFieldname(),strVal);
    col.add(dynObj);     
                             wdContext.nodeDynamicNode().bind(col);
    Please help.
    Thanks & Regards,
    Reinuka.

    I guess the reason for the exception is the "date format" and conversions. Try something like this.
    SimpleDateFormat sdf = new SimpleDateFormat("date format you want");
    java.util.Date asDate = sdf .parse(codes.getString("your date value").trim());
    node element to which you want to set the date value.setfieldname(asDate.getTime());
    Example:
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
    java.util.Date asDate = sdf .parse(codes.getString("DELIV_DATE").trim());
    outboundpr.setDel_date(asDate.getTime());

  • Scorecard error "For input string" ....

    Hi has anyone had and solved the following error?
    When selecting "Last Run", one of my scorecards is returing an error "For Input string "7127912115" right after loading the Key data domain details.
    When selecting "Now" it works fine.
    However, when I send out the "Share link" it come back with the same error.  See attached.
    Please help?
    Mike

    label="Credit Account" value="CRA"no no :) it's not like that
    from the error itself you can understood. "not whole number"
    right format :
    label="Credit Account" value=0 //it will take index value
    label="Creditx " value=1
    label="Creditx " value=n // upto your limitif you want the same means you can achive in some other way.
      <af:selectOneChoice id="soc1" label="Export To" autoSubmit="true"
                                  valuePassThru="true"
                                  binding="#{backingBeanScope.x.soc1}"
                                  valueChangeListener="#{backingBeanScope.x.ValueChangeListener}"
                                  required="true" contentStyle="width:200.0px;">
                <f:selectItems value="#{backingBeanScope.x.selectItems}"
                               id="si1"/>
              </af:selectOneChoice>
        public java.util.List<SelectItem> getSelectItems() {
            selectItems = new ArrayList<SelectItem>();
            selectItems.add(new SelectItem("PDF", "PDF"));
            selectItems.add(new SelectItem("XLS", "EXCEL"));
            selectItems.add(new SelectItem("HTML", "HTML"));
            return selectItems;
        }in more simplified manner.
    http://www.youtube.com/watch?v=hryJoJ0OIsM
    https://blogs.oracle.com/dana/entry/static_list_view_objects_exposed

  • Webservice  got the error 'For input string: "NEW" '

    Hallo Experts.
    Since 2 weeks I've tried to understand the whole stuff about CAF... And I meet so much problems und the part of problems I've solved... But some others I cannot..
    So I post some questions on the forum...
    I've developed the application services and exposed it as webservice. After that in the webservice navigator I see this service in the list. But if I click on the service I get the error message: For input string "New".
    I dont't know what it does mean, So I take a look in the log...I see the following:
    Error starting web application [AdmManagerWS].
    The error is: com.sap.engine.services.servlets_jsp.server.exceptions.WebDeploymentException: Cannot get web DD object from configuration for [AdmManagerWS] web application. It is missing.001B789235DE003400000738000012401CBD85C8893708AE
    I don't know what ist web DD object? Please tell me how I can solve this problem.
    And exactly I don't need to expose this application service as Webservices... because in the service Browser (CAF testing service) I can't not test the methods in the application service and I got the advice from one forum thread to make the test in the web services. But it also doesnot run.. I'm out of idea and disappointed.
    Thanks for any help and
    Kind Regards!
    Ping

    I have found out the error
    I exposed the application service to the web service and one data type in WSDL is short but I have given the string value "NEW".
    Thus I got this error if I call the web services.
    But the test methods of the application service in the service browser I haven't got it yet.. I think it is somehow impossible.
    Kind Regards
    Ping

  • Error For input string: "M"

    hi i have select radio button but when i make seletion am geting this error      Error
    For input string: "M" am in jdeveloper 11.1.1.6.0
    <af:selectOneRadio id="sor4" layout="horizontal"
                                                     value="#{bindings.Gender.inputValue}"
                                 autoSubmit="true" immediate="true">
                <af:selectItem label="Female" value="F" id="si16"/>
                <af:selectItem label="Male" value="M" id="si10"/>
              </af:selectOneRadio>

    the error is
    <DCExecutableBinding> <refreshIfNeeded> [11074] Invoke refresh for :UamPractitionersView1Iterator
    <DCIteratorBinding> <refresh> [11075] Executing and syncing on IteratorBinding.refresh from :UamPractitionersView1Iterator
    <DCUtil> <findSpelObject> [11076] DCUtil, returning:oracle.jbo.uicli.binding.JUApplication, for IntlModuleDataControl
    <ADFLogger> <begin> Attaching an iterator binding to a datasource
    <DCIteratorBinding> <getViewObject> [11077] Resolving VO:UamPractitionersView1 for iterator binding:UamPractitionersView1Iterator
    <ADFLogger> <addContextData> Attaching an iterator binding to a datasource
    <SelectItemUtils> <_addUIXSelectItem> class org.apache.myfaces.trinidadinternal.convert.IntegerConverter:"The number is not a whole number." for the value "M"
    <SelectItemUtils> <_addUIXSelectItem> class org.apache.myfaces.trinidadinternal.convert.IntegerConverter:"The number is not a whole number." for the value "F"
    <JboBeanUtils> <getProperty> [11078] *** Using bean introspection to lookup value :componentClientId
    <LoopDiagnostic> <dump> [11079] variableIterator variables passivated >>> TrackQueryPerformed def SearchAppliedCriteria def SearchAppliedCriteria=IntlUsersCriteria
    <DCIteratorBinding> <releaseDataInternal> [11080] Releasing iterator binding:values_3068
    <DCIteratorBinding> <releaseDataInternal> [11081] Releasing iterator binding:listIter
    <DCIteratorBinding> <releaseDataInternal> [11082] Releasing iterator binding:values_3075
    <DCIteratorBinding> <releaseDataInternal> [11083] Releasing iterator binding:listIter
    <DCIteratorBinding> <releaseDataInternal> [11084] Releasing iterator binding:values_3082
    <DCIteratorBinding> <releaseDataInternal> [11085] Releasing iterator binding:values_3089
    <DCIteratorBinding> <releaseDataInternal> [11086] Releasing iterator binding:values_3096
    <ViewObjectImpl> <closeStatementsResetRowSet> [11087] ViewObject: [internal_vcival_def]Root.internal_vcival_def_3100 close prepared statements...
    <DCIteratorBinding> <releaseDataInternal> [11088] Releasing iterator binding:operators_3079
    <DCIteratorBinding> <releaseDataInternal> [11089] Releasing iterator binding:operators_3086
    <DCIteratorBinding> <releaseDataInternal> [11090] Releasing iterator binding:operators_3093
    <DCIteratorBinding> <releaseDataInternal> [11091] Releasing iterator binding:operators_3065
    <DCIteratorBinding> <releaseDataInternal> [11092] Releasing iterator binding:operators_3072
    <ViewObjectImpl> <closeStatementsResetRowSet> [11093] ViewObject: [internal_vco_def]Root.internal_vco_def_3114 close prepared statements...
    <DCIteratorBinding> <releaseDataInternal> [11094] Releasing iterator binding:criteriaItemsForSearch_3056
    <DCIteratorBinding> <releaseDataInternal> [11095] Releasing iterator binding:nestedViewCriteria_3070
    <DCIteratorBinding> <releaseDataInternal> [11096] Releasing iterator binding:nestedViewCriteria_3077
    <DCIteratorBinding> <releaseDataInternal> [11097] Releasing iterator binding:nestedViewCriteria_3084
    <DCIteratorBinding> <releaseDataInternal> [11098] Releasing iterator binding:nestedViewCriteria_3091
    <DCIteratorBinding> <releaseDataInternal> [11099] Releasing iterator binding:nestedViewCriteria_3098
    <DCIteratorBinding> <releaseDataInternal> [11100] Releasing iterator binding:nestedViewCriteria_3070
    <DCIteratorBinding> <releaseDataInternal> [11101] Releasing iterator binding:nestedViewCriteria_3070
    <DCIteratorBinding> <releaseDataInternal> [11102] Releasing iterator binding:nestedViewCriteria_3070
    <DCIteratorBinding> <releaseDataInternal> [11103] Releasing iterator binding:nestedViewCriteria_3070
    <DCIteratorBinding> <releaseDataInternal> [11104] Releasing iterator binding:nestedViewCriteria_3077
    <DCIteratorBinding> <releaseDataInternal> [11105] Releasing iterator binding:nestedViewCriteria_3077
    <DCIteratorBinding> <releaseDataInternal> [11106] Releasing iterator binding:nestedViewCriteria_3077
    <DCIteratorBinding> <releaseDataInternal> [11107] Releasing iterator binding:nestedViewCriteria_3077
    <DCIteratorBinding> <releaseDataInternal> [11108] Releasing iterator binding:nestedViewCriteria_3084
    <DCIteratorBinding> <releaseDataInternal> [11109] Releasing iterator binding:nestedViewCriteria_3084
    <DCIteratorBinding> <releaseDataInternal> [11110] Releasing iterator binding:nestedViewCriteria_3084
    <DCIteratorBinding> <releaseDataInternal> [11111] Releasing iterator binding:nestedViewCriteria_3084
    <DCIteratorBinding> <releaseDataInternal> [11112] Releasing iterator binding:nestedViewCriteria_3091
    <DCIteratorBinding> <releaseDataInternal> [11113] Releasing iterator binding:nestedViewCriteria_3091
    <DCIteratorBinding> <releaseDataInternal> [11114] Releasing iterator binding:nestedViewCriteria_3091
    <DCIteratorBinding> <releaseDataInternal> [11115] Releasing iterator binding:nestedViewCriteria_3091
    <DCIteratorBinding> <releaseDataInternal> [11116] Releasing iterator binding:nestedViewCriteria_3098
    <DCIteratorBinding> <releaseDataInternal> [11117] Releasing iterator binding:nestedViewCriteria_3098
    <DCIteratorBinding> <releaseDataInternal> [11118] Releasing iterator binding:nestedViewCriteria_3098
    <DCIteratorBinding> <releaseDataInternal> [11119] Releasing iterator binding:nestedViewCriteria_3098
    <ViewObjectImpl> <closeStatementsResetRowSet> [11120] ViewObject: [internal_vci_def]Root.internal_vci_def_3063 close prepared statements...
    <DCIteratorBinding> <releaseDataInternal> [11121] Releasing iterator binding:viewObjectBindVars_3059
    <ViewObjectImpl> <closeStatementsResetRowSet> [11122] ViewObject: [internal_vci_def]Root.internal_vci_def_3170 close prepared statements...
    <DCIteratorBinding> <releaseDataInternal> [11123] Releasing iterator binding:vcRowsIterator
    <DCIteratorBinding> <releaseDataInternal> [11124] Releasing iterator binding:properties_3061
    <ViewObjectImpl> <closeStatementsResetRowSet> [11125] ViewObject: [IntlModule.IntlUsers1.IntlUsersCriteria]Root.IntlModule_IntlUsers1_IntlUsersCriteria_3054 close prepared statements...
    <DCUtil> <findSpelObject> [11126] DCUtil, returning:oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding, for IntlUsersCriteriaQuery
    <DCIteratorBinding> <releaseDataInternal> [11127] Releasing iterator binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlListBinding_3132List_3133
    <DCIteratorBinding> <releaseDataInternal> [11128] Releasing iterator binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlListBinding_3150List_3151
    <DCIteratorBinding> <releaseDataInternal> [11129] Releasing iterator binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlListBinding_3168List_3169
    <JUCtrlHierNodeBinding> <release> [11130] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_32, value:vcRowsIterator
    <DCIteratorBinding> <releaseDataInternal> [11131] Releasing iterator binding:operators_3065
    <DCIteratorBinding> <releaseDataInternal> [11132] Releasing iterator binding:listIter
    <DCIteratorBinding> <releaseDataInternal> [11133] Releasing iterator binding:values_3068
    <DCIteratorBinding> <releaseDataInternal> [11134] Releasing iterator binding:values_3068
    <DCIteratorBinding> <releaseDataInternal> [11135] Releasing iterator binding:operators_3065
    <DCIteratorBinding> <releaseDataInternal> [11136] Releasing iterator binding:operators_3072
    <DCIteratorBinding> <releaseDataInternal> [11137] Releasing iterator binding:listIter
    <DCIteratorBinding> <releaseDataInternal> [11138] Releasing iterator binding:values_3075
    <DCIteratorBinding> <releaseDataInternal> [11139] Releasing iterator binding:values_3075
    <DCIteratorBinding> <releaseDataInternal> [11140] Releasing iterator binding:operators_3072
    <DCIteratorBinding> <releaseDataInternal> [11141] Releasing iterator binding:operators_3079
    <DCIteratorBinding> <releaseDataInternal> [11142] Releasing iterator binding:values_3082
    <DCIteratorBinding> <releaseDataInternal> [11143] Releasing iterator binding:values_3082
    <DCIteratorBinding> <releaseDataInternal> [11144] Releasing iterator binding:operators_3079
    <DCIteratorBinding> <releaseDataInternal> [11145] Releasing iterator binding:operators_3086
    <DCIteratorBinding> <releaseDataInternal> [11146] Releasing iterator binding:values_3089
    <DCIteratorBinding> <releaseDataInternal> [11147] Releasing iterator binding:values_3089
    <DCIteratorBinding> <releaseDataInternal> [11148] Releasing iterator binding:operators_3086
    <DCIteratorBinding> <releaseDataInternal> [11149] Releasing iterator binding:operators_3093
    <DCIteratorBinding> <releaseDataInternal> [11150] Releasing iterator binding:values_3096
    <DCIteratorBinding> <releaseDataInternal> [11151] Releasing iterator binding:values_3096
    <DCIteratorBinding> <releaseDataInternal> [11152] Releasing iterator binding:operators_3093
    <DCIteratorBinding> <releaseDataInternal> [11153] Releasing iterator binding:criteriaItemsForSearch_3056
    <DCIteratorBinding> <releaseDataInternal> [11154] Releasing iterator binding:viewObjectBindVars_3059
    <DCIteratorBinding> <releaseDataInternal> [11155] Releasing iterator binding:viewObjectBindVars_3059
    <DCIteratorBinding> <releaseDataInternal> [11156] Releasing iterator binding:properties_3061
    <DCIteratorBinding> <releaseDataInternal> [11157] Releasing iterator binding:properties_3061
    <DCIteratorBinding> <releaseDataInternal> [11158] Releasing iterator binding:criteriaItemsForSearch_3056
    <JUCtrlHierNodeBinding> <release> [11159] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_33, value:vcRowsIterator
    <JUCtrlHierNodeBinding> <release> [11160] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_32, value:vcRowsIterator
    <JUCtrlHierNodeBinding> <release> [11161] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_33, value:vcRowsIterator
    <DCIteratorBinding> <releaseDataInternal> [11162] Releasing iterator binding:vcRowsIterator
    <DCIteratorBinding> <releaseDataInternal> [11163] Releasing iterator binding:variableIterator
    <ADFLogger> <begin> Rollback transaction
    <ApplicationModuleImpl> <resetState> [11164] Resetting AM=Root
    <ApplicationPoolMessageHandler> <doPoolMessage> [11165] **** PoolMessage REQ DETACH LWS
    <DCUtil> <findSpelObject> [11166] DCUtil, returning:oracle.jbo.uicli.binding.JUFormBinding, for view_pageDefs_usersPageDef_WEB_INF_Updusrtask_flow_definition_xml_Updusrtask_flow_definition
    <DCIteratorBinding> <releaseDataInternal> [11167] Releasing iterator binding:TitlecodeList_3052
    <DCIteratorBinding> <releaseDataInternal> [11168] Releasing iterator binding:CountrycodeList_3050
    <DCIteratorBinding> <releaseDataInternal> [11169] Releasing iterator binding:BranchcodeList_3051
    <DCIteratorBinding> <releaseDataInternal> [11170] Releasing iterator binding:OfficecodeList_3048
    <DCIteratorBinding> <releaseDataInternal> [11171] Releasing iterator binding:RoleaccesscodeList_3049
    <JUCtrlHierNodeBinding> <release> [11172] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_34, value:IntlUsers1Iterator
    <JUCtrlHierNodeBinding> <release> [11173] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_34, value:IntlUsers1Iterator
    <DCIteratorBinding> <releaseDataInternal> [11174] Releasing iterator binding:IntlUsers1Iterator
    <JUCtrlHierNodeBinding> <release> [11175] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_32, value:vcRowsIterator
    <JUCtrlHierNodeBinding> <release> [11176] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_33, value:vcRowsIterator
    <JUCtrlHierNodeBinding> <release> [11177] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_32, value:vcRowsIterator
    <JUCtrlHierNodeBinding> <release> [11178] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_33, value:vcRowsIterator
    <DCIteratorBinding> <releaseDataInternal> [11179] Releasing iterator binding:vcRowsIterator
    <DCIteratorBinding> <releaseDataInternal> [11180] Releasing iterator binding:variableIterator
    <DCIteratorBinding> <releaseDataInternal> [11181] Releasing iterator binding:UamUserdetailsView2Iterator
    <DCIteratorBinding> <releaseDataInternal> [11182] Releasing iterator binding:UamUserextensionView1Iterator
    <DCIteratorBinding> <releaseDataInternal> [11183] Releasing iterator binding:UamPractitionersView1Iterator
    <ApplicationPoolMessageHandler> <doPoolMessage> [11184] **** PoolMessage REQ ATTACH LWS
    <ApplicationPoolMessageHandler> <doPoolMessage> [11185] **** PoolMessage REQ DETACH LWS
    <JUCtrlHierNodeBinding> <release> [11186] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_34, value:IntlUsers1Iterator
    <JUCtrlHierNodeBinding> <release> [11187] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_34, value:IntlUsers1Iterator
    <DCIteratorBinding> <releaseDataInternal> [11188] Releasing iterator binding:IntlUsers1Iterator
    <JUCtrlHierNodeBinding> <release> [11189] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_32, value:vcRowsIterator
    <JUCtrlHierNodeBinding> <release> [11190] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_33, value:vcRowsIterator
    <JUCtrlHierNodeBinding> <release> [11191] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_32, value:vcRowsIterator
    <JUCtrlHierNodeBinding> <release> [11192] released: ROOT node binding:noCtrl_oracle_adfinternal_view_faces_model_binding_FacesCtrlHierNodeBinding_33, value:vcRowsIterator
    <DCIteratorBinding> <releaseDataInternal> [11193] Releasing iterator binding:vcRowsIterator
    <DCIteratorBinding> <releaseDataInternal> [11194] Releasing iterator binding:variableIterator
    <DCIteratorBinding> <releaseDataInternal> [11195] Releasing iterator binding:UamUserdetailsView2Iterator
    <DCIteratorBinding> <releaseDataInternal> [11196] Releasing iterator binding:UamUserextensionView1Iterator
    <DCIteratorBinding> <releaseDataInternal> [11197] Releasing iterator binding:UamPractitionersView1Iterator
    <af:selectOneRadio id="sor2" layout="horizontal"
                                   value="#{bindings.Gender.inputValue}"
                                   partialTriggers="resId1">
                  <af:selectItem label="Male" value="M" id="si5"/>
                  <af:selectItem label="Female" value="F" id="si4"/>
                </af:selectOneRadio>
    i what to store F,M NOT WHOLE NAME FEMALE OR MALE
    my pagedefination is
    <list IterBinding="UamUserdetailsView2Iterator" id="Gender"
              DTSupportsMRU="false" StaticList="true">
          <AttrNames>
            <Item Value="Gender"/>
          </AttrNames>
          <ValueList>
            <Item Value="M"/>
            <Item Value="F"/>
          </ValueList>
        </list>Edited by: adf009 on 2013/05/20 10:24 AM

  • Java.lang.NumberFormatException: For input string: "DESCRIPTION="

    Colleagues,
    eBis 11.5.10.2.
    I'm getting a Warning in the concurrent manager when I submit a programme that has an attached xml template. The warning is stating: -
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 2667735 on node BAMBI at 02-SEP-2011 17:32:56.
    Post-processing of request 2667735 failed at 02-SEP-2011 17:32:57 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    When I consult the OPP log in Sysadmin, I can see a not very helpful message: -
    [9/2/11 5:32:57 PM] [UNEXPECTED] [36822:RT2667735] java.lang.NumberFormatException: For input string: "DESCRIPTION="
         at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
         at java.lang.Integer.parseInt(Integer.java:447)
         at java.lang.Integer.parseInt(Integer.java:497)
         at oracle.apps.xdo.generator.pdf.PDFGenerator.setFont(PDFGenerator.java:629)
         at oracle.apps.xdo.generator.pdf.PDFGenerator.setProperties(PDFGenerator.java:468)
         at oracle.apps.xdo.generator.ProxyGenerator.setProperties(ProxyGenerator.java:1373)
         at oracle.apps.xdo.template.fo.FOHandler.startElement(FOHandler.java:262)
         at oracle.apps.xdo.template.fo.FOHandler.startElement(FOHandler.java:204)
         at oracle.apps.xdo.common.xml.XSLTMerger.startElement(XSLTMerger.java:55)
         at oracle.xml.parser.v2.XMLContentHandler.startElement(XMLContentHandler.java:167)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1182)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:149)
         at oracle.apps.xdo.template.fo.FOProcessingEngine.process(FOProcessingEngine.java:320)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:1051)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5926)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3458)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3547)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:290)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)
    [9/2/11 5:32:57 PM] [36822:RT2667735] Completed post-processing actions for request 2667735.
    Now, this isn't programme specific as it's affecting all our BI Publisher reports. Also the specific report I am working on has the option to email. I'm finding that the emails still work and when I open the attachment, they are displaying in PDF format correctly - even though the concurrent manager completes with the above warning. The above warning doesn't let me view the output in PDF from Oracle Financials.
    Any help would be greatly appreciated.
    Thanks

    Maybe check if Metalink note 764180.1 applies? This appears to be a bug fixed with patch 7669965.

  • Java.lang.NumberFormatException: For input string: "500.01 Not to Exceed"

    While running a BI Publisher 11g report i am getting this error
    oracle.xdo.XDOException: java.lang.NumberFormatException: For input string: "500.01 Not to Exceed"
    Any idea what could it be?
    To me it looks like that its related to some datatype mismatch.
    For some parameters report runs fine and for some it throws the above error.
    Thanks
    Ashish

    plz post sample for
    For some parameters report runs fine and for some it throws the above error.what are you using for
    datatype mismatch.?
    do you use some format-number or .... ?

  • Exception in thread "main" java.lang.NumberFormatException:For input String

    this is a code about arrylist. but when I debug it.it metion:Exception in thread "main" java.lang.NumberFormatException:For input String at java.lang.NumberFormatException.forInputString(numberFomatExceptionio java:48)
    at java.lang.Integer.parseInt(integer.java:468)
    at java.lang.Integer.parseInt(integer.java:497)
    at Get.getInt(manerger.java:208)
    at LinkList.insertFirst(manager.java:94)
    at manager.main(manager.java;20)
    this is my code:
    import java.io.*;
    import java.lang.*;
    public class manager
         public static void main(String args[]) throws IOException
         LinkList list=new LinkList();
         System.out.println("input S can scan the grade\ninput D can delete one entry\ninput U can update the entry\ninput A can add one entry\ninput E can end");
         int cr=System.in.read();
    switch(cr)
         case 'A':
         list.insertFirst();break;//this is 20 row
         case 'S':
         System.out.println("input the s");break;
         case 'D':
         System.out.println("input the d");break;
         case 'U':
         System.out.println("input the u");break;
    class Link
    public int number;
    public String name=new String();
    public int chs;
    public int eng;
    public int math;
    public Link next;
    public Link(int number,String name, int chs,int eng,int math)
    this.number=number;
    this.name=name;
    this.chs=chs;
    this.eng=eng;
    this.math=math;
    public Link()
         this(0,"",0,0,0);
    public void displayLink()
    System.out.println(number + " "+name+ " "+chs+ " "+eng+ " "+math+ " ");
    class LinkList
    public Link first;
    public LinkList()
    first = null;
    public boolean isEmpty()
    return first==null;
    public void displayList()
         System.out.println("");
         Link current=first;
         while(current!=null)
              current.displayLink();
              current=current.next;
         System.out.println("");
    public Link insertFirst() throws IOException
         Get getdata=new Get();
         int number=getdata.getInt();//this is 94 row
         String name=getdata.getString();
         int chs=getdata.getInt();
         int eng=getdata.getInt();
         int math=getdata.getInt();
         Link newLink = new Link(number,name,chs,eng,math);
         first=newLink;
         return first;
    public Link find(int key)
         Link current=first;
         while(current.number!=key)
              if(current.next==null)
              return null;
              else
              current=current.next;
         return current;
    public Link update(int key) throws IOException
         Link current=first;
         while(current.number!=key)
         if(current.next==null)
         return null;
         else
              System.out.println("Input the first letter of the subject:");
         int c=System.in.read();
         Get get=new Get();
              switch(c)
                   case 'c':
                   current.chs=get.getInt();break;
                   case 'e':
                   current.eng=get.getInt();break;
                   case 'm':
                   current.math=get.getInt();break;
         return current;
    public float average(char key)
         Link current=first;
         float total=0;
         float average=0;
         float counter=0;
         if(current==null)
         return 0;
         while(current!=null)
              switch(key)
                   case 'c':
                   total=current.chs+current.next.chs;break;
                   case 'e':
                   total=current.eng+current.next.eng;break;
                   case 'm':
                   total=current.math+current.next.math;break;
              current=current.next.next;
              counter++;
         average=total/counter;
         return average;
    public Link delete(int key)
         Link current=first;
         Link previous=first;
         while(current.number!=key)
              if(current.next==null)
              return null;
              else
                   previous=current;
                   current=current.next;
              if(current==first)
              first=first.next;
              else
              previous.next=current.next;
              return current;
    class Get
    public static String getString() throws IOException
    System.out.println("Input your name:");
    InputStreamReader str = new InputStreamReader(System.in);
    BufferedReader br = new BufferedReader(str);
    String s = br.readLine();
    return s;
    public static int getInt() throws IOException
    System.out.println("Input your data:");
    String st = getString();
    return Integer.parseInt(st);//this is 208 row
    }

    It may be that the code in getString() returns a
    String that ends with a newline. If that is the
    problem, you can use
    return (Integer.parseInt(st)).trim();1. getString will never return a String ending in newline. BufferedReader.readLine strips off the newline.
    2. Even if you had a newline, String.trim doesn't trim newlines.
    3. You would need to trim the String, not the int:
    return (Integer.parseInt(st.trim()));As JimDinosaur said, you are passing bad data (the value of "st").
    In getInt, add this before trying to parse "st":
    System.out.println("###"+st+"###");What does it print?

  • Searching for a string in an excel file and return true if found.

    How can I search for a string in an excel file and return true if found, its location and also a value.

    The problem with searching an excel file is that it contains a header. It would be easiest if you just read the file into a LabVIEW array and search the array. This way you can also get the index and the value of the location.

  • How to keep the field open for input with error message in report program

    Hi,
      Need a help in solving the below issue.
    "How to keep the field open for input with error message in report program"
    Regards,
    C.Shasiraj.

    Hi...
    you have to use the event:
    <b>AT SELECTION-SCREEN ON <FIELD> EVENT.</b>
    u have to give an error message in this event.
    Consider the following <b>Example:</b>
    <b>PARAMETERS : NUMBER TYPE I.
    AT SELECTION-SCREEN ON NUMBER.
      IF NUMBER = 10.
        MESSAGE 'Number vakue is 10' TYPE 'E'.
      ENDIF.
    START-OF-SELECTION.
      WRITE NUMBER.
    </b>
    in this if u give the value of number = 10, it will not proceed further, if u give some other value other than 10 you will proceed further...
    Execute this program once u will understand....
    also Consider the following links :
    <b>Regarding events:</b>
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/34a237d9b511d1950e0000e8353423/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/34a23ad9b511d1950e0000e8353423/frameset.htm
    <b>Regarding messages:</b>
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm
    This is very useful.......
    Reward points if useful....
    Suresh....

  • Powershell error while importing module and executing function from module

    powershell error while importing module and executing function from module
    Function called in uncertain order..
    VERBOSE: The 'Function1' command in the MyModule module was imported, but because its name does not include an approved verb, it might be difficult to find. The
    suggested alternative verbs are "Clear, Install, Publish, Unlock".
    VERBOSE: Importing function 'Function1'.
    VERBOSE: The 'Function2' command in the MyModule' module was imported, but because its name does not include an approved verb, it might be difficult to fin
    d. For a list of approved verbs, type Get-Verb.
    VERBOSE: Importing function 'Function2'.

    First of all those errors look more related to HBR, though if it worked before I would restart services then log into the planning app and then try again.
    Have you tried a different form as well one without an ampersand &.
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for

  • Dodgy undo

    Hi, I am using a retina display macbook pro 2.6ghz i7. I've downloaded Reflow and got staright in to Chris Griffith's tutorial, which is all great. However, when adding the background image I decided to undo (with quickkeys ctrl-z). Whilst undoing th

  • Palm - "and for our next trick..."

    Palm - "and for our next trick... we have the latest Palm phone made by HTC and running webOS!" *applause* I really think Palm needs to hook up with HTC, create a really good virtual keyboard and introduce, in my opinion, a real killer of a phone.  G

  • OS X 9.2 Trouble

    I just updated my imac 27" from Snow Leopard to Maverick and it seems to work fine until I start LR4. The computer restarts with a kernal panic error.

  • PO FOR COST CENTRE

    if we create Purchase for Cost centre that is as acc assignt as K , If we made the GRN, Is the stock comes under our storage location or else It is  automatically consumed under the Cost centre . Please let me know clearly the overall aspect of the s

  • Authentication method for JCo connection in XSS installation

    Hi All, I have a query which perplexes me.  I am implementing XSS (ESS/MSS) on SAP Portal EP6 SR1 with an ECC5 backend for prototype purposes. When I follow SAP's help steps to setup JCo connections, it states that for the metadata connection you sho