Had a problem about function which includes bitand, decode, etc..

Hi everyone,
As I said at topic, I need some help on function. First of all, I will explain what kind of data I need to have. I had a table which has a column called FLAG1, this column gives me an information about a meter's situation. But this column only have numbers I need to look at it bit by bit. Here is my query;
create or replace
function FLAG1_CONTROL(F1 varchar2) return varchar2 is
result varchar2(250);
vF1 integer;
begin
vF1:= TO_NUMBER(F1, 'XX');
result:= '';
SELECT result|| DECODE(BITAND(vF1,1), 0, 'close,', 'open,') into result from dual;
SELECT result|| DECODE(BITAND(vF1,2), 0, '', 'dafds,') into result from dual;
SELECT result|| DECODE(BITAND(vF1,4), 0, '', 'jkf,') into result from dual;
SELECT result|| DECODE(BITAND(vF1,8), 0, '', 'rewrw,') into result from dual;
SELECT result|| DECODE(BITAND(vF1,16), 0, '', 'fdsfsa,') into result from dual;
SELECT result|| DECODE(BITAND(vF1,32), 0, '', 'dfas,') into result from dual;
SELECT result|| DECODE(BITAND(vF1,64), 0, '', 'jjll,') into result from dual;
return(Result);
end FLAG1_CONTROL;
When I run this query, I had exception like
ORA-01422: exact fetch returns more than requested number of rows
ORA-06512: at "AKSAPROC.FLAG1_CONTROL", line 11
ORA-06512: at line 7
Process exited.
Can anyone help me about that topic?
Regards,
Edited by: sedcal on Aug 9, 2010 5:19 PM

Hi,
You're referencing a table called dualI that, apparantly, has more than 1 row:
SELECT result|| DECODE(BITAND(vF1,2), 0, '', 'dafds,') into result from dualI;If you use CASE (or IF ... THEN .. ELSE) instead of DECODE, you won't need SELECT INTO.
create or replace
function FLAG1_CONTROL     (F1     IN     varchar2)
return       varchar2
is
     vF1    integer          := TO_NUMBER (F1, 'XX');
begin
     RETURN  CASE WHEN BITAND (vF1,  1)  = 0 THEN 'close,'  ELSE 'open,'   END
     ||       CASE WHEN BITAND (vF1,  2) != 0 THEN 'dafds,'                  END
     ||       CASE WHEN BITAND (vF1,  4) != 0 THEN 'jkf,'                       END
     ||       CASE WHEN BITAND (vF1,  8) != 0 THEN 'rewrw,'                END
     ||       CASE WHEN BITAND (vF1, 16) != 0 THEN 'fdsfsa,'                END
     ||       CASE WHEN BITAND (vF1, 32) != 0 THEN 'dfas,'                END
     ||       CASE WHEN BITAND (vF1, 64) != 0 THEN 'jjll,'                END
end     FLAG1_CONTROL;
/Edited by: Frank Kulash on Aug 9, 2010 10:44 AM
Added code for SELECT-free function

