Illegal target or branch

The beutiful error message below appears when the servlet is about to run. I
          have found some information about it in the java.sun page but it only tells
          that this happens when you have a big nested while loop into the servlet
          service method. It seems that java 1.2 is responsible for this bug, it get
          confused when trying to compile this servlet. Another interesting thing is
          that if I remove some lines anywhere in the source it compiles and runs
          correctly. But I cannot do this, so I moved this lines to a method in a
          class and I invoke them into the servlet, and the method returns me a big
          string buffer with the HTML source to be flushed by the servlet (It means
          that you get messed when you have to maintain the HTML souce). If anyone
          could suggest me other solution than this one I've found I would be
          thankful. PS. don't tell me to change the jdk1.2 to 1.3, It would take a lot
          of time and money for the project I'm working with.
          Fri Mar 09 14:56:21 GMT-03:00 2001:<E> <ServletContext-General> Servlet
          failed with Exception
          java.lang.VerifyError: (class: servlets/jsp/_auction/_editbid, method:
          _jspService signature:
          (Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletRespo
          nse;)V) Illegal target of jump or branch
          at java.lang.Class.newInstance0(Native Method)
          at java.lang.Class.newInstance0(Compiled Code)
          at java.lang.Class.newInstance(Compiled Code)
          at weblogic.servlet.internal.ServletStubImpl.createServlet(Compiled
          Code)
          at
          weblogic.servlet.internal.ServletStubImpl.createInstances(Compiled Code)
          at weblogic.servlet.internal.ServletStubImpl.prepareServlet(Compiled
          Code)
          at weblogic.servlet.jsp.JspStub.prepareServlet(Compiled Code)
          at weblogic.servlet.internal.ServletStubImpl.getServlet(Compiled
          Code)
          at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled
          Code)
          at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled
          Code)
          at weblogic.servlet.internal.RequestDispatcherImpl.forward(Compiled
          Code)
          at weblogic.servlet.jsp.PageContextImpl.forward(Compiled Code)
          at servlets.jsp._auction._editbid_process._jspService(Compiled Code)
          at com.promon.bidare.PageCommon.service(Compiled Code)
          at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled
          Code)
          at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled
          Code)
          at
          weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code)
          at
          weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code)
          at
          weblogic.servlet.internal.ServletContextManager.invokeServlet(Compiled Code)
          at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
          at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
          at weblogic.kernel.ExecuteThread.run(Compiled Code)
          Fri Mar 09 14:56:21 GMT-03:00 2001:<I> <ServletContext-General>
          servletimages: init
          José Compadre Junior
          Developer
          [email protected]
          [email protected]
          

          This is not a bug, it is part of the Java specification. Changing
          versions of Java will not help.
          The only solution is to make the method shorter.
          Mike
          "José Compadre Junior" <[email protected]> wrote:
          >The beutiful error message below appears when the servlet
          >is about to run. I
          >have found some information about it in the java.sun page
          >but it only tells
          >that this happens when you have a big nested while loop
          >into the servlet
          >service method. It seems that java 1.2 is responsible
          >for this bug, it get
          >confused when trying to compile this servlet. Another
          >interesting thing is
          >that if I remove some lines anywhere in the source it
          >compiles and runs
          >correctly. But I cannot do this, so I moved this lines
          >to a method in a
          >class and I invoke them into the servlet, and the method
          >returns me a big
          >string buffer with the HTML source to be flushed by the
          >servlet (It means
          >that you get messed when you have to maintain the HTML
          >souce). If anyone
          >could suggest me other solution than this one I've found
          >I would be
          >thankful. PS. don't tell me to change the jdk1.2 to 1.3,
          >It would take a lot
          >of time and money for the project I'm working with.
          >
          >
          >Fri Mar 09 14:56:21 GMT-03:00 2001:<E> <ServletContext-General>
          >Servlet
          >failed with Exception
          >java.lang.VerifyError: (class: servlets/jsp/_auction/_editbid,
          >method:
          >_jspService signature:
          >(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletRespo
          >nse;)V) Illegal target of jump or branch
          > at java.lang.Class.newInstance0(Native Method)
          > at java.lang.Class.newInstance0(Compiled Code)
          > at java.lang.Class.newInstance(Compiled Code)
          > at weblogic.servlet.internal.ServletStubImpl.createServlet(Compiled
          >Code)
          > at
          >weblogic.servlet.internal.ServletStubImpl.createInstances(Compiled
          >Code)
          > at weblogic.servlet.internal.ServletStubImpl.prepareServlet(Compiled
          >Code)
          > at weblogic.servlet.jsp.JspStub.prepareServlet(Compiled
          >Code)
          > at weblogic.servlet.internal.ServletStubImpl.getServlet(Compiled
          >Code)
          > at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled
          >Code)
          > at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled
          >Code)
          > at weblogic.servlet.internal.RequestDispatcherImpl.forward(Compiled
          >Code)
          > at weblogic.servlet.jsp.PageContextImpl.forward(Compiled
          >Code)
          > at servlets.jsp._auction._editbid_process._jspService(Compiled
          >Code)
          > at com.promon.bidare.PageCommon.service(Compiled
          >Code)
          > at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled
          >Code)
          > at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled
          >Code)
          > at
          >weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled
          >Code)
          > at
          >weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled
          >Code)
          > at
          >weblogic.servlet.internal.ServletContextManager.invokeServlet(Compiled
          >Code)
          > at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled
          >Code)
          > at weblogic.socket.MuxableSocketHTTP.execute(Compiled
          >Code)
          > at weblogic.kernel.ExecuteThread.run(Compiled
          >Code)
          >
          >Fri Mar 09 14:56:21 GMT-03:00 2001:<I> <ServletContext-General>
          >servletimages: init
          >
          >
          >José Compadre Junior
          >Developer
          >[email protected]
          >[email protected]
          >
          >
          

