Query on JCO Version

Hi,
We are currently migrating from SAP J2EE Engine 6.20 to SAP J2EE Engine 7.0. From the support note 549268 we understand that the SAP J2EE Engine 7.00 has a SAP JCo version 6.45. But what we need to understand is that what is the equivalent stand-alone version of JCo for SAP JCo 6.45. We use the stand-alone version of JCo during the application development and hence we would need the equivalent stand-alone for SAP JCo 6.45.
Thanks
JLN

Hi,
Check this [link|Can SAP JCo 2.x co-exist with the integrated SAP JCo 6.45 in NW 7.0?;
Thanks
Sunny

Similar Messages

  • Work Manager 6 - JCO Version out-of-support

    Hi all,
    in the comments of JCO 2.1 Table Iterator (for-each-loop) I was made aware, that the JCO version 2.1.8 delivered with the current Work Manager 6.0 is not supported anymore by SAP. Michael Appleby asked me to start a discussion on this in order to give this some more attention. So, here it is...
    Regards, Daniel

    Daniel,
    Currently Work Manager doesn't support SAPJCO 3.0.  We have a open request with our Product team to look into this.  You can contact support about: SPS-271 -  Support for SAPJCO 3.0
    Stephen

  • Can I directly access BEX query from web version

    Hi expert,
            Can I directly access BEX query from web version ? I know we can access bex query from webi rich client.
    Many Thanks,

    Hi,
    Yes, you can access BEx query via BICS connection (OLAP Connection).
    In SAP BusinessObjects BI 4.0 you have multiple options to connect your SAP BusinessObjects BI client to your SAP NetWeaver BW system.
    Direct BI Consumer Services (BICS)
    SAP BusinessObjects BI 4.x Relational Universe (UNX)
    SAP BusinessObjects XI 3.1 OLAP Universe (UNV) used in a SAP BusinessObjects BI 4 environment
    Web Intelligence
    Yes
    Yes
    Yes
    SAP BusinessObjects Dashboards
    Yes
    Yes
    No
    Analysis, edition for Microsoft Office
    Yes
    No
    No
    Analysis, edition for OLAP
    Yes
    No
    No
    SAP BusinessObjects Explorer
    No
    Yes
    No
    SAP BusinessObjects Design Studio
    Yes
    No
    No
    Visual Intelligence
    No
    Yes (1)
    No
    Predictive Analysis
    No
    Yes (1)
    No
    Design Studio
    Yes
    No
    No

  • JCO version installed in CE 7.1 sp11

    Hi,
    I need to check the JCO version installed in CE 7.1 sp 11.
    Please let me know how to check the same?
    Regards
    Radhika Kuthiala

    hope this note wlll help
    Note 718901 - How to Change the JDK of the J2EE Engine

  • Jco version 2.1.6 where to download?

    Hi guys,
    i am looking out for JCO version 2.1.6 and somehow i cant locate it on the service market place. I can only trace out 2.1.7 where my program stops working having a null pointer exception.
    How do i locate it in the market place.
    Can some body help me in finding the binaries. This is a very urgent need.
    Thanks in advance.
    Sara/

    You should be able to find older versions on the market place. It's not that self evident but usually they are but one or 2 clicks away from the latest version.
    On the other hand you might want to have a second look at your program and find out why you get a null pointer exception...
    Enjoy

  • Sapjco-ntintel-2.1.8.zip (JCO Version 2.1.8)

    Hello,
    can anybody tell me, where to get
    sapjco-ntintel-2.1.8.zip
    Jco Version 2.1.8
    On the support site of sap, it's no longer available.
    I urgently need this image.
    can anybody help me
    Thanks a lot in advance
    bye
    Christian
    Edited by: Christian Huber on Jul 30, 2010 10:42 AM

    Hello,
    I have the same problem when trying to import an SAP Role into BusinessObjects.
    THe system tells me it can't download the Role with following error message: org.apache.jasper.JasperException
    But just before that there came a message that I'm using the wrong version of the sapjco. And that instead of the 2.1.9 I should be using the 2.1.8
    Can someone tell me if these two messages can be related?
    My BO server is a 32 bit OS Windows 2003 server, The SAP system is a 64bit system.
    The request starts from the BO server towards the SAP system with which I am connected.
    many regards

  • Query for file version less than 10.0 does not return expected data

    I'm trying to build a query for all PCs that have a version of Iexplore.exe in c:\windows\program files\ that is less than 10.0 .  When I run the query it returns no data. When I change 10.0 in the query to 9.9 it returns files with version 10.xxx in
    the results.  Its as if it is seeing 10.0 as 1.0.   Is this expected ?
    select SMS_R_System.Name, SMS_R_System.ADSiteName, SMS_G_System_SoftwareFile.FileName, SMS_G_System_SoftwareFile.FileVersion from  SMS_R_System inner join SMS_G_System_SoftwareFile on SMS_G_System_SoftwareFile.ResourceID = SMS_R_System.ResourceId where
    SMS_G_System_SoftwareFile.FileName = "iexplore.exe" and SMS_G_System_SoftwareFile.FilePath = "C:\\program files\\internet explorer\\" and SMS_G_System_SoftwareFile.FileVersion < "9.9"

    It is because the values are not integer, they are a string. And therefore 1 is smaller then 9.
    http://www.enhansoft.com/

  • Flashback query vs. flashback versions query

    I have noticed that I can do a regular flashback query as far back as I have UNDO data available for the query, as long as long as the table definition has not changed. Flashback versions query, however, is limited to the UNDO retention parameter.
    So, for example, if my UNDO_RETENTION parameter is set to the default 900 seconds, I can only go back 15 minutes in time, even if the regular flashback query shows data in the table from 1 hour ago.
    Why does Oracle hold to the the retention parameter for versions query, but let you go back farther for the regular query?

    Flashback query shows 7th Nov value and the next query shows 8th nov value..
    thanks,
    baskar.l

  • Result of query different in version 9i and 10g

    We have a query wiht correlated subqueries. If we execute this query in version 8 or version 9 the query returns no rows. (as expected).
    Running this query in version 10g return 1 row. Is this a change in the semantics of SQL in version 10 or could it be a bug ?
    Below is a sample scenaria :
    CREATE TABLE A (
    ID1 number,
    ID2 number,
    CODE VARCHAR2(1)
    CREATE TABLE B (
    ID2 number,
    COLX number
    INSERT INTO A values ( 1, 1, 'D' );
    INSERT INTO A values ( 1, 2, 'I' );
    INSERT INTO B values ( 1, 1 );
    INSERT INTO B values ( 2, 2 );
    COMMIT;
    select *
    from A A1
    where A1.CODE = 'D'
    and exists (select 1
    from A A2
         where A2.CODE = 'I'
         and A2.ID1 = A1.ID1
         and not exists (select COLX from B where ID2 = A1.ID2 MINUS select COLX from B where ID2 = A2.ID2)
    );

    Hi,
    >>select COLX from B where ID2 = A1.ID2 MINUS select COLX from B where ID2 = A2.ID2Really strange. Well, this problem maybe in this code above.
    TESTE@teste> select *
      2  from A A1
      3  where A1.CODE = 'D'
      4  and exists (select 1
      5  from A A2
      6  where A2.CODE = 'I'
      7  and A2.ID1 = A1.ID1
      8  and not exists (select COLX from B where ID2 = A2.ID2 MINUS select COLX from B where B.ID2 = A1.ID2)
      9  );
    no rows selected
    TESTE@teste> select * from v$version;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    PL/SQL Release 9.2.0.4.0 - Production
    CORE    9.2.0.3.0       Production
    TNS for Linux: Version 9.2.0.4.0 - Production
    NLSRTL Version 9.2.0.4.0 - Production
    TESTE@teste> select *
      2  from A A1
      3  where A1.CODE = 'D'
      4  and exists (select 1
      5  from A A2
      6  where A2.CODE = 'I'
      7  and A2.ID1 = A1.ID1
      8  and not exists (select 1 from dual where 1=2)
      9  );
           ID1        ID2 C
             1          1 D
    SGMS@ORACLE10> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Prod
    PL/SQL Release 10.1.0.2.0 - Production
    CORE    10.1.0.2.0      Production
    TNS for Linux: Version 10.1.0.2.0 - Production
    NLSRTL Version 10.1.0.2.0 - Production
    SGMS@ORACLE10> select *
      2  from A A1
      3  where A1.CODE = 'D'
      4  and exists (select 1
      5  from A A2
      6  where A2.CODE = 'I'
      7  and A2.ID1 = A1.ID1
      8  and not exists (select COLX from B where ID2 = A2.ID2 MINUS select COLX from B where B.ID2 = A1.ID2)
      9  );
           ID1        ID2 C
             1          1 DCheers

  • Collection or Report query for IE versions

    Hi
    I'm looking for a way to create a collection and also a report which consists of IE versions. Many of the queries available with forums are showing old versions as well the new versions and it's duplicating the system names. Client systems are running with
    Windows 7 
    Thanks in advance
    LMS

    Hello Jorgen
    The above one gives total number of systems, but not sure about the correctness of numbers returned.
    We used below 2 queries for creating the collections and even each of them displyaing different lists
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SoftwareProduct on SMS_G_System_SoftwareProduct.ResourceID
    = SMS_R_System.ResourceId where SMS_G_System_SoftwareProduct.ProductVersion like "x.%" and SMS_G_System_SoftwareProduct.ProductName like "%Internet Explorer%"
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_SoftwareFile on SMS_G_System_SoftwareFile.ResourceID
    = SMS_R_System.ResourceId where SMS_G_System_SoftwareFile.FileName = "iexplore.exe" and SMS_G_System_SoftwareFile.FileVersion like "x.%"
    **Replace x with the version number
    So not sure which one to use. 
    Anyway we created collections for IE 8/9/10 & 11, since the list contains overlapped systems or system names we created another collections which contains just IE 8 / 9 / 10 or 11 versions by comparing and removing the collections created before. For
    eg. IE 11 collection created before is the one just for IE 11 since there are no newer versions and so no collections, IE 10 Collection (contains only IE 10) by compare IE 10 & 11 collections and excluded those in IE 11, IE 9 Collection created by comparing
    IE 9/10 & 11 collections and excluded those in 10 & 11 and so for IE 8 only.
    So can you tell me which query provides the exact collection result?
    Regards
    LMS

  • Fire Joint Query using JCO

    Hi All,
    I am using JCO Connection from a Webdypro Java Application to access the ERP backend, and fetch all the vendors for a particular Purchasing Organization.
    I am using the FM RFC_READ_TABLE. But I have to pick data from 2 tables here LFA1 and LFM1, as one contains vendor details and one contains Vendor - Purchasing Organization Mapping. Can I use RFC_READ_TABLE to fetch data from both these table using a single Joint query. Tried but getting exceptions while executing the functions.
    First fetching all the related vendors from LFM1, and adding these vendor IDs to the query on LFA1 worked. But it seems I cant add more than 900 vendor ids to the query. And customer is targetting more than 1000.
    When I added more than 900 vendor ids to the query, I get the following exception
    com.sap.mw.jco.JCO$Exception: (104) RFC_ERROR_SYSTEM_FAILURE: Error in module RSQL of the database interface.#
    So can you help me here with any kind of solution,
    1) Is it possible to fire a joint query with both these tables involved, through JCO.
    or 2) is there anyway to avoid the exception mentioned above and add more than 900 vendor ids to the query.
    Regards,
    Prakash

    HI Lavanya,
    Do you think this is due to time out issues.
    Because so far, in my system and as well as customer's system we havent faced any timeout issues.
    When I didnt pass any search parameters to the query I was still able to retreieve all the records in the table, without any timeout exceptions (though there were performance issues).
    When I went through other forums, they said this particular exception occurs when they had used more than 900(approx) parameters in the query (IN Parameters).
    My query goes like this.
    Select Field1, Field2 from LFA1 where Field0 = '1' or field0 ='2' or field0='3'.... or field0 = '900' .
    Saravanan had suggested to create a BAPI which does this Joint query stuff in the backend itself. But since customer is going live in a week approving any development in the backend is not possible now.
    So is there any work around to get through this exception, or is there any other RFC already available that can take in joint queries.
    Regards,
    Prakash

  • JCo error message (worked with older JCo version)

    Hello,
    In the past I successfully used the JCo 2.0.7.
    Now I downloaded JCo 2.1.3 and replaced the librfc32.dll and sapjcorfc.dll in system32 with the DLLs from the new JCo distribution.
    My Java test program now gives the error below:
    My classpath is of course correct. If I reset my DLLs to the old versions, my test program works again.
    Can you help?
    Michael
    java.lang.ExceptionInInitializerError: JCO.classInitialize(): Could not load middleware layer 'com.sap.mw.jco.rfc.MiddlewareRFC'
    default_cpc_mode
         at com.sap.mw.jco.JCO.<clinit>(Unknown Source)
         at sap.idoc.JCoIDocSample1.main(JCoIDocSample1.java:32)
         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:324)
         at com.intellij.rt.execution.application.AppMain.main(AppMain.java:78)
    Exception in thread "main"

    Hi Michael,
    Is it possible that the old JCo library files are in the path?
    Michael

  • Query's different versions

    hi All,
    there are usually three versions of any query - A,M and D
    A= Active Version
    M=Modified Version
    D = ?
    if i delete A version of any query M version get deleted with it. Right ?
    is there any other versions available ?
    What is D version ? why we have that ? is it required to keep it ? or i can delete that ?
    Thanks,
    KS
    Edited by: Keral Smith on Jan 19, 2009 10:52 AM

    Hi,
    All the business content object or queries are present in the D version...that is its delivered in that version.
    You are not suppose to delete it.
    These D queries are supposed to be used in the same way as the other queries.
    Its not mandatory that these comes with the stat cubes only...it can come with other cubes as well.
    Thanks
    Ajeet

  • Query comparing two version

    Hi ,
    I have a small query comparing two vesions in java . my version like
    *1st one Version Name : swv-ora-tes-4.5*
    *2nd one Version Name :swv-ora-tes-4.6*
    How can we compare this version and 2nd one is latest version
    Regards
    Pattanaik

    Here's something you would have found by yourself in about 15 seconds if you'd bothered to do any work:
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html#compareTo(java.lang.String)

  • GIS integration with mySAP ERP 2004 Jco version?

    Hi guys,
    Which version of JCO connector will connects the mySAP ERP 2004? while integrating GIS integration with mySAP ERP 2004 .
    Thanks in advance
    Regards
    Rgdasari

    Hi Rgdasari,
    SAP always recommends to use the most recent release of the frontend components, including the connectors. Hence you should get the most recent release of JCo - SAP JCo Release 2.1.6.
    You can download it from http://service.sap.com/connectors - you will need to provide your SAP Service Marketplace User/Pass.
    Regards,
    Mustafa.

Maybe you are looking for