Similar Messages

  • I need a good DVD burner I tried roxia but not user friendly - I have read a lot of about iLife which includes a DVD burner - it is discontinued but still available from other sources - please advise

    I need a good quality dvd burner - not happy with the free downloads - I have read a lot about iLife which apparently inclues a good reliable
    dvd burner - discontinued but available from various sources. Please advise.

    You need iLife '09 which includes the complete iDVD app and associated menu themes.
    Found here.
    http://www.amazon.com/Apple-MB966Z-A-iLife-VERSION/dp/B0014X5XEK/ref=sr_1_1?ie=U TF8&qid=1368187126&sr=8-1&keywords=iLife+%2709
    Another DVD burning app and is free is
    Burn
    http://burn-osx.sourceforge.net/Pages/English/home.html

  • Problems about function area

    Dear all
    when I use function area ,for example :
    The function area of cost element "A "is "magagement"
    The function area of cost center B is "manufacting".
    When I post document :Dr Cr:A ,and related cost center is B.
    will the systmen gives the error message?
    richard

    anyone can help me ? 
    if anyone can give me the config procedure step by step..thanks...
    richard

  • Problem about function

    can we give table as parameter to the function ,
    the table parameter should be out type parameter .
    how ?
    please explain with example.
    Thanks in advance

    I'm not sure - are you looking for this or anything else --
    SQL> create or replace type rec_emp_type is object
    emp_id number (4),
    ename varchar2 (12),
    job varchar2 (12),
    mgr_id number(4),
    hiredate date,
    salary number (8),
    comm number(8),
    dept_id number (2)
    Type created.
    SQL> create or replace type table_emp_type is table of rec_emp_type;
    Type created.
    SQL> ed
    Wrote file afiedt.buf
    1 CREATE or REPLACE function transform Return table_emp_type PIPELINED as
    2 BEGIN
    3 For query in (select * from emp)
    4 Loop
    5 query.sal := query.sal*1.2;
    6 Pipe row (rec_emp_type (
    7 query.EMPNO,
    8 query.ENAME,
    9 query.JOB,
    10 query.MGR,
    11 query.HIREDATE,
    12 query. SAL,
    13 query.COMM,
    14 query.DEPTNO));
    15 End loop;
    16 Return;
    17* END;
    SQL> /
    Function created.
    Elapsed: 00:00:00.02
    SQL> select * from table (cast (transform as table_emp_type));
    7369 SMITH CLERK 7902 17-DEC-80 960 20
    7499 ALLEN SALESMAN 7698 20-FEB-81 1920 300 30
    7521 WARD SALESMAN 7698 22-FEB-81 1500 500 30
    7566 JONES MANAGER 7839 02-APR-81 3570 20
    7654 MARTIN SALESMAN 7698 28-SEP-81 1500 1400 30
    7698 BLAKE MANAGER 7839 01-MAY-81 3420 30
    7782 CLARK MANAGER 7839 09-JUN-81 2940 10
    7788 SCOTT ANALYST 7566 09-DEC-82 3600 20
    7839 KING PRESIDENT 17-NOV-81 6000 10
    7844 TURNER SALESMAN 7698 08-SEP-81 1800 0 30
    7876 ADAMS CLERK 7788 12-JAN-83 1320 20
    7900 JAMES CLERK 7698 03-DEC-81 1140 30
    7902 FORD ANALYST 7566 03-DEC-81 3600 20
    7934 MILLER CLERK 7782 23-JAN-82 1560 10 Regards.
    Satyaki De.

  • A big problem in JSF1.1dynamic include

    hi, i have a problem about JSF dynamic include as follow:
    i use Eclipse3.2.1 JSF1.1.3 and TomCat5.5
    I use a bean call "Control" to save the path which i gonna include. I have a selectItem in the first page, when user select the selectitem, valueChangeListener try to Listener what the user choose and link to different page. i put my link in a subview like follow
    <jsp:useBean id="con" scope="session" class="sources.bean.Control" />
    <h:form>
    <f:subview id="footer">
    <table align="center" border="2" bgcolor="yellowgreen">
    <c:import url="${con.link}"/>
    </table>
    </f:subview>
    </h:form>
    I know when i use subview, i should use <f:verbatim> </f:verbatim> to close all non JSF tag. i do it as well, but when i try to use <h:inputText> tag. it show me a SelectBooleanCheckBox and didn't get any error message. why?? i really can't understand.
    I try to use a form tag to close the inputText in the include pages, it show me some errors message as below:
    ���d�I: Servlet.service() for servlet jsp threw exception
    java.lang.IllegalArgumentException: Expected submitted value of type Boolean for Component : {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /new.jsp][Class: javax.faces.component.html.HtmlForm,Id: _idJsp0][Class: javax.faces.component.UINamingContainer,Id: footer][Class: javax.faces.component.html.HtmlSelectBooleanCheckbox,Id: _idJsp12]}
         at org.apache.myfaces.shared_impl.renderkit.RendererUtils.getBooleanValue(RendererUtils.java:151)
         at org.apache.myfaces.shared_impl.renderkit.html.HtmlCheckboxRendererBase.encodeEnd(HtmlCheckboxRendererBase.java:60)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:536)
         at javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:495)
         at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:363)
         at org.apache.myfaces.shared_impl.taglib.UIComponentBodyTagBase.doEndTag(UIComponentBodyTagBase.java:54)
         at org.apache.jsp.pages.lic.LIC3320_jsp._jspx_meth_f_verbatim_3(LIC3320_jsp.java:358)
         at org.apache.jsp.pages.lic.LIC3320_jsp._jspService(LIC3320_jsp.java:97)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
         at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)
         at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)
         at org.apache.taglibs.standard.tag.common.core.ImportSupport.acquireString(ImportSupport.java:296)
         at org.apache.taglibs.standard.tag.common.core.ImportSupport.doEndTag(ImportSupport.java:161)
         at org.apache.jsp.new_jsp._jspx_meth_c_import_0(new_jsp.java:311)
         at org.apache.jsp.new_jsp._jspx_meth_f_subview_0(new_jsp.java:285)
         at org.apache.jsp.new_jsp._jspx_meth_h_form_0(new_jsp.java:191)
         at org.apache.jsp.new_jsp._jspx_meth_f_view_0(new_jsp.java:146)
         at org.apache.jsp.new_jsp._jspService(new_jsp.java:110)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
         at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:416)
         at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:234)
         at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
         at org.apache.myfaces.webapp.MyFacesServlet.service(MyFacesServlet.java:74)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Unknown Source)
    2007/7/30 ���� 12:05:22 org.apache.catalina.core.ApplicationDispatcher invoke
    ���d�I: Servlet.service() for servlet jsp threw exception
    java.lang.IllegalArgumentException: Expected submitted value of type Boolean for Component : {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /new.jsp][Class: javax.faces.component.html.HtmlForm,Id: _idJsp0][Class: javax.faces.component.UINamingContainer,Id: footer][Class: javax.faces.component.html.HtmlSelectBooleanCheckbox,Id: _idJsp12]}
         at org.apache.myfaces.shared_impl.renderkit.RendererUtils.getBooleanValue(RendererUtils.java:151)
         at org.apache.myfaces.shared_impl.renderkit.html.HtmlCheckboxRendererBase.encodeEnd(HtmlCheckboxRendererBase.java:60)
         at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:536)
         at javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:495)
         at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:363)
         at org.apache.myfaces.shared_impl.taglib.UIComponentBodyTagBase.doEndTag(UIComponentBodyTagBase.java:54)
         at org.apache.jsp.pages.lic.LIC3320_jsp._jspx_meth_f_verbatim_3(LIC3320_jsp.java:358)
         at org.apache.jsp.pages.lic.LIC3320_jsp._jspService(LIC3320_jsp.java:97)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
         at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)
         at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)
         at org.apache.taglibs.standard.tag.common.core.ImportSupport.acquireString(ImportSupport.java:296)
         at org.apache.taglibs.standard.tag.common.core.ImportSupport.doEndTag(ImportSupport.java:161)
         at org.apache.jsp.new_jsp._jspx_meth_c_import_0(new_jsp.java:311)
         at org.apache.jsp.new_jsp._jspx_meth_f_subview_0(new_jsp.java:285)
         at org.apache.jsp.new_jsp._jspx_meth_h_form_0(new_jsp.java:191)
         at org.apache.jsp.new_jsp._jspx_meth_f_view_0(new_jsp.java:146)
         at org.apache.jsp.new_jsp._jspService(new_jsp.java:110)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
         at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:416)
         at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:234)
         at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
         at org.apache.myfaces.webapp.MyFacesServlet.service(MyFacesServlet.java:74)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Unknown Source)
    2007/7/30 ���� 12:05:22 org.apache.catalina.core.StandardWrapperValve invoke
    ���d�I: Servlet.service() for servlet faces threw exception
    javax.faces.FacesException: javax.servlet.jsp.JspException: Expected submitted value of type Boolean for Component : {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /new.jsp][Class: javax.faces.component.html.HtmlForm,Id: _idJsp0][Class: javax.faces.component.UINamingContainer,Id: footer][Class: javax.faces.component.html.HtmlSelectBooleanCheckbox,Id: _idJsp12]}
         at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:435)
         at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:234)
         at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
         at org.apache.myfaces.webapp.MyFacesServlet.service(MyFacesServlet.java:74)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Unknown Source)
    Caused by: javax.servlet.ServletException: javax.servlet.jsp.JspException: Expected submitted value of type Boolean for Component : {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /new.jsp][Class: javax.faces.component.html.HtmlForm,Id: _idJsp0][Class: javax.faces.component.UINamingContainer,Id: footer][Class: javax.faces.component.html.HtmlSelectBooleanCheckbox,Id: _idJsp12]}
         at org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:839)
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:776)
         at org.apache.jsp.new_jsp._jspService(new_jsp.java:120)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
         at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:416)
         ... 18 more
    I'm just a beginner, if anything that is unclear please tell me.
    thank for help
    emmy
    Message was edited by:
    emmy.ma

    The cause is rather self-explaining?Caused by: javax.servlet.ServletException: javax.servlet.jsp.JspException: Expected submitted value of type Boolean for Component :
        Component-Path :
        [Class: javax.faces.component.UIViewRoot,ViewId: /new.jsp]
        [Class: javax.faces.component.html.HtmlForm,Id: _idJsp0]
        [Class: javax.faces.component.UINamingContainer,Id: footer]
        [Class: javax.faces.component.html.HtmlSelectBooleanCheckbox,Id: _idJsp12]
    }The HtmlSelectBooleanCheckbox in the 'footer' expects a Boolean value. Otherwise you need to supply a Converter to convert between the object type used and the Boolean type.

  • When trying toedit a text message on my iphone5 the edit bubble will pop up but it is no responsive for about thirty seconds before it will respond to the key functions. It just lags behind. Has anyone else had this problem and if so is there a fix?

    When trying to edit a text message on my iphone5 the edit bubble will pop up but it is non responsive for about thirty seconds before it will respond to the key functions. It just lags behind. Has anyone else had this problem and if so is there a fix?

    I rarely record automation, and when I do I never do a second pass (usually hand draw automation in) but I have had problems with Logic 7 no longer playing back automation. I've been told its fixed in Logic 8, but in the mean time here is a work around.
    Select the region where the automation is (if there is no region, create one using the pencil tool and expand it to cover all automation) and go OPTIONS menu -> TRACK AUTOMATION -> "Move current track data to region data." Now everything should play back as expected. If you want to edit the data, simply select "move current region data to track data" and edit away.
    For some reason, Logic 7 will sometimes stop reading track automation data, but I have yet to have it stop reading region automation. This is a bug, and according to other users, has been fixed in Logic 8. Hope this helps until we eventually upgrade

  • I've recently upgraded to Lightroom5.7.1 and now when I try to import photos a window pops up saying 'the photos can't be imported 'cos the files can't be read'. I had no problems before upgrading. I have Windows8 & can't find any 'app' which sets the typ

    I've recently upgraded to Lightroom5.7.1 and now when I try to import photos a window pops up saying 'the photos can't be imported 'cos the files can't be read'. I had no problems before upgrading. I have Windows8 & can't find any 'app' which sets the type of files I can import. Any help appreciated.

    Well, think about it. This is a Lightroom forum. We are here to answer questions about Lightroom and how to solve problems in Lightroom. Your permissions issue is an operating system issue, not a Lightroom issue. I didn't mean to be sarcastic. But there are plenty of Internet resources that will answer that question.
    I just went to Google and typed in "change disk permissions", and there are links for the Mac as well as for Windows listed. There's no sense in me rewriting instructions that are already available.

  • I bought an Apple TV and used its yesterdary all the day...when I rented a film, its spend about 4 hours to charge... I think it isn't normal... Did Apple had some problem in their network yesterday? Do you have some clue to me? Tks and Rgds

    I bought an Apple TV and used its yesterdary all the day...when I rented a film, its spend about 4 hours to charge... I think it isn't normal... Did Apple had some problem in their network yesterday? Do you have some clue to me? Tks and Rgds

    Download time is mostly related to your internet connection speed.  Beside, there's no need to wait for the entire movie to download before you start watching it; only some buffer needs to be downloaded.  When the buffer is filled, you should get a message that your rented movie can now be watched which usually happen within a minute of the purchase on standard cable connection.

  • Hi I have a MacBook Pro 2011 i7 and it stays on for about 4 hours then the screen go's fuzzy and I have to turn it off by the power button has anyone had this problem thanks mike

    I Have a MacBook Pro i7 2011 it stays on for about 4 hours then the screen go's all fuzzy and I have to turn it off by the power button has any body else had this problem thanks mike

    My guess would also be a failling connection between your logicboard and your GPU. See 2011 MacBook Pro and Discrete Graphics Card
    For most users it starts with some random crashes and freezes like you describe it. And then it just gets worse and worse. There are still no "good" solutions, sadly. This is a hardware problem from the production.

  • I've had a problem with syncing itunes, when i sync it dosent sync songs previously deleted it just greys them out, which is great but if i want to add a new video or song from my computer it wont sync it will just grey out and wont play. now all my songs

    ive had a problem syncing with itunes recently. when i delete a song on my iphone when i sync with my computer it still syncs but just greys out and is rendered useless. thats great unless i when i want to add new music or videos from my pc to my iphone it wont sync and will just grey out. i looked for solutions and one said that deleteing all your music from the usage in settings would fix it, well now when i sync all of my music is greyed out. ive tried adding all of my songs manually into my ipod instead of syncing entire library and nothing. (also when i select to sync music nothing shows up in the usage bar (normally 3 gigs)  might help) could someone please help?

    I had major issues with the iPhone 4s battery, however it’s resolved.
    The tech who set the phone up at the Apple store did so with little training.
    if you have a mobile me account. First go and move all your data to the cloud by going on your computer and logging in at me.com/move. The cloud has replaced mobile me, so there is no need for those two accounts
    Also make sure that for any of your email accounts you set them up to fetch, not push. My tech person set them all to have the email servers push data to the phone. The new iphone4s antenna is extremely strong so it will continually try to access stuff that is pushed–***** a lot of battery life doing this. It makes it worse if you have exchange 2010 accounts. Something about changes made to exchange really suck battery life from devices that access such accounts.
    turning of locator and the push notifications from facebook--they have a lot!

  • I  spend good money for my iPhone i have the iPhone 5 with the new charger slot which is smaller. I have been through at least 3 charging cords and this is not acceptable to me. i never had a problem with this on my older phone. apple needs to correct tho

    I  spend good money for my iPhone i have the iPhone 5 with the new charger slot which is smaller. I have been through at least 3 charging cords and this is not acceptable to me. i never had a problem with this on my older phone. apple needs to correct this and reimburse me for this cord.

    Charging cords are covered by the iPhone warranty or their own warranty
    if puchased separately. Take your iPhone and the cords to your local
    Apple store for evaluation and possible replacement.

  • TS3276 I have recently had a problem with one of my hotmail accounts, some sort of virus sending random emails to people in my address book. Hotmail advised me to change my password for that account, which I did. Why won't mail recognise the new password?

    I have recently had a problem with one of my hotmail accounts, some sort of virus sending random emails from my address book. Hotmail advised me to delete all contacts and change the password for that account, which I did on my laptop running windows XP. The change was successful and I was able to send and receive emails with no problem. I then had to change the account password on my iPhone 4s, which I did and it too was successful but when I came to change the password on my iMac, running the latest version of Lion it would not recognise the new password. I have tried to remove the account details and re-install but every time I go to add new account my old details are in the box. This is very frustrating as I use my iMac for all my profects and I need to access my email. Please help.

    hi guys,
    I had already deleted all reference to the hotmail account in question from the keychain access app, I have also tried to delete and re-instal the account details from within mail. The icon in the side bar dissapears but when I go to Add Account, the old account details are in the new account box. I then input my new password but am told that the server does not recognise it. If I access hotmail via google on the iMac I can get into my account with no problems. I am thinking there must be some other form of security system within the mac software that is blocking the new password. This is driving me nuts. I have been trying to resolve this for the last two days. Thank you for your advise anyway.

  • TS1702 When I backed up my ipad because I thought I had a problem with it in which I didnt, I went to restore my ipad and now some of my app that I had purchased are not there, the free version is on my Ipad and Icloud but not the purchased version?

    I thought I had a problem with my Ipad in which I didnt, so I backed up my Ipad and restored it, but now Some of my apps that I have purchased are not available only the free version, not the purchased version. I would have to purchase again and it is not backed up into my Icloud either ?

    I assume that you will have to set up as new since it will not let you restore from the backup. Then after you set it up, you can restore from the iCloud backup. The backup should not disappear be use you are setting this device up as new. Your backup should still be in iCloud.
    However, after you activate the iPd and update the software, you will have to erase the device in order to restore from the Cloud backup, that is the only way to get to the iCloud backup.
    Copied from the article that linked you to this discussion ....
    Resolution
    Update your device to the latest version of iOS to be able to restore the backup.

  • I never had this problem before but all of a sudden when I go to "edit" a photo the photo turns black.  All the editing functions appear but I cannot see any picture.  When I hit "done" the photo reappears. Why can I no longer see my photo for editing pu

    For years I have had no problems editing photos.  However, for some reason when I go to "edit" my photo the photo turns BLACK/BLANK.  The editing functions appear but I cannot see the photo.  When I select "done" the photo reappears.  Why is the photo disappearing for editing?  Have I hit a command accidentally that is causing this?  Really appreciate someone's assistance.

    Try the following:
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - Run  Option #1, Repair Permissions, followed by Option #4, Rebuild Database, if needed.
    OT

  • I have purchased two audiobooks from iTunes. They play perfectly for about 13 minutes and then abruptly stop. I have purchased other audiobooks and have not had a problem. Please, any ideas on why this is happening and what can I do to fix it.  Thanks!

    I have purchased two audiobooks from iTunes. They play perfectly for about 13 minutes and then abruptly stop. I have purchased other audiobooks and have not had a problem. Please, any ideas on why this is happening and what can I do to fix it.  Thanks!

    As long as you use your computer like King Penguin stated for Report a Problem, you should be fine. If you can't get to your computer, are not using your computer, or your computer is not longer in the mix since you have been using your iPad, email iTunes support about the problem.
    http://www.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • Displaying of 2 records in a single line in report

    Hi Experts,                   I have PO item data and PO schedule line items being stored in a Cube. I developed  a report which  is a combination of fields from both the datasources. so i am getting 2 records for the same line item Of a purchase ord

  • IBooks author 2.1 available in Canada?

    I just uploaded a completed book (IBA 2.0) to Apple's site, but they told me the book needs to be in IBA 2.1. However, this software download doesn't seem to be available in Canada?

  • Adobe Premiere Pro Help | Adjustment Layers (CS6)

    This question was posted in response to the following article: http://helpx.adobe.com/premiere-pro/using/help-tutorials-adjustment-layers.html

  • Premiere pro cc Audio Syncing?

    Hello Im trying to sync audio from ex3 and canon 60 d footage. For the first tim I tried to use the new audio sync in CC. I highlighted all the tracks on the timeline and right clicked, "but" sycronise was greayed out? Any Ideas? Kind regards Philip

  • Porque no veo bn la pantalla de mi ordenador?

    estaba trabajando con el adobe premiere cs5 para mac y resulta que con un proyecto a medio exportar me levante al servicio y la pantalla se encontraba como se veia antiguamente el canal + codificado