TOPLINK-4002 SQL string is not Query Error Code: 17128

I got following exception when trying to execute native SQL query via session EJB. The query is defined in orm.xml file using JDev 11g Preview:
javax.ejb.EJBException: Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.0.0) (Build 070502)): oracle.toplink.exceptions.DatabaseException
Internal Exception: java.sql.SQLException: SQL string is not QueryError Code: 17128
Call:findProfilesByLastName
I have following native query defined:
select o.last_name,
o.first_name,
o.middle_name,
o.birth_date,
o.sex_code,
a.height_cm,
a.weight_kg,
o.PERSON_ID
from persons o,
person_bookings b,
person_physical_attributes a
where o.PERSON_ID = b.PERSON_ID
and b.PERSON_BOOK_ID = a.PERSON_BOOK_ID
and o.last_name like '%?1%'
I also tried these versions of the same query but got the same exception:
select o.last_name,
o.first_name,
o.middle_name,
o.birth_date,
o.sex_code,
a.height_cm,
a.weight_kg,
o.PERSON_ID
from persons o,
person_bookings b,
person_physical_attributes a
where o.PERSON_ID = b.PERSON_ID
and b.PERSON_BOOK_ID = a.PERSON_BOOK_ID
and o.last_name like '%:1%'
select o.last_name,
o.first_name,
o.middle_name,
o.birth_date,
o.sex_code,
a.height_cm,
a.weight_kg,
o.PERSON_ID
from persons o,
person_bookings b,
person_physical_attributes a
where o.PERSON_ID = b.PERSON_ID
and b.PERSON_BOOK_ID = a.PERSON_BOOK_ID
and o.last_name like '%#partialName%'
select o.last_name,
o.first_name,
o.middle_name,
o.birth_date,
o.sex_code,
a.height_cm,
a.weight_kg,
o.PERSON_ID
from persons o,
person_bookings b,
person_physical_attributes a
where o.PERSON_ID = b.PERSON_ID
and b.PERSON_BOOK_ID = a.PERSON_BOOK_ID
and o.last_name like '%#partialName#%'
Log trace:
Query:DataReadQuery(); nested exception is:
Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.0.0) (Build 070502)): oracle.toplink.exceptions.DatabaseException
Internal Exception: java.sql.SQLException: SQL string is not QueryError Code: 17128
Call:findProfilesByLastName
Query:DataReadQuery(); nested exception is: oracle.oc4j.rmi.OracleRemoteException: Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.0.0) (Build 070502)): oracle.toplink.exceptions.DatabaseException
Internal Exception: java.sql.SQLException: SQL string is not QueryError Code: 17128
Call:findProfilesByLastName
Query:DataReadQuery(); nested exception is:
Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.0.0) (Build 070502)): oracle.toplink.exceptions.DatabaseException
Internal Exception: java.sql.SQLException: SQL string is not QueryError Code: 17128
oracle.oc4j.rmi.OracleRemoteException: Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.0.0) (Build 070502)): oracle.toplink.exceptions.DatabaseException
Internal Exception: java.sql.SQLException: SQL string is not QueryError Code: 17128
Call:findProfilesByLastName
Query:DataReadQuery()
at com.evermind.server.ejb.EJBUtils.getUserException(EJBUtils.java:127)
at com.evermind.server.ejb.interceptor.system.AbstractTxInterceptor.convertAndHandleMethodException(AbstractTxInterceptor.java:91)
at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:52)
at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:52)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:150)
at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:420)
at oracle.oc4j.security.JaasModeImpl$DoAsPrivilegedExecutor.execute(JaasModeImpl.java:280)
at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:57)
at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:58)
at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:104)
at SearchFacade_RemoteProxy_43jlpm9.queryProfilesByLastName(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at com.evermind.server.rmi.RmiMethodCall.invokeMethod(RmiMethodCall.java:104)
at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:59)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
at java.lang.Thread.run(Thread.java:595)
Nested exception is:
Local Exception Stack:
Exception [TOPLINK-4002] (Oracle TopLink - 11g Release 1 (11.1.1.0.0) (Build 070502)): oracle.toplink.exceptions.DatabaseException
Internal Exception: java.sql.SQLException: SQL string is not QueryError Code: 17128
at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:283)
at oracle.toplink.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:583)
at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:443)
at oracle.toplink.internal.sessions.AbstractSession.executeCall(AbstractSession.java:749)
at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:193)
at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:179)
at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeSelectCall(DatasourceCallQueryMechanism.java:250)
at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeSelect(DatasourceCallQueryMechanism.java:232)
at oracle.toplink.queryframework.DataReadQuery.executeNonCursor(DataReadQuery.java:122)
at oracle.toplink.queryframework.DataReadQuery.executeDatabaseQuery(DataReadQuery.java:114)
at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:671)
at oracle.toplink.queryframework.DataReadQuery.execute(DataReadQuery.java:100)
at oracle.toplink.queryframework.DatabaseQuery.executeInUnitOfWork(DatabaseQuery.java:594)
at oracle.toplink.internal.sessions.UnitOfWorkImpl.internalExecuteQuery(UnitOfWorkImpl.java:2632)
at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1014)
at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:986)
at oracle.toplink.internal.ejb.cmp3.base.EJBQueryImpl.executeReadQuery(EJBQueryImpl.java:395)
at oracle.toplink.internal.ejb.cmp3.base.EJBQueryImpl.getResultList(EJBQueryImpl.java:502)
at ejbmodel.SearchFacadeBean.queryProfilesByLastName(SearchFacadeBean.java:107)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:27)
at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:52)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:150)
at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:420)
at oracle.oc4j.security.JaasModeImpl$DoAsPrivilegedExecutor.execute(JaasModeImpl.java:280)
at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:57)
at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:58)
at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:104)
at SearchFacade_RemoteProxy_43jlpm9.queryProfilesByLastName(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at com.evermind.server.rmi.RmiMethodCall.invokeMethod(RmiMethodCall.java:104)
at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:59)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
at java.lang.Thread.run(Thread.java:595)
Caused by: java.sql.SQLException: SQL string is not Query
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:72)
at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:105)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:168)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:224)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:439)
at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1302)
at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3522)
at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3574)
at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:267)
at oracle_jdbc_driver_OraclePreparedStatementWrapper_Proxy.executeQuery(Unknown Source)
at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeSelect(DatabaseAccessor.java:754)
at oracle.toplink.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:518)
... 51 more