Similar Messages

  • How are attributes and texts for a master data linked and targeted to ...?

    Our previous consultants used to load data to master data 0MATL_GROUP. 
    1. RSA1 -> InfoProvider -> Select 0MATL_GROUP or 0MATL_GROUP___T
    Check these above two and find the records loaded are both 1,216 for Language EN.
    We check the data flow of this master data (0MATL_GROUP or 0MATL_GROUP___T) and find there are four branches which target 0MATL_GROUP:
    branch 1: 0MATL_GROUP is itself an InfoSource and the datasource is 0PROD_CATEG_R3_MAP_ATTR.  However under this datasource, there is no any InfoPackage, i.e., the system doesn't load data to 0MATL_GROUP through this branch.
    branch 2: Through InfoSource 0MATERIAL_ATTR.  However the InfoPackage under this InfoSource target data load to 0MATERIAL but not 0MATL_GROUP, i.e., the system doesn't load data to 0MATL_GROUP through this branch.
    branch 3: Through InfoSource ZMATL_GROUP_ATTR and it's corresponding datasource Z_MAT_GROUP_ATTR.  InfoPackage monitor shows the data load record for this datasource is 490 (Run RSA3 on R3 for this datasource also gives the same record count).
    branch 4: Through InfoSource 0MATL_GROUP_TEXT and it's corresponding datasource has the same name. InfoPackage monitor shows the data load record for this datasource is 1190 for Language EN (RSA3 on R3 for this datasource gives the same count for language EN).
    2. InfoObj. 0MATL_GROUP
    1). Master data tab (/BI0/PMATL_GROUP): 526
    2). Text table (/BI0/TMATL_GROUP):
    1657 (includes both EN and other lan-guages), for EN: 1190.
    3. Check R3 Table T023T (Material Group Descrip-tions) for EN: 1190.
    Our questions are:
    1. The InfoProvider 0MATL_GROUP and 0MATL_GROUP___T
    both have counts of 1,216 for Language EN.  And for the four branches in the data flow, only 3rd and 4th branches feed data to it.  3rd branch (datasource Z_MAT_GROUP_ATTR) feed count is 490 and 4th branch (datasource 0MATL_GROUP_TEXT) feed count is 1190 for Language EN. We wonder how attribute and text data are corelated to each other and with it's master data.  Obviously 1,216 is not equal to the sum of 1190 and 490, the how 1190 (text) and 490 (attribute) constitute the master data count 1,216?
    2. Do we have to use 1st and 2nd branches to feed data to 0MATL_GROUP?
    3. How InfoObj. 0MATL_GROUP Master data tab (/BI0/PMATL_GROUP) shows the count is 526?  it should be 490 from the custom datasource Z_MAT_GROUP_ATTR, right? But why the count is different?
    We would be appreciated any expert input!

    Kevin,
    can you check the data in Material Group charecterstic againest R/3. One moe thing check how these 4 branches Mapped to material Group?
    Take the for Attributes it should be 490. it is 525. try to analyse what are the extra records comparing with Source. take the you found so and so meterial group extra then analyze from where is it getting extracted to BW i mean which DS.. (either branch 1 or brach 2 or branch 3 or 4). then check in R/3 side DS for the 4 branches. then you will know what exactly happening.
    Analyze the data from step by step from r/3 to BW for each level. You will get clue.
    Nagesh.
    Message was edited by: Nagesh Ganisetti

  • Problem with jikes & EJB

    I've been experiencing a problem using jikes to compile EJBs. Has anyone
    has this type of problem and is there a known fix?
    The beans seem to compile fine, but I get an error when trying to deploy
    them. Here's the error:
    weblogic.ejb.common.DeploymentException: Unexpected I/O exception during
    deployment:
    weblogic.ejb.common.DeploymentException: Problem deploying a bean:
    java.lang.VerifyError: (class:
    com/criatech/contractstation/party/provider/PartyManagerBeanEOImpl_ServiceSt
    ub, method: ensureInitialized signature: ()V) Illegal target of jump or
    branch
    at java.lang.Class.getConstructor0(Native Method)
    at java.lang.Class.getConstructor(Class.java:886)
    Thoughts?
    - Doug

    That seems to be the problem. It only happens on one bean which is a very
    large one. It appears to work ok with the javac 1.3 compiler, but no luck
    with jikes. It's unfortunate, because jikes is SO much faster.
    At least I know someone else is seeing this problem. Thanks for the info.
    - Doug
    "Toby Allsopp" <[email protected]> wrote in message
    news:[email protected]..
    Hi.
    This sounds a bit like a problem we were having when compiling one of the
    generated classes for a bean with a huge number of methods (~400). The
    ensureInitialised method (I think, it might be a different method now -the
    name of the class changes in every WLS version) got so big that some ofthe
    jump instructions needed to become wide jump instructions but both javacand
    jikes got it wrong.
    For us, the workaround was (and still is) to use kjc(http://www.dms.at/kopi/)
    to compile the generated classes.
    This may or may not be your problem, however.
    Toby.
    Doug Cunningham wrote:
    I've been experiencing a problem using jikes to compile EJBs. Has
    anyone
    has this type of problem and is there a known fix?
    The beans seem to compile fine, but I get an error when trying to deploy
    them. Here's the error:
    weblogic.ejb.common.DeploymentException: Unexpected I/O exception during
    deployment:
    weblogic.ejb.common.DeploymentException: Problem deploying a bean:
    java.lang.VerifyError: (class:
    com/criatech/contractstation/party/provider/PartyManagerBeanEOImpl_ServiceSt
    ub, method: ensureInitialized signature: ()V) Illegal target of jump or
    branch
    at java.lang.Class.getConstructor0(Native Method)
    at java.lang.Class.getConstructor(Class.java:886)
    Thoughts?
    - Doug

  • VM crashes with big class files generated of JSPs

              Hi,
              When calling certain JSP pages with WebLogic Server 5.1 (SP 6) the HotSpot Virtual Machine (JDK1.3) crashes with a core dump.
              Using WebLogic as the JSP engine produces of every JSP page one java file which
              is compiled with javac to one class file. Each generated java file consists of
              just one method: _jspService(...){...}. One method is allowed to be of 64 K
              (the dynamic part 32 K as maximum). As we include other JSP pages and
              components and use taglibraries, the WebLogic JSP engine generates a very big
              java file (more than 1 MB). Javac compiles this to a class file which only
              method exceeds the 64 K limit. As the javac compiler does not reject the class
              file with the to big method the virtual machine crashes.
              Running the same JSP page on Windows NT 4 with WebLogic Server 5.1 (Service Pack 6)
              and JDK 1.3 BUT using the java option -classic works.
              Unfortunately it seems that there is no -classic option for java on Solaris for JDK1.3.
              Using JDK1.2 (JDK_1.2.2_05a) on Solaris or the jikes compiler of Jakarta
              causes an exception instead of a core dump but still does not work.
              Using solaris jdk1.2.2_05a the same page request results in the following exception:
              Tue Nov 21 09:08:16 CET 2000:<I> <WebAppServletContext-maxblue> Generated java file:
              /opt/tadevw/maxblue/weblogic/maxblue_cluster/maxblue_server/public_html/WEB-INF/_tmp_war/jsp_servlet/_portfolio/_PortfolioMyportfolio.java
              Tue Nov 21 09:08:24 CET 2000:<E> <WebAppServletContext-maxblue> Servlet failed with Exception
              java.lang.VerifyError: (class: jsp_servlet/_portfolio/_PortfolioMyportfolio, method:
              _jspService signature: (Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V) Illegal target of jump or branch
              Is there a way that the JSP engine of WebLogic creates/generates
              more than one function? (Without reengineering of the source code?)
              Regards,
              Boris
              

    Thank you! I had no idea. But what is a FAT32 drive? Is it the work bench in the Mac, that is used for the transfering between the external hard drives? Is there any way around this then?
    I thought in these HD home movie days, that this was an easy thing dealt with everyday. I still need to understand what practical solutions I can find. The files are .mov - quicktime files.
    It couldn't be the case that files larger than 4BG should be locked in the hard drive forever?
    Sverre

  • JSP generates VerifyError

    I have a JSP page that is generating a VerifyError and the only explanation it gives is: "Illegal target of jump or branch".
    From what I could gather, the problem is the size of the page, because if I remove some <jbo:> tags, it doesn't matter which, it works.
    Is there a limit on the size of a JSP? If not, is there a way to pinpoint the source of this VerifyError (the error page doesn't say which line generated the error)?
    Thanks,
    Giovanni Vajna de Pava

    This has been reported internally as bug 2386238. The cause of the VerifyError is that a large JSP results in the generation of page implementation class files that are too large, and the Java VM's class verifier ends up finding an internal inconsistency in the class file even though the class file structure is itself well-formed (as defined by JVM spec).
    The customer reporting bug 2386238 was able to work-around the issue by decomposing the one large JSP into a number of smaller JSPs and static HTML files. The following link has a discussion on how to do this:
    http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/java.920/a96657/keydev.htm#1014150
    At the end of the "Workarounds for Large Static Content in JSP Pages" section, there is a discussion on how JVMs have a 64k limit on the size of an individual method, which seems to be what is causing the VerifyError in your case.

  • Ask a error message

    1. This error message is to appear in oracle 9iAS and OC4J, But it's ok in embedded oc4j server of Jdeveloper.
    2. I'm use to master to multi-detail with same page in table.
    This error message such as :
    500 Internal Server Error
    OracleJSP:
    JSP Error:
    Request URI:/Ehrpemp/jsp/HrEmpPosBasGroupPage.jsp
    Exception:
    java.lang.VerifyError: (class: jsp/HrEmpPosBasGroupPage, method: _jspService signature: (Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V) Illegal target of jump or branch                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

    Hmm, this error usually indicates some corrupted class.
    You can find in JavaTM 2 Platform API Specification:
    public class VerifyError extends LinkageError
    Thrown when the "verifier" detects that a class file, though well formed, contains some sort of internal inconsistency or security problem.
    Since it works OK in embedded oc4j it is probably a configuration issue where a set of uncompatible libraries is used.
    Which OC4J version are you using?
    When running in 9iAS, did you comment out the global libraries in application.xml, as described in chapter 8 Deployment of the JHeadstart Developer's Guide?
    Steven Davelaar,
    JHeadstart Team.

  • Internal table in BI7

    Hi,
    Can some send steps to create internal table and steps for filling the table in BI7?
    Thanks and Regards,
    Pooja

    Hi Pooja,
    The IT_TEST is the internla table and WA_TEST is work area here.
    Pl go thru the Below Code.I am trying to populate Branch from Customer Table.
    $$ begin of global - insert your declaration only below this line  -
      TYPES : BEGIN OF TY_CUSTOMER,
                   /BIC/CUSTOMER TYPE /BIC/CUSTOMER-/BIC/CUSTOMER,
                   /BIC/BRANCH  TYPE /BIC/CUSTOMER-/BIC/BRANCH,
                END OF TY_CUSTOMER.
       DATA  :   IT_TEST    TYPE STANDARD TABLE OF TY_CUSTOMER,
                 WA_TEST    TYPE TY_CUSTOMER.
    $$ begin of routine - insert your code only below this line        *-
    Start Routines
        IF SOURCE_PACKAGE[] IS NOT INITIAL.
          SELECT     /BIC/BRANCH
                     INTO CORRESPONDING FIELDS OF TABLE IT_TEST
                      FROM u201CMaster Tableu201D
                      FOR ALL ENTRIES IN SOURCE_PACKAGE
                      WHERE /BIC/CUSTOMER = SOURCE_PACKAGE-/BIC/CUSTOMER AND
                      OBJVERS  = C_A.
        ENDIF.
        IF NOT IT_TEST IS INITIAL.
          SORT IT_TEST BY /BIC/CUSTOMER.
        ENDIF.
    Transfer ROutine
    Source Field = Customer
    Target Field = Branch
        READ TABLE IT_TEST INTO WA_TEST WITH KEY /BIC/CUSTOMER(Field) =
        SOURCE_FIELDS-/BIC/CUSTOMER
        BINARY SEARCH.
        IF SY-SUBRC = 0.
          RESULT = WA_TEST-/BIC/BRANCH.
        ENDIF.
    Rgds
    SVU

  • Error message while executing a SWF File

    Hi All,
    Iam trying to execute a SWF file which has its actionscript
    written in AS3. When i execute this, I am getting an error message
    which is as follows
    Verify Error 1030# Stack Depth unbalanced 1 != 0.
    Can anyone tell me what could be the root cause?
    Thanks in advance,
    Prabakaran Srinivasan.

    Hi All,
    I am able to find the root cause for this. For AS 3 classes,
    while parsing the ABC code, every method body will be a set of
    instructions in which each instruction will have an offset to it.
    This offset will be useful to mark the target for branching
    instructions like if, while etc.... Because, these instructions
    contains targetoffset as a parameter to which the instruction has
    to jump when the condition becomes true or false. The process what
    i am doing is i do some code injection to replace the URLRequest
    calls. The flash file in which i got this error, i did replace the
    URLRequest call to my own method call and this code was being
    wrapped up by an IF block. Because of the code injection, i need to
    update the offset of the instructions with the difference offset
    value. I did this, but i missed the jumpoffset parameter of the if
    block wrapping my injected code which was the root cause. I did fix
    this...
    Thanks,
    Prabakaran Srinivasan.

  • ** Is it possible to skip messages with error in BPM and continue next msg

    Hi Friends,
    I am doing File to File BPM scenario. My Source XML is like as below.
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Employee xmlns:ns0="http://www.test.com/XITEST/FileToFile/BPM">
       <Details>
          <EmpCode>10010</EmpCode>
          <EmpName>Jeg</EmpName>
          <***>M</***>
          <BasicPay>5000</BasicPay>
       </Details>
       <Details>
          <EmpCode>10011</EmpCode>
          <EmpName>Praksh</EmpName>
          <***>M</***>
          <BasicPay>4500</BasicPay>
       </Details>
       <Details>
          <EmpCode>10012</EmpCode>
          <EmpName>Nithya</EmpName>
          <***>F</***>
          <BasicPay>4300</BasicPay>
       </Details>
       <Details>
          <EmpCode>10013</EmpCode>
          <EmpName>Sunil</EmpName>
          <***>F</***>
          <BasicPay>4800</BasicPay>
       </Details>
       <Details>
          <EmpCode>10014</EmpCode>
          <EmpName>Abdul</EmpName>
          <***>M</***>
          <BasicPay>4750</BasicPay>
       </Details>
       <Details>
          <EmpCode>10015</EmpCode>
          <EmpName>Sathya</EmpName>
          <***>F</***>
          <BasicPay>4250</BasicPay>
       </Details>
       <Details>
          <EmpCode>10016</EmpCode>
          <EmpName>Rams</EmpName>
          <***>M</***>
          <BasicPay>8000</BasicPay>
       </Details>
    </ns0:Employee>
    If you look at the above message, the 3rd & 6th employee are female. In the BPM design,  we use
    a) 'Transformation' step, to split the messages (1:n).
    b) Block Step (Mode : For Each) to process one by one message
    c) in the Container Step, thru XPath expression we created one variable and assign '***' to that variable
    d) In the Switch step we check whether variable is 'F' (Female). If it is there we insert control step to throw exception. (But, exception Branch is not added to catch the exception. The reason is that to restart the BPM)
    e) If the *** is 'M' we insert Send Step to send the employee to the output file.
    Note that if we insert exception handler branch, the BPM will tell this is completed. So, we are not able to restart those records (*** = 'F') after correct ***. Once the BPM is completed, that work item will not come in tcode 'Continue Process Following Error' option in tcode SXMB_MONI_BPE
    Requirement is whenever the BPM encounters *** = 'F', it  should throw an error and the same time BPM should not stop and continue with the next records.
    Friends, we tried all the ways thru 'Queue Assignment' property of the BPM and made settings thru tcode SWF_INB_CONF. But, we are not able to achive this requirmenent.
    'Restart possibilitye of the BPM for the error record and the same time should process the remaining correct records'. 
    Any idea friends, to solve this issue.
    Kindly Reply,
    Jeg P.

    Use one more Receiver Abstract interface for this and do the message and interface mapping .
    Collecting :
    If ur record is female (u r checking this in swich step) ,  pass tht record to intreface mapping (use one branch here to collect the message).
    Else you send that message to the target(else branch)
    After that use one block for collecting messages and throw the exception for each record......

  • Opening the link in the same window in WAD

    Hi,
    I have a view when I run it dispalys th data in the same view I have link when I click on the link it should own in the same window instead of opening it in the new window ,how can this be done in WAD3.5
    Regards,
    Priya

    Priya,
    This opens up another template in the same IE session for us:
    "<SAP_BW_URL CMD='CHANGE_TEMPLATE' TEMPLATE_ID='Ztrad_Ww005'>">Cash Targets by Branch"
    Note: Start the link with <Ahref="   .... and end with </A>.  When I put these into the link all you see is the Cash Targets text.
    Regards
    Gill

  • Invalid Cursor Error

    I have a table called cdd_merge_children where the comments field contains the following SQL.
    SELECT EVENT_ID FROM EVENT WHERE ACCOUNT_ID = :ACCOUNT_NO
    In my procedure I am doing the following:
    --get the comments from the cdd_merge_children table where CDD_MERGE_CHILDREN_TYPE
    --is of type 3. type 3 are a replica of type 2's for audit/history purposes 
    SELECT DISTINCT COMMENTS
    INTO ls_comments
    FROM CDD_MERGE_CHILDREN
    where table_name = ps_tablename
    and CDD_MERGE_CHILDREN_TYPE = 3 ;
    --get the comments from the table and execute the dynamic sql using the looser.
    OPEN col_cv FOR ls_comments USING gvloosingaccount ;
    --dump the curosr values in the table
    FETCH col_cv BULK COLLECT INTO loosingvals ;
    For some reason or the other when I try doing the fetch I am getting invalid cursor or ORA-01001: invalid cursor error. WHY WHY
    Please help !

    You cannot bulk-fetch from a cursor into a collection of records, you can only bulk-fetch from a cursor into one or
    more collections:
    DECLARE
    TYPE NameList IS TABLE OF emp.ename%TYPE;
    TYPE SalList IS TABLE OF emp.sal%TYPE;
    CURSOR c1 IS SELECT ename, sal FROM emp WHERE sal > 1000;
    names NameList;
    sals SalList;
    BEGIN
    OPEN c1;
    FETCH c1 BULK COLLECT INTO names, sals;
    END;
    You cannot however,
    DECLARE
    TYPE NameList IS TABLE OF emp.ename%TYPE;
    names NameList;
    salary emp.sal%TYPE;
    TYPE DeptRecTab IS TABLE OF dept%ROWTYPE;
    dept_recs DeptRecTab;
    CURSOR c1 IS
    SELECT deptno, dname, loc FROM dept WHERE deptno > 10;
    BEGIN
    SELECT ename, sal BULK COLLECT INTO names, salary; -- illegal target
    BEGIN
    OPEN c1;
    FETCH c1 BULK COLLECT INTO dept_recs; -- illegal
    END;
    Ok I have a table called cdd_merge_children which has a column called comments. In this column I am storing dynamic SQL such as
    SELECT EVENT_ID FROM EVENT WHERE ACCOUNT_ID = :ACCOUNT_NO
    Now in my code I retrieve this SQL statement and use it as follows:
    --get the comments from the table and execute the dynamic sql using the looser.
    OPEN col_cv FOR ls_comments USING gvloosingaccount ;
    --col_cv is a reference cursor BTW
    --dump the curosr values in the table
    FETCH col_cv BULK COLLECT INTO loosingvals ;
    Ok at this fetch is where I am getting the following error
    ORA-01001: invalid cursor
    Why ? Anyhelp would be great
    Thank's
    Sameer Handa

  • Verify Error 1030# Stack Depth unbalanced 1 != 0.

    Hi,
    Iam trying to inject some code into the SWF File using an
    opensource Java Framework. My code is getting injected correctly. I
    saw this, when i tried to decompile the SWF file into which i
    injected the code. But there is something that needs to be handled
    when it comes to handling the instruction sets available inside the
    method where i injected the code. I just wanted to know what that 1
    and 0 points to, in the below given error message.
    Verify Error 1030# Stack Depth unbalanced 1 != 0.
    If somebody can help me out in making me understand the 1 and
    0 in the error message, i can further proceed to correct the
    mistake that i have done.
    Thanks,
    Prabakaran Srinivasan.

    Hi All,
    I am able to find the root cause for this. For AS 3 classes,
    while parsing the ABC code, every method body will be a set of
    instructions in which each instruction will have an offset to it.
    This offset will be useful to mark the target for branching
    instructions like if, while etc.... Because, these instructions
    contains targetoffset as a parameter to which the instruction has
    to jump when the condition becomes true or false. The process what
    i am doing is i do some code injection to replace the URLRequest
    calls. The flash file in which i got this error, i did replace the
    URLRequest call to my own method call and this code was being
    wrapped up by an IF block. Because of the code injection, i need to
    update the offset of the instructions with the difference offset
    value. I did this, but i missed the jumpoffset parameter of the if
    block wrapping my injected code which was the root cause. I did fix
    this...
    Thanks,
    Prabakaran Srinivasan.

  • How to specify target="_parent" in a branch

    I want to use a branch to navigate to a page which is being called through an iframe. I need to specify the target of the branch is parent so it will open in the parent window and not the iframe.  Does anyone know how to specify the parent on a branch?

    Did you find a solution to your problem?
    I'm having a similar problem.
    Thanks
    Max

  • Branch target offset too large for short

    Error :
    I am getting the error "Branch target offset too large for
    short" in coldfusion.
    What we are trying to do?
    We are concatenating large numbers of text. We where building
    a lengthly string. We ended up using mutliple variables and
    appending them together at the end to get it to work.
    Appending the lengthy string and writing into a file.
    Just to breif you this is a survey questions and answers we
    are generating text file with tab seperated as delimeters.
    e.g.
    The string I am using is
    <cfset Questions =
    Number#TabChar#Q1#TabChar#Q2A#TabChar#Q2B#TabChar#Q2C#TabChar#Q3A#TabChar#Q3B#TabChar#Q3C #TabChar#Q3D#TabChar#Q3E#TabChar#Q3F#TabChar#Q3G#TabChar#Q4A1#TabChar#Q4A2#TabChar#Q4A3#Ta bChar#Q4A4#TabChar#Q4A5#TabChar#Q4A6#TabChar#Q4B1#TabChar#Q4B2#TabChar#Q4B#TabChar#Q4B4#Ta bChar#Q4B5#TabChar#Q4B6#TabChar#Q4C1#TabChar#Q4C2#TabChar#Q4C3#TabChar#Q4C4#TabChar#Q4C5#T abChar#Q4C6#TabChar#Q4D1#TabChar#Q4D2#TabChar#Q4D3#TabChar#Q4D4#TabChar#Q4D5#TabChar#Q4D6# TabChar#Q4E1#TabChar#Q4E2#TabChar#Q4E3#TabChar#Q4E4#TabChar#Q4E5#TabChar#Q4E6#TabChar#Q4F1 #TabChar#Q4F2#TabChar#Q4F3#TabChar#Q4F4#TabChar#Q4F5#TabChar#Q4F6#TabChar#Q4G1#TabChar#Q4G 2#TabChar#Q4G3#TabChar#Q4G4#TabChar#Q4G5#TabChar#Q4G6#TabChar#Q4H1#TabChar#Q4H2#TabChar#Q4 H3#TabChar#Q4H4#TabChar#Q4H5#TabChar#Q4H6#TabChar#Q4I#TabChar#Q4J#TabChar#Q4K#TabChar#Q5A1 #TabChar#Q5A2#TabChar#Q5A3#TabChar#Q5A4#TabChar#Q5A5#TabChar#Q5A6#TabChar#Q5B1#TabChar#Q5B 2#TabChar#Q5B3#TabChar#Q5B4#TabChar#Q5B5#TabChar#Q5B6#TabChar#Q5C1#TabChar#Q5C2#TabChar#Q5 C3#TabChar#Q5C4#TabChar#Q5C5#TabChar#Q5C6#TabChar#Q5D1#TabChar#Q5D2#TabChar#Q5D3#TabChar#Q 5D4#TabChar#Q5D5#TabChar#Q5D6#TabChar#Q5E#TabChar#Q5F#TabChar#Q5G#TabChar#Q6A#TabChar#Q6B# TabChar#Q6C#TabChar#Q6E#TabChar#Q6F#TabChar#Q6G#TabChar#Q6H#TabChar#Q6I#TabChar#Q6J#TabCha r#Q6K#TabChar#Q7A1#TabChar#Q7A2#TabChar#Q7B1#TabChar#Q7B2#TabChar#Q7C#TabChar#Q7D#TabChar# Q8A#TabChar#Q8B#TabChar#Q8C#TabChar#Q8D#TabChar#Q8E#TabChar#Q8F#TabChar#Q8G#TabChar#Q8H#Ta bChar#Q9A1#TabChar#Q9A2#TabChar#Q9B1#TabChar#Q9B2#TabChar#Q9C1#TabChar#Q9C2#TabChar#Q9D1#T abChar#Q9D2#TabChar#Q9E1#TabChar#Q9E2#TabChar#Q9H1#TabChar#Q9H2#TabChar#Q9I1#TabChar#Q9I2# TabChar#Q9J1#TabChar#Q9J2#TabChar#Q9K1#TabChar#Q9K2#TabChar#Q9L1#TabChar#Q9L2#TabChar#Q9M# TabChar#Q9N#TabChar#Q9O#TabChar#Q9P#TabChar#Q9Q#TabChar#Q9R#TabChar#Q9S#TabChar#Q10A#TabCh ar#Q10B#TabChar#Q10C#TabChar#Q10E#TabChar#Q10F#TabChar#Q10G#TabChar#Q10H#TabChar#Q10I#TabC har#Q10J#TabChar#Q10K#TabChar#Q11A#TabChar#Q11B#TabChar#Q11C#TabChar#Q11D#TabChar#Q11E#Tab Char#Q11F#TabChar#Q11G#TabChar#Q11H#TabChar#Q11I#TabChar#Q11J#TabChar#Q11K#TabChar#Q11L#Ta bChar#Q11M#TabChar#Q11O#TabChar#Q11P#TabChar#Q11Q#TabChar#Q11R#TabChar#Q12A1#TabChar#Q12A2 #TabChar#Q12B1#TabChar#Q12B2#TabChar#Q12C1#TabChar#Q12C2#TabChar#Q12D1#TabChar#Q12D2#TabCh ar#Q12E#TabChar#Q12F#TabChar#Q12G#TabChar#Q12H#TabChar#Q12I#TabChar#Q12J#TabChar#Q12K#TabC har#Q12L#TabChar#Q13A1#TabChar#Q13A2#TabChar#Q13B1#TabChar#Q13B2#TabChar#Q13C1#TabChar#Q13 C2#TabChar#Q13D1#TabChar#Q13D2#TabChar#Q13E1#TabChar#Q13E2#TabChar#Q13H1#TabChar#Q13H2#Tab Char#Q13I1#TabChar#Q13I2#TabChar#Q13J1#TabChar#Q13J2#TabChar#Q13K1#TabChar#Q13K2#TabChar#Q 13L#TabChar#Q13M#TabChar#Q13N#TabChar#Q14A1#TabChar#Q14A2#TabChar#Q14B1#TabChar#Q14B2#TabC har#Q14C1#TabChar#Q14C2#TabChar#Q14D#TabChar#Q14E#TabChar#Q14F#TabChar#Q14G#TabChar#Q14H#T abChar#Q15A#TabChar#Q15B#TabChar#Q15C#TabChar#Q15D#TabChar#Q15E#TabChar#Q15F#TabChar#Q15G# TabChar#Q15H#TabChar#Q16A#TabChar#Q16B#TabChar#Q16C#TabChar#Q16D#TabChar#Q16E#TabChar#Q16F #TabChar#Q17A1#TabChar#Q17A2#TabChar#Q17A3#TabChar#Q17B#TabChar#Q17C#TabChar#Q17D#TabChar# Q17E#TabChar#Q17F#TabChar#Q17G#TabChar#Q17H#TabChar#Q18A1#TabChar#Q18A2#TabChar#Q18B1#TabC har#Q18B2#TabChar#Q18C1#TabChar#Q18C2#TabChar#Q18D1#TabChar#Q18D2#TabChar#Q18E1#TabChar#Q1 8E2#TabChar#Q18H1#TabChar#Q18H2#TabChar#Q18I1#TabChar#Q18I2#TabChar#Q18J1#TabChar#Q18J2#Ta bChar#Q18K1#TabChar#Q18K2#TabChar#Q18L1#TabChar#Q18L2#TabChar#Q18M1#TabChar#Q18M2#TabChar# Q18N1#TabChar#Q18N2#TabChar#Q18O1#TabChar#Q18O2#TabChar#Q18P1#TabChar#Q18P2#TabChar#Q18Q1# TabChar#Q18Q2#TabChar#Q18R1#TabChar#Q18R2#TabChar#Q18S1#TabChar#Q18S2#TabChar#Q18T1#TabCha r#Q18T2#TabChar#Q18U1#TabChar#Q18U2#TabChar#Q18V1#TabChar#Q18V2#TabChar#Q18W1#TabChar#Q18W 2#TabChar#Q18X1#TabChar#Q18X2#TabChar#Q18Y1#TabChar#Q18Y2#TabChar#Q18Z1#TabChar#Q18Z2#TabC har#Q18A11#TabChar#Q18A12#TabChar#Q18B11#TabChar#Q18B12#TabChar#Q18C11#TabChar#Q18C12#TabC har#Q18D11#TabChar#Q18D12#TabChar#Q18E11#TabChar#Q18E12#TabChar#Q18H11#TabChar#Q18H12#TabC har#Q18I11#TabChar#Q18I12#TabChar#Q18J11#TabChar#Q18J12#TabChar#Q18K11#TabChar#Q18K12#TabC har#Q18L11#TabChar#Q18L1Z#TabChar#Q18M11#TabChar#Q18M12#TabChar#Q18N11#TabChar#Q18N12#TabC har#Q18O11#TabChar#Q18O12#TabChar#Q18P11#TabChar#Q18P12#TabChar#Q18Q11#TabChar#Q18Q12#TabC har#Q18R11#TabChar#Q18R12#TabChar#Q18S11#TabChar#Q18S12#TabChar#Q18T11#TabChar#Q18T12#TabC har#Q18U11#TabChar#Q18U12#TabChar#Q18V11#TabChar#Q18V12#TabChar#Q18W11#TabChar#Q18W12#TabC har#Q18X11#TabChar#Q18X12#TabChar#Q18Y11#TabChar#Q18Y12#TabChar#Q18Z11#TabChar#Q18Z12#TabC har#Q18A21#TabChar#Q19A#TabChar#Q19B#TabChar#Q19C>
    <cfset answers=#Q1#q2#....>
    Can anyone please help me out?

    Error :
    I am getting the error "Branch target offset too large for
    short" in coldfusion.
    What we are trying to do?
    We are concatenating large numbers of text. We where building
    a lengthly string. We ended up using mutliple variables and
    appending them together at the end to get it to work.
    Appending the lengthy string and writing into a file.
    Just to breif you this is a survey questions and answers we
    are generating text file with tab seperated as delimeters.
    e.g.
    The string I am using is
    <cfset Questions =
    Number#TabChar#Q1#TabChar#Q2A#TabChar#Q2B#TabChar#Q2C#TabChar#Q3A#TabChar#Q3B#TabChar#Q3C #TabChar#Q3D#TabChar#Q3E#TabChar#Q3F#TabChar#Q3G#TabChar#Q4A1#TabChar#Q4A2#TabChar#Q4A3#Ta bChar#Q4A4#TabChar#Q4A5#TabChar#Q4A6#TabChar#Q4B1#TabChar#Q4B2#TabChar#Q4B#TabChar#Q4B4#Ta bChar#Q4B5#TabChar#Q4B6#TabChar#Q4C1#TabChar#Q4C2#TabChar#Q4C3#TabChar#Q4C4#TabChar#Q4C5#T abChar#Q4C6#TabChar#Q4D1#TabChar#Q4D2#TabChar#Q4D3#TabChar#Q4D4#TabChar#Q4D5#TabChar#Q4D6# TabChar#Q4E1#TabChar#Q4E2#TabChar#Q4E3#TabChar#Q4E4#TabChar#Q4E5#TabChar#Q4E6#TabChar#Q4F1 #TabChar#Q4F2#TabChar#Q4F3#TabChar#Q4F4#TabChar#Q4F5#TabChar#Q4F6#TabChar#Q4G1#TabChar#Q4G 2#TabChar#Q4G3#TabChar#Q4G4#TabChar#Q4G5#TabChar#Q4G6#TabChar#Q4H1#TabChar#Q4H2#TabChar#Q4 H3#TabChar#Q4H4#TabChar#Q4H5#TabChar#Q4H6#TabChar#Q4I#TabChar#Q4J#TabChar#Q4K#TabChar#Q5A1 #TabChar#Q5A2#TabChar#Q5A3#TabChar#Q5A4#TabChar#Q5A5#TabChar#Q5A6#TabChar#Q5B1#TabChar#Q5B 2#TabChar#Q5B3#TabChar#Q5B4#TabChar#Q5B5#TabChar#Q5B6#TabChar#Q5C1#TabChar#Q5C2#TabChar#Q5 C3#TabChar#Q5C4#TabChar#Q5C5#TabChar#Q5C6#TabChar#Q5D1#TabChar#Q5D2#TabChar#Q5D3#TabChar#Q 5D4#TabChar#Q5D5#TabChar#Q5D6#TabChar#Q5E#TabChar#Q5F#TabChar#Q5G#TabChar#Q6A#TabChar#Q6B# TabChar#Q6C#TabChar#Q6E#TabChar#Q6F#TabChar#Q6G#TabChar#Q6H#TabChar#Q6I#TabChar#Q6J#TabCha r#Q6K#TabChar#Q7A1#TabChar#Q7A2#TabChar#Q7B1#TabChar#Q7B2#TabChar#Q7C#TabChar#Q7D#TabChar# Q8A#TabChar#Q8B#TabChar#Q8C#TabChar#Q8D#TabChar#Q8E#TabChar#Q8F#TabChar#Q8G#TabChar#Q8H#Ta bChar#Q9A1#TabChar#Q9A2#TabChar#Q9B1#TabChar#Q9B2#TabChar#Q9C1#TabChar#Q9C2#TabChar#Q9D1#T abChar#Q9D2#TabChar#Q9E1#TabChar#Q9E2#TabChar#Q9H1#TabChar#Q9H2#TabChar#Q9I1#TabChar#Q9I2# TabChar#Q9J1#TabChar#Q9J2#TabChar#Q9K1#TabChar#Q9K2#TabChar#Q9L1#TabChar#Q9L2#TabChar#Q9M# TabChar#Q9N#TabChar#Q9O#TabChar#Q9P#TabChar#Q9Q#TabChar#Q9R#TabChar#Q9S#TabChar#Q10A#TabCh ar#Q10B#TabChar#Q10C#TabChar#Q10E#TabChar#Q10F#TabChar#Q10G#TabChar#Q10H#TabChar#Q10I#TabC har#Q10J#TabChar#Q10K#TabChar#Q11A#TabChar#Q11B#TabChar#Q11C#TabChar#Q11D#TabChar#Q11E#Tab Char#Q11F#TabChar#Q11G#TabChar#Q11H#TabChar#Q11I#TabChar#Q11J#TabChar#Q11K#TabChar#Q11L#Ta bChar#Q11M#TabChar#Q11O#TabChar#Q11P#TabChar#Q11Q#TabChar#Q11R#TabChar#Q12A1#TabChar#Q12A2 #TabChar#Q12B1#TabChar#Q12B2#TabChar#Q12C1#TabChar#Q12C2#TabChar#Q12D1#TabChar#Q12D2#TabCh ar#Q12E#TabChar#Q12F#TabChar#Q12G#TabChar#Q12H#TabChar#Q12I#TabChar#Q12J#TabChar#Q12K#TabC har#Q12L#TabChar#Q13A1#TabChar#Q13A2#TabChar#Q13B1#TabChar#Q13B2#TabChar#Q13C1#TabChar#Q13 C2#TabChar#Q13D1#TabChar#Q13D2#TabChar#Q13E1#TabChar#Q13E2#TabChar#Q13H1#TabChar#Q13H2#Tab Char#Q13I1#TabChar#Q13I2#TabChar#Q13J1#TabChar#Q13J2#TabChar#Q13K1#TabChar#Q13K2#TabChar#Q 13L#TabChar#Q13M#TabChar#Q13N#TabChar#Q14A1#TabChar#Q14A2#TabChar#Q14B1#TabChar#Q14B2#TabC har#Q14C1#TabChar#Q14C2#TabChar#Q14D#TabChar#Q14E#TabChar#Q14F#TabChar#Q14G#TabChar#Q14H#T abChar#Q15A#TabChar#Q15B#TabChar#Q15C#TabChar#Q15D#TabChar#Q15E#TabChar#Q15F#TabChar#Q15G# TabChar#Q15H#TabChar#Q16A#TabChar#Q16B#TabChar#Q16C#TabChar#Q16D#TabChar#Q16E#TabChar#Q16F #TabChar#Q17A1#TabChar#Q17A2#TabChar#Q17A3#TabChar#Q17B#TabChar#Q17C#TabChar#Q17D#TabChar# Q17E#TabChar#Q17F#TabChar#Q17G#TabChar#Q17H#TabChar#Q18A1#TabChar#Q18A2#TabChar#Q18B1#TabC har#Q18B2#TabChar#Q18C1#TabChar#Q18C2#TabChar#Q18D1#TabChar#Q18D2#TabChar#Q18E1#TabChar#Q1 8E2#TabChar#Q18H1#TabChar#Q18H2#TabChar#Q18I1#TabChar#Q18I2#TabChar#Q18J1#TabChar#Q18J2#Ta bChar#Q18K1#TabChar#Q18K2#TabChar#Q18L1#TabChar#Q18L2#TabChar#Q18M1#TabChar#Q18M2#TabChar# Q18N1#TabChar#Q18N2#TabChar#Q18O1#TabChar#Q18O2#TabChar#Q18P1#TabChar#Q18P2#TabChar#Q18Q1# TabChar#Q18Q2#TabChar#Q18R1#TabChar#Q18R2#TabChar#Q18S1#TabChar#Q18S2#TabChar#Q18T1#TabCha r#Q18T2#TabChar#Q18U1#TabChar#Q18U2#TabChar#Q18V1#TabChar#Q18V2#TabChar#Q18W1#TabChar#Q18W 2#TabChar#Q18X1#TabChar#Q18X2#TabChar#Q18Y1#TabChar#Q18Y2#TabChar#Q18Z1#TabChar#Q18Z2#TabC har#Q18A11#TabChar#Q18A12#TabChar#Q18B11#TabChar#Q18B12#TabChar#Q18C11#TabChar#Q18C12#TabC har#Q18D11#TabChar#Q18D12#TabChar#Q18E11#TabChar#Q18E12#TabChar#Q18H11#TabChar#Q18H12#TabC har#Q18I11#TabChar#Q18I12#TabChar#Q18J11#TabChar#Q18J12#TabChar#Q18K11#TabChar#Q18K12#TabC har#Q18L11#TabChar#Q18L1Z#TabChar#Q18M11#TabChar#Q18M12#TabChar#Q18N11#TabChar#Q18N12#TabC har#Q18O11#TabChar#Q18O12#TabChar#Q18P11#TabChar#Q18P12#TabChar#Q18Q11#TabChar#Q18Q12#TabC har#Q18R11#TabChar#Q18R12#TabChar#Q18S11#TabChar#Q18S12#TabChar#Q18T11#TabChar#Q18T12#TabC har#Q18U11#TabChar#Q18U12#TabChar#Q18V11#TabChar#Q18V12#TabChar#Q18W11#TabChar#Q18W12#TabC har#Q18X11#TabChar#Q18X12#TabChar#Q18Y11#TabChar#Q18Y12#TabChar#Q18Z11#TabChar#Q18Z12#TabC har#Q18A21#TabChar#Q19A#TabChar#Q19B#TabChar#Q19C>
    <cfset answers=#Q1#q2#....>
    Can anyone please help me out?

  • Branch target offset too large for short - using CFThread

    I am just starting to get into using CFThread.  I have a process I am working on to allow clients to order background reports on multiple applicants simultaneously.  I am doing this using CFThread.  Through some trial and error I discovered that I needed to var scope the variables that are used in the CFC's that do the bulk of the report processing.  As soon as I did that I started getting the error "                                                                                                                                                      Branch target offset too large for short". Everything I have read on this error basically says I have too much code in the CFC which doesn't make sense as I am using this CFC in several other places in the site without error.  The problem only occured after var scoping my variables in the CFC and them sticking that CFC inside a CFTHread tag.
    Has only one seen anything like this before?
    Thanks

    Haven't seen it, no.
    Can you revert to your un-VARed code, and then re-VAR the variables one by one, retesting between each, and see if a specific one gives you the error?
    I don't know what this might tell you, but it might help focus where to look.
    NB: you should be VARing your variables within functions as a matter of course, not simply in situations in which the code is being called via <cfthread>.
    Adam

Maybe you are looking for

  • Is it possible to have 2 4k and 2 regular monitors on a MAC Pro?

    I want to have two 4k monitors and 2 regular monitors on a Mac Pro.  I know the limit is six regular and 3 4k.  But I am not sure of the mix and matching.

  • How do I find the voice memo file stored in the backup on my computer?

    I am trying to find the file on my computer for the voice memos. I tried to save the voice memo and it was deleted from my iphone 5. I am trying to retrieve it from a previous backup on my computer.

  • Modem no longer works after trying to connect with...

    hi folks, i tried connecting to the internet via dialup with my 3210 over a ca-42 cable. it didn´t find a modem, so i selected my built-in modem as the one to use. Now, however, whenever i try to dial in to my isp connection over my builtin modem (on

  • Can I turn my iMac into an airplay speaker?

    I have several ATV's and a few airplay speakers around the house but I would like to stream from my iphone or ipad to my iMac computer (which has speakers attached to the computer). Is there a way to airplay from my iOS device to my computer? I have

  • Error in PPROCINSTEVENT table

    Hello, I have a development, that allows configuring several types of products. The activity, that saves the data contains two INSERT INTO statement and logmessage in the end. When I press 'Save' I get a message in workspace log: Main (<1> [ACTIVE] E