Does this error only occur when the SQL is defined in orm.xml ? Have attempted to run this query in code only?
--Gordon                                                                                                                                                                                                                                                   

Similar Messages

  • Java.sql.SQLException: SQL string is not Query

    Hi I'm Very much new to Jdeveloper
    I create a an application Which uses Jakarta Struct. that Aplication works fine on tomcat. But when I tried to run that application(using embeded OC4J) It gave me the following error
    java.sql.SQLException: SQL string is not Query
    it will throw on the following statement
    rs = statement.executeQuery(strSqlQuery);
    I print the sql Statement and run it manully. then it work perfectly
    pl help me
    Thanks
    Charith
    the Method is as follows
    public static boolean add(String pstrName, String pstrAge)
    boolean boolResult= false;
    Connection con = null;
    Statement statement = null;
    ResultSet rs=null;
    String strSqlQuery= "insert into a_upul(age, name11) values('"+pstrAge+"','"+pstrName+"')";
    //PreparedStatement stmt = null;
    con =dbmanager.newCon();
    try {
    statement = con.createStatement();
    System.out.println("strSqlQuery "+strSqlQuery);
    rs = statement.executeQuery(strSqlQuery);
    boolResult=true;
    }catch (SQLException e){
    e.printStackTrace();
    boolResult=false;
    finally {
    try{
    if (rs != null)
    rs.close();
    if (statement != null)
    statement.close();
    if (con != null)
    con.close();
    }catch (SQLException e) {
    e.printStackTrace();
    System.out.println("ProjectManager->getDistinctConSeqNoFromTMPSHL_2 method : " + e.toString());
    return boolResult;
    }

    Hi,
    I am using OC4J 10g (9.0.4) - J2EE 1.3 Compatible server to run my ejb, while executing I am getting the following error.
    java.lang.NullPointerException
    at oracle.jdbc.driver.ScrollableResultSet.close(ScrollableResultSet.java:149)
    at com.evermind.sql.FilterResultSet.close(FilterResultSet.java:338)
    The same ejb is working fine with weblogic server.
    Thanks,
    Santo

  • "connection not available error code - 4161" what...

    Hi
    I have been trying to upload my workouts to Nokia traker but when I start the application I get the following "connection not available error code - 4161" What does this mean and how do I sort it
    Thanks

    I did a comparison, and your connection string is different
    than mine. Mine does not show any password/userid entries, but
    perhaps that's the difference between using SQL and SQL Express.
    (I'm using SQL.) I am, of course, assuming that you have actual
    values for "servername," "database," etc.
    Given that you can't get in from RSC Explorer, it would seem
    that either you are not using the same userid/password as the one
    you set up for the administrator when you created the DB, or else
    there's something wrong with the DB itself.
    Try creating a test DB. Be careful to specify the same
    administrator name and password as the login you use to get on the
    RSC server. After you've created the test DB, open it up from RSC
    Explorer. If you can do this successfully, then everything ought to
    be working OK. From that point, I'd start over and create a new DB,
    and upload to that one. (In fact, I've actually gone through
    exactly that total exercise before.
    G

  • While adding/Changing member in planning it gives the error "The SQL operation failed with an error code: 0"

    Hi,<BR>While adding/Changing member in planning it gives the error "The SQL operation failed with an error code: 0" and not allowing any of the changes. I am not able to open the forms giving the error as "Fiscal Days Input - is invalid". Interestingly one form was opening, when the Page selection is changed it also started giving error as like "Fisacal Days Input(form name) - is invalid check log for details". <BR>Pls advice us that what is this error and how to resolve this.<BR><BR>And Which log is to be referred for the details.<BR><BR>Thanks<BR>Ravi

    If a form is invalid it generally means that one of the dimension references is missing.<BR><BR>Can you get in to edit the form?<BR>If you can, see if you can preview it. I suspect you will not be able to.<BR><BR>If not, check all dimension boxes have at least one member against them.<BR>If you have multiple rows and/or columns check all of them too.<BR><BR>I've had a couple of forms in dev "drop" a dimension reference but only once or twice so not enough to reproduce or find out what is causing it. Each time I got the "form invalid" error message and managed to fix it.<BR><BR>Hope this helps.<BR>

  • Error accessing file template file not found (error code 2)

    We have 3 admins that work on the website so we use the Check In/ Check Out feature of DW. We all have DW CS6.
    When I update the template I have no problem (I work on a mac). However, if one of the other admins (Windows) tries he gets the following message: Error accessing file template file "C:\filepath\filename.dwt": file not found (error code 2).
    I looked at this thread: Re: Dreamweaver Template not updating pages error code 2? but the only solution offered there is to change the template tag from <!-- InstanceBegin... to <!-- TemplateBegin... If this is the solution, how do you do this?
    When I go to the url of the template http://www.christophorushouse.com.au/Templates/chrv-main-template.dwt it says it's been (re)moved or renamed, but then I have a feeling you can't view/access a template this way. All pages of the website feed of this template.
    Any help would be appreciated.
    Thanks

    We have 3 admins that work on the website so we use the Check In/ Check Out feature of DW. We all have DW CS6.
    When I update the template I have no problem (I work on a mac). However, if one of the other admins (Windows) tries he gets the following message: Error accessing file template file "C:\filepath\filename.dwt": file not found (error code 2).
    I looked at this thread: Re: Dreamweaver Template not updating pages error code 2? but the only solution offered there is to change the template tag from <!-- InstanceBegin... to <!-- TemplateBegin... If this is the solution, how do you do this?
    When I go to the url of the template http://www.christophorushouse.com.au/Templates/chrv-main-template.dwt it says it's been (re)moved or renamed, but then I have a feeling you can't view/access a template this way. All pages of the website feed of this template.
    Any help would be appreciated.
    Thanks

  • When I try to print from web page I get "printer not activated - error code 30", but I can copy text into Word document & printer works.

    I am unable to print anything from an internet web page. I continually get "printer not activated, error code- 30" followed by "An unknown error occurred while printing". I can copy the material from the web page, place into a Word document and then print. This just started yesterday and I have no idea why. Would appreciate your advice!

    See this:
    [http://kb.mozillazine.org/Problems_printing_web_pages#Prints_to_a_small_portion_of_the_page]

  • When I try to print from web page I get "printer not activated - error code 30", printer works on Internet Explorer

    When I try to print from web page I get a dialogue box "Printer not activated - error code 30" followed by a dialogue box "An unknown error occurred while printing". The printer works on websites when I use Internet Explorer. Also, if I copy the web page and paste it into a Word document, I can print a copy. This issue just started this week; I have not encountered this problem prior to this week. Please advise.

    What does that error message say?
    See this: http://kb.mozillazine.org/Problems_printing_web_pages

  • Activation error: Printer not activated, error code 20

    I have had my officejet 4215 all-in-one printer well over a year and it has connected and printed whatever I wanted.  Yesterday when I wanted to print an email it would not and the following box popped up: Activation error: Printer not activated, error code 20.  Then the next box that popped up said: Printer Error  An unknown error occurred while printing.
    If I copy the email over to a Microsoft Windows page, then i can print it fine.
    Any idea how to fix this so I can print email's like I used to?
    Rey

    What operating system?  What email program are you trying to print from?
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Printer will not work: error code 0xc19a0022

    Printer will not work: error code 0xc19a0022

    Hello citizenED,
    Welcome to the HP Forums.
    I see that you are getting the error code " 0xc19a0022 " .
    I do have a few steps that we can try. 
    First off, please make sure that you have the printer power cable connected directly to a wall outlet and not a power bar/strip. Here is a document that uses a LaserJet printer as an example but it is meant for HP products in general. Please click on the following link that explains the Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector.
    I have also located a document that deals with a 'Problem with Printhead,' 'Printer Failure,' 'Ink System Failure,' or a '0x...' or a 'C2...' Error ...
    If the troubleshooting does not help resolve your issue, I would then suggest calling HP's Technical Support to see about further options for you. If you are calling within North America, the number is 1-800-474-6836 and for all other regions, click here: click here.
    Thanks for your time.
    Cheers,  
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • HT4623 I can not get connected to App Store , download or update any apps,  EVEN I DID RESET ALL SETTING , STILL I RECIEVE A MESSAGE says: YOUR REQUEST IS NOT PROCESSED ,ERROR COD: 109 !! WHAT DOSE IT MEAN? HOW CAN I SOLVE THE PROBLEM??

    I can not get connected to AppStore , DOWNLOAD OR UPDATE ANY OF MY APPS , WHEN I GO FOR INSTALLING , THE MESSAGE SAYS: YOIR REQUEST IS NOT PROCESSED ,  ERROR CODE, 1009!!! HOW CAN I SOLVE THIS PROBLEM??

    Try contacting the iTunes support staff, they do the app store also, at:  http://www.apple.com/emea/support/itunes/contact.html

  • I tried to empty my trash and could not - an error code 8003 showed up and stopped me. What can I do to empty the trash?

    I tried to empty my trash and could not - an error code 8003 showed up and stopped me. What can I do to empty the trash?

    Look to the right under 'More like This' - many good sugestions there.

  • My Mac OSX is coming up with error message when i try to write a disc "The disc can't be burned because the disc drive is not accessible (error code 0x80020020)." Same also when I tried my external disc writer-any clues?

    My Mac OSX (version 10.7.5) is coming up with error message when I try to write a disc "The disc can’t be burned because the disc drive is not accessible (error code 0x80020020)." I have tried several discs with the same message - Same also when I tried my external disc writer. Both disc drives will read my discs that have music or photos on it, it just won't write any new discs - any clues?

    Hi Klaus1
    So, I tried all the suggestions and followed the links - all to no avail.
    as you can see, (screenshot below) my iMac is a 21.5 inch late 2009 model which isn't showing in the updates listed above
    My system report shows that my Mac has the following:
    I reset the PRAM and the SMC - still have the same error message when I try to burn discs. I've used both CD's and DVD's and tried with my external Discwriter too.
    Any further suggestions??

  • Installer - all day I get Server not responding Error code 207

    Trying to install CC Desktop - all day I get Server not responding Error code 207. Is this an internet performance issue or a real issue with the server?

    Hi,
    Thanks for the suggestion Romit. I believe the reported error code was installer app code rather than Windows error code.
    I have now had my broadband installed so have retried this install again, rather than on original public wifi. I'm pleased to say that it has all installed very well. I'm therefore pretty sure that it was an internet performance issue.
    Hope this helps anyone in the future.

  • HT5622 I received masseage ( your request not processed error cod 1009

    I try to download Skype , and when I start downloading received this masseage
    Your request not processed error code 1009
    What I should to do

    What country are you in, and are you trying to use another country's store ? The 1009 error is usually due to trying to use another store.

  • "original order" grouping is not supported.---- Error code:-2147215356

    In one of my reports i need to display the data in original order.It is working fine when i run the crystal report,but when i integrate with java and check the report then it is giving the below error.
    javax.servlet.ServletException: com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Error loading report: "original order" grouping is not supported.---- Error code:-2147215356 Error code name:fileNotOpened
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:850)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:779)

    Hi Suhasini,
    The JRC XI R2 (11.5) doesn't support "Original Order" grouping, however this functionality has been introduced in the latest version JRC -Crystal Reports for Eclipse
    This version is available as a plug-in to the Eclipse IDE ad is available here:
    http://diamond.businessobjects.com/eclipse
    Note that you can use the same keycode you use for CR XI Release 2 with CR for Eclipse.
    If you are not using the Eclipse IDE you can still used these jars as a drop-in replacement of the JRC XI R2 jars.
    Kind Regards,
    Flavio

Maybe you are looking for

  • Reducing PDF form file size

    When creating the dynamic PDF form in LiveCycle Designer ES 8.2.x, the file size is < 200K. When opening in Acrobat 9 Pro and extending to Acrobat Reader, the file size > 1.2MB. Is there any way to reduce the file size? Thanks! -JoeF

  • How can i get names of buttons in radio group

    Could you please help me in the matter that by giving the name of radio group, we can get the names of the radio buttons in that group. Thanks for Help, Riaz Ahmad

  • Error using PlanType3 only in Planning ver. 11.1.1.3

    Hi, we are implementing Planning ver. 11.1.1.3 and are using all 3 of our PlanTypes. We have accounts which we only want to use with PlanType3, however we are receiving an error when choosing only this PlanType when creating/modifying the account. Th

  • Configure Solaris cluster to failover guest domain when NICs were down

    Hi, I am running Solaris 11 as the control domains on 2 clustered nodes running on Solaris Cluster 4. There is a Solaris 10 guest domain which is managed via the Solaris cluster in failover mode. 2 virtual switches connected to 2 different network sw

  • What is the "best" video format to import into Aftereffects (for keylight plugin)

    Hello All, I have various choices in Adobe Premiere (CS4) for exporting. The top choices seem to be Microsoft AVI Avi uncompressed (this i assume is much better than just Microsoft AVI -- for greencreen keylight work?) And Quicktime. So I assume my b