Java Connector for Netweaver 7.11

Hi,
looking at the code of an EJB that makes calls to the SAP backend systems, I've noticed that the classes that have been used are deprecated:
String returnMsg="";                                                                               
JCO.Client clientConnection = null;                                                                          
try {                                                                               
//creating jco client                                                                               
JCO.Client jcoclient = null;                                                                               
//using existing jco from portal "WD_MODELDATA_DEST" which is connected to                                 
     //required backend SAP system                                                                               
Context ctx = new InitialContext();                                                                        
     DestinationService dstService = (DestinationService) ctx.lookup(DestinationService.JNDI_KEY);                                                                               
if (dstService == null) {                                                                               
throw new NamingException("Destination Service not available");                                          
RFCDestination dst = (RFCDestination) dstService.getDestination("RFC", JCO_MODELDATA);                   
    Properties jcoProperties = dst.getJCoProperties();                                                       
    clientConnection = JCO.createClient(jcoProperties);                                                      
    clientConnection.connect();                                                                               
JCO.Repository repository = new JCO.Repository("REP_CHECK_BPM_ACT", clientConnection);                   
     IFunctionTemplate ift = repository.getFunctionTemplate("ZMCTBPM_WS_VERIFICA_TASK");                                                                               
JCO.Function functionCheckBpmActiv = new JCO.Function(ift);                                                
     JCO.ParameterList paramImport = functionCheckBpmActiv.getImportParameterList();                            
     JCO.ParameterList paramExport = functionCheckBpmActiv.getExportParameterList();                            
     JCO.ParameterList paramTables = functionCheckBpmActiv.getTableParameterList();
In particular the JCO class is marked as deprecated. I'm using Netweaver 7.11.
What classes should I use in order to obtain the same result (call an RFC from an EJB)?
Can someone provide me with a simple example on how to set up an RFC call?
Thank you,
Pietro

I've made it!
Here is the code (if it can help someone else...):
// Esegue la funzione di callback
try {                    
     // Creazione della destinazione
     JCoDestination dest = JCoDestinationManager.getDestination("MY_DESTINATION");
     // Recupero della RFC
     JCoFunction rfc = dest.getRepository().getFunction("MY_RFC_FUNCTION");
     // Impostazione parametri di input
     rfc.getImportParameterList().setValue("PROTNR", id);
     rfc.getImportParameterList().setValue("STATO", stato);
     rfc.getImportParameterList().setValue("GRUPPO", gruppo);
     // Esecuzione della RFC
     rfc.execute(dest);
catch (Throwable e) {
     isBackendCallSuccessful = false;
DEPENDENCIES: tc/bl/jco/api
Edited by: pietro.m on Apr 5, 2011 12:27 PM

Similar Messages

  • Error while deploying MDM Java Connector for EP

    Hi,
    i am a newbie to MDM.i am trying to develop a portal component with the blog "Using MDM5.5 Java Connector with SAP Enterprise Portal 6.0" as reference.
    i created an MDM system in portal and the connection tests passed.
    But when i deploy the code i get the following exception-
    java.lang.NullPointerException
         at com.sap.mdm.connector.connection.MdmConnectionFactory.getConnectionEx(MdmConnectionFactory.java:170)
         at com.sap.portal.ivs.internalconnector.ConnectionProvider.getConnection(ConnectionProvider.java:304)
         at com.sap.portal.ivs.internalconnector.ConnectionProvider.getConnection(ConnectionProvider.java:258)
         at com.sapportals.portal.ivs.cg.ConnectorService.getConnection(ConnectorService.java:478)
         at com.sapportals.portal.ivs.cg.ConnectorService.getConnection(ConnectorService.java:85)
         at com.cts.mdm.MDMtestcomp.doContent(MDMtestcomp.java:36)(this points to the line <b>connection = cgService.getConnection("MDM_SYSTEM_ALIAS", prop);</b>)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    This is my code-
    IConnectorGatewayService cgService = (IConnectorGatewayService)
                   PortalRuntime.getRuntimeResources().getService(IConnectorService.KEY);
              ConnectionProperties prop =
              new ConnectionProperties(request.getLocale(), request.getUser());
                   IConnection connection = null;
                   connection = cgService.getConnection("MDM_SYSTEM_ALIAS", prop);
         INative nativeInterface = connection.retrieveNative();
                        CatalogData catalog = new CatalogData();
                             catalog = (CatalogData)
                   nativeInterface.getNative(CatalogData.class.getName());
                        ResultSetDefinition rsd = new ResultSetDefinition("Customers");
              rsd.AddField("Name");
              Search search = new Search("Customers");
              A2iResultSet rs = null;
                             rs = catalog.GetResultSet(search,rsd,"Name",true,0);
    response.write(rs.GetFields().toString());
    Have i missed anything?
    Should i deploy any .jar file? (i've already deployed MDM4J.jar) and referenced it in portalapp!
    Thanks in advance
    SwarnaDeepika

    Hello Swarna:
    I believe than rather than deploying the MDM4J.jar, you should deploy this components:
    com.sap.mdm.tech.mdm4j.sda
    com.sap.mdm.tech.connector.sda
    BPMDMTECHN00_0.sca
    BPMDMAPPLI00_0.sca
    Once you deploy those, you should have no problems. Another solution would be to take your MDM4J.jar and wrap it into an SDA, then deploy, but that would be pretty much the same.
    Those components are included on your MDM CD. Please ensure you use the same Version/support package/hotfix all over your landscape.
    I hope that helps
    Alejandro

  • SAP Business One - Java Connector

    Hi All,
    <br/><br/>
    We have a SAP Business One Application installed on a laptop. The requirement is to be able to use the SAP Java API to update tables in the system. We are not allowed to connect directly to the database and was advised to use the API instead.
    <br/><br/>
    The downloaded API that we are using is "sapjco30P_6-10005324 32 bit.zip". I have included the dll file contained in this package in the WINDOWS/system32 folder. I am using Eclipse as IDE and already included the "sapjco3.jar" in the classpath.
    <br/><br/>
    First question: Am I using the right Java Connector for SAP Business One?
    <br/><br/>
    I got sample code on how to connect using JCO:
    <br/><br/>
    package sample;<br/><br/>
    import java.io.File;<br/>
    import java.io.FileOutputStream;<br/>
    import java.util.Properties;<br/>
    import java.util.concurrent.CountDownLatch;<br/><br/>
    import com.sap.conn.jco.AbapException;<br/>
    import com.sap.conn.jco.JCoContext;<br/>
    import com.sap.conn.jco.JCoDestination;<br/>
    import com.sap.conn.jco.JCoDestinationManager;<br/>
    import com.sap.conn.jco.JCoException;<br/>
    import com.sap.conn.jco.JCoField;<br/>
    import com.sap.conn.jco.JCoFunction;<br/>
    import com.sap.conn.jco.JCoFunctionTemplate;<br/>
    import com.sap.conn.jco.JCoStructure;<br/>
    import com.sap.conn.jco.JCoTable;<br/>
    import com.sap.conn.jco.ext.DestinationDataProvider;<br/><br/>
    public class StepByStepClient<br/>
    {<br/>
        static String ABAP_AS = "ABAP_AS_WITHOUT_POOL";<br/>
        static String ABAP_AS_POOLED = "ABAP_AS_WITH_POOL";<br/>
        static String ABAP_MS = "ABAP_MS_WITHOUT_POOL";<br/>
        static<br/>
        {<br/>
            Properties connectProperties = new Properties();<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_ASHOST, "localhost");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_SYSNR,  "06");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_CLIENT, "000");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_USER,   "manager"); //sapuser<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_PASSWD, "manager"); //sap1234<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_LANG,   "en");<br/>
            createDataFile(ABAP_AS, "jcoDestination", connectProperties);<br/><br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_POOL_CAPACITY, "3");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_PEAK_LIMIT,    "10");<br/>
            createDataFile(ABAP_AS_POOLED, "jcoDestination", connectProperties);<br/><br/>
            connectProperties.clear();<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_MSHOST, "localhost");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_R3NAME,  "SID");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_CLIENT, "000");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_USER,   "manager"); //sapuser<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_PASSWD, "manager"); //sap1234<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_GROUP, "GROUP");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_LANG,   "en");<br/>
            createDataFile(ABAP_MS, "jcoDestination", connectProperties);<br/>
        }<br/><br/>
        static void createDataFile(String name, String suffix, Properties properties)<br/>
        {<br/>
            File cfg = new File(name"."suffix);<br/>
            if(!cfg.exists())<br/>
            {<br/>
                try<br/>
                {<br/>
                    FileOutputStream fos = new FileOutputStream(cfg, false);<br/>
                    properties.store(fos, "for tests only !");<br/>
                    fos.close();<br/>
                }<br/>
                catch (Exception e)<br/>
                {<br/>
                    throw new RuntimeException("Unable to create the destination file " + cfg.getName(), e);<br/>
                }<br/>
            }<br/>
        }<br/><br/>
        public static void step1Connect() throws JCoException<br/>
        {<br/>
            JCoDestination destination = JCoDestinationManager.getDestination(ABAP_AS);<br/>
            System.out.println("Attributes:");<br/>
            System.out.println(destination.getAttributes());<br/>
            System.out.println();<br/><br/>
            destination = JCoDestinationManager.getDestination(ABAP_MS);<br/>
            System.out.println("Attributes:");<br/>
            System.out.println(destination.getAttributes());<br/>
            System.out.println();<br/>
        }<br/><br/>
        public static void main(String[] args) throws JCoException<br/>
        {<br/>
            step1Connect();<br/>
        }<br/>
    }<br/>
    <br/><br/>
    Each time I run the application I run into an error:
    <br/><br/>
    Attributes:<br/>
    Exception in thread "main" com.sap.conn.jco.JCoException: (102) JCO_ERROR_COMMUNICATION: Connect to SAP gateway failed<br/>
    Connection parameters: TYPE=A DEST=ABAP_AS_WITHOUT_POOL ASHOST=localhost SYSNR=06 PCS=1<br/><br/>
    LOCATION    CPIC (TCP/IP) on local host with Unicode<br/>
    ERROR       connection to partner '127.0.0.1:3306' broken<br/>
    TIME        Mon May 09 10:46:46 2011<br/>
    RELEASE     720<br/>
    COMPONENT   NI (network interface)<br/>
    VERSION     40<br/>
    RC          -6<br/>
    MODULE      gwxx.c<br/>
    LINE        646<br/>
    DETAIL      NiIRead: P=127.0.0.1:3306; L=0.0.0.0:50496<br/>
    SYSTEM CALL GwRead<br/>
    ERRNO       10054<br/>
    ERRNO TEXT  WSAECONNRESET: Connection reset by peer<br/>
    COUNTER     2<br/><br/>
         at com.sap.conn.jco.rt.MiddlewareJavaRfc.generateJCoException(MiddlewareJavaRfc.java:662)<br/>
         at com.sap.conn.jco.rt.MiddlewareJavaRfc$JavaRfcClient.connect(MiddlewareJavaRfc.java:1362)<br/>
         at com.sap.conn.jco.rt.ClientConnection.connect(ClientConnection.java:721)<br/>
         at com.sap.conn.jco.rt.PoolingFactory.init(PoolingFactory.java:103)<br/>
         at com.sap.conn.jco.rt.ConnectionManager.createFactory(ConnectionManager.java:293)<br/>
         at com.sap.conn.jco.rt.DefaultConnectionManager.createFactory(DefaultConnectionManager.java:46)<br/>
         at com.sap.conn.jco.rt.ConnectionManager.getFactory(ConnectionManager.java:262)<br/>
         at com.sap.conn.jco.rt.RfcDestination.initialize(RfcDestination.java:509)<br/>
         at com.sap.conn.jco.rt.RfcDestination.getAttributes(RfcDestination.java:347)<br/>
         at com.sap.conn.jco.rt.RfcDestination.getAttributes(RfcDestination.java:27)<br/>
         at sample.StepByStepClient.step1Connect(StepByStepClient.java:74)<br/>
         at sample.StepByStepClient.main(StepByStepClient.java:304)<br/>
    Caused by: RfcException: [null]<br/>
        message: Connect to SAP gateway failed<br/>
    Connection parameters: TYPE=A DEST=ABAP_AS_WITHOUT_POOL ASHOST=localhost SYSNR=06 PCS=1<br/>
    <br/><br/>
    Second question: What seems to be the problem with my sample application? Do I need to use a different Java Connector for SAP Business One or SAP Business One does not support Java Connector?
    <br/><br/>
    Please help.
    <br/><br/>
    Thank you all.
    Edited by: kevinroy on May 9, 2011 4:51 AM

    Hi,<br/>
    Thank you very much for the reply. I am now able to move forward with what I am doing.<br/>
    I used the following code in connecting but am encountering an error:<br/>
    public class ConnectSAP {
         // company interface
         public ICompany company;
         private SBOErrorMessage errMsg = null;
         public static void main(String[] args) {
              ConnectSAP company = new ConnectSAP();
              company.conn();
         //method make connection andinitialize company instance
         public int conn() {
              int rc = 0;
              try {
                   company = SBOCOMUtil.newCompany();
                   company.setServer("192.168.0.216"); //192.168.0.216
                   company.setCompanyDB("SBODemoUS");
                   company.setUserName("manager");
                   company.setPassword("manager");
                   company.setDbServerType(SBOCOMConstants.BoDataServerTypes_dst_MSSQL2005);
                   company.setUseTrusted(new Boolean(false));
                   company.setLanguage(SBOCOMConstants.BoSuppLangs_ln_English);
                   company.setDbUserName("username"); 
                   company.setDbPassword("password");
                   //company.setAddonIdentifier("...");     
                   //company.setLicenseServer("...");
                   rc = company.connect();
                   if (rc == 0) {
                        System.out.println("Connected!");
                   } else {
                        errMsg = company.getLastError();
                        System.out.println(
                             "I cannot connect to database server: "
                                  + errMsg.getErrorMessage()
                                  + " "
                                  + errMsg.getErrorCode());
              } catch (Exception e) {
                   e.printStackTrace();
                   return -1;
              return rc;
         public void freeConnection(){
              company.disconnect();
    }<br/>
    I am getting the error "Failed to Connect to SBOCommon -111".<br/>
    Error is still the same even if I set UseTrusted to true and comment the DbUserName and DbPassword.<br/>
    Do I need to specify the license? Or login to SAP before connecting?<br/>
    Thank you.

  • Java Connectors

    Hello Experts,
    We have a real time requirement for getting data from r3 to bi and none of our data sources are delta enabled.
    So we are planning to use java connectors for this. I found that the SAP Query Connector could report realtime from BI or R3. But we need something which gets data from r3 to BI.
    Can you please lead me by guiding me towards the connectors that could be used for getting data from r3 to bi realtime?
    thanks,
    Sri.
    P.S. I promise to award points for helpful answers. Thanks Again!
    Message was edited by:
            Srirama Chandra

    use jco interface to get data from r/3

  • Implementing a java connector

    Has anyone tried implementing a JCA Resource Manager the would integrate into a J2EE server for communication with a remote server?
    I'm thinking about implementing one for connectivity with an Http server....
    Has anyone tried something of this sort?

    mkx wrote:
    Hi,
    we are currently implementing a Java connector for the X11 windowing system and we're running into trouble with event handling.
    What we are doing is to fork a thread from the main application that will then invoke a native event handling loop that will listen for X11 events. Whenever such an event occurs, it will call back to a Java object to report that event.
    While receiving and reporting events works fine, any successive calls from the main thread to the native windowing functions will block the program.
    Let me outline the call order again:
    1. Java application is started, main thread created
    2. New Java thread is started that invokes a native method that itself runs in a while loop
    3. Normal program flow continues in the main Java thread
    4. Main Java thread now calls some native method, and locks up
    Any idea why this is happening? Is it not possible to invoke the same native code within two distinct Java threads? I have looked into the JNI functions AttachCurrentThread and DetachCurrentThread, but they only seem to handle the problem that two native threads share the same JVM, but that's not what we need. We have two Java threads that need to share the same native code.Are you sure its not a problem with the something in the X11 code being non-reentrant?
    http://www.gnu.org/software/libc/manual/html_node/Nonreentrancy.html#Nonreentrancy
    Jim S.

  • Default User name & Password for NETWEAVER

    Hi Everybody,
                  I am a Basis Admin in my company working with ABAP Stack installed in my Server.
           Now I have installed Java Stack for Netweaver in a Separate System to Understand the Functionality of Netweaver & its Concept.
         Now the Problem is i am not able to Login Netweaver. I dont know the Default User name & Password for Netweaver after installing it.
        Also, what are the Main features of Netweaver Compare to ABAP Environment
      Could somebody help me to Understand Netweaver and its Default User name & Password to login?
    Thanks,
    Siva

    Hi
    The default asmin user for your Java add in would be J2EE_ADMIN and guest user would be J2EE_GUEST.
    The default password would be the password you provided at the time of installation.
    Regarding information on Netweaver Java, follow link:
    http://help.sap.com/saphelp_nw04/helpdata/en/0d/a3bb3eff62847ae10000000a114084/content.htm
    Regards
    Rahul

  • Java Connector setup

    Hi Guys,
    I have to set up the java connector for my appplication, but I ma not able to find the jar library files. Is there any location to find these files or do I need to make use of any other file ?
    Any help is highly appreciated.
    Regards
    Siva

    Hi Gianluigi ,
    Many thanks for ur reply.
    I am using B1 2005 Sp1. I have installed all the components from the installer, but I still dont find the folder " SAP B1 DI API " installed under program files / sap. Am I missing something or do I need to download a different installer.
    Please assist.
    Thanks
    Siva

  • Java connector license

    Our company purchased business one 2005A.  Our SAP business partner told us that to use the sdk java connector for our own purposes we needed to purchase a license (~10K US).  Originally they said we could do any customization we wanted without any additional cost but when we asked for the SDK they said to cough up the money.  Can someone tell me what we need in order to do use the java connector inhouse?

    Hi Chester,
    If you are going to be doing any development using the DI API (which includes the Java connector) then you must have a development license from SAP. I'm not sure on pricing but $10K sounds about right. There used to be a restriction that you needed at least one person in your company who was certified as a development consultant but I don't know if this rule still applies.
    You can develop using the UI API without the development license but this only allows customisation of the user interface of the SBO client.
    Kind Regards,
    Owen

  • Sun Java System Connector for Microsoft Outlook 7.3 Update 1

    Good Day,
    Could somebody please advise me where I can download:
    Sun Java System Connector for Microsoft Outlook 7.3 Update 1
    Thanks,
    Gilbert

    Gilbert_Gerber wrote:
    I thought it is suppose to be part of Sun Java Communications Suite 6 update1?You can download it from the following location:
    http://wikis.sun.com/display/CommSuite6U1/Get+the+Software
    Select the Download Link => Platform: Windows
    Regards,
    Shane.

  • Developing 3rd party UWL Connectors for People soft system or other Java sy

    Hi Everyone
    We have one requirement that is u201CDeveloping 3rd party UWL Connectors for People soft system or other Java systemu201D and get the workflows from those system and display in portal though UWL.
    We used u201CUWL Custom Connector APIu201D and written all the required methods.
    Could any one help us u201CWhere can we specify the 3rd party system details?u201D
    If possible please send some sample coding for it.
    Thanks in advance
    Sat

    Hi Satya!
    Like the default SAP backend UWL connectory your 3rd-party connector should make use of a PCD System Object. This system is a mere java component with nothing more than a portalapp.xml defining all the system properties.
    Create a system in the portal system landscape based on the System PAR you depoyed.
    For every UWL connector you create in portal you define a system alias. This alias has to match the one of your new system object.
    And now for the sad part: I didn't find any clue yet about how to access the system from a custom UWL connector. The system alias is available in the method getItems(), but no hint whatsoever how to get the system object to the alias.
    I'm still investigating this, since i'm exactly at this point.
    Regards,
      Juergen

  • Where can i download Java Slim for minisap netweaver

    Folks, where can i download Java Slim for minisap netweaver to implement some solutions of XI for study?
    I'm trying to find it on sap download directory but i never find anything...
    After all, someone knows if with this version of minisap netweaver i can do some implementations on xi?
    Very thanks!

    use this link:
    http://www.sdn.sap.com/irj/scn/downloads

  • SCOM Connector for java

    Hi,
    I am trying to create a connector for Microsoft SCOM(2007) . The wsdl is accessible at server and able to generate stub using JWSDP. But When i try to connect using the generated stub, I am getting an error,
    Error..The security context token is expired or is not valid. The message was not processed.
    javax.xml.ws.soap.SOAPFaultException: The security context token is expired or is not valid. The message was not processed.
    at com.sun.xml.ws.encoding.soap.ClientEncoderDecoder.toMessageInfo(ClientEncoderDecoder.java:80)
    at com.sun.xml.ws.encoding.soap.client.SOAPXMLDecoder.toMessageInfo(SOAPXMLDecoder.java:200)
    at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.receive(SOAPMessageDispatcher.java:549)
    at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.doSend(SOAPMessageDispatcher.java:288)
    at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.send(SOAPMessageDispatcher.java:153)
    at com.sun.xml.ws.encoding.soap.internal.DelegateBase.send(DelegateBase.java:85)
    at com.sun.xml.ws.client.EndpointIFInvocationHandler.implementSEIMethod(EndpointIFInvocationHandler.java:176)
    at com.sun.xml.ws.client.EndpointIFInvocationHandler.invoke(EndpointIFInvocationHandler.java:105)
    at $Proxy27.setup(Unknown Source)
    at Test.OmcfProxy.main(OmcfProxy.java:238)below is the code part:
    ConnectorFrameworkDataAccess connectorFrameworkDataAccess = new ConnectorFrameworkDataAccess(new URL("http://a3a-mspoctst1:51905/ConnectorFramework?wsdl"),new QName("http://tempuri.org/","ConnectorFrameworkDataAccess"));
    IConnectorFramework port = (IConnectorFramework)connectorFrameworkDataAccess.getPort(IConnectorFramework.class);
    connectorInfo.setName(objectFactory.createConnectorInfoName("Test OMCF"));
    String connectionResult = port.setup(ObjectFactory.createConnectorInfo(connectorInfo));Thanks for any help,
    Thej

    I've made it!
    Here is the code (if it can help someone else...):
    // Esegue la funzione di callback
    try {                    
         // Creazione della destinazione
         JCoDestination dest = JCoDestinationManager.getDestination("MY_DESTINATION");
         // Recupero della RFC
         JCoFunction rfc = dest.getRepository().getFunction("MY_RFC_FUNCTION");
         // Impostazione parametri di input
         rfc.getImportParameterList().setValue("PROTNR", id);
         rfc.getImportParameterList().setValue("STATO", stato);
         rfc.getImportParameterList().setValue("GRUPPO", gruppo);
         // Esecuzione della RFC
         rfc.execute(dest);
    catch (Throwable e) {
         isBackendCallSuccessful = false;
    DEPENDENCIES: tc/bl/jco/api
    Edited by: pietro.m on Apr 5, 2011 12:27 PM

  • Programming restrictions for JCA (Java Connector Architecture)

    I need to know programming restrictions for JCA (Java Connector Architecture) from a Client program's perspective. Could somebody help my?

    If you are on the client side of JCA you just have to use the resource adapter implementation. Therefore client code is limited to the package javax.resource.cci. So I think there are no restriction from JCA itself.
    What technique you use on client side to connect to the resource adapter is up to you and "just" have to follow the restriction in that area.

  • Correction instructions for Netweaver JAVA

    Hello.
    Can someone tell me how you implement correction instructions for Netweaver JAVA modules, here portal-apps (mss) ?
    Or at least put me on the right track ?
    I have a note that needs to be implemented which contains JAVA (JSP) source code, which alternatively can be implemented via SP.
    Can this be done via NW Developer Studio without NWDI ?
    I have not found any info regarding this, any help is appreaciated.
    Best Regards Gerhard Andreassen.

    check this Note 872892 - JDI NWDI Cookbook for ESS XSS

  • Where can i find the BI Java Connector Files (for example: bi_sdk_jdbc.rar)

    Hi,
    where can i find the BI Java Connector Files:
    bi_sdk_jdbc.rar
    bi_sdk_xmla.rar
    bi_sdk_sapq.rar
    bi_sdk_odbo.rar
    Can anyone help me?

    hi Christian,
    these files should be included in bi java sdk
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/webcontent/uuid/78b3db58-0501-0010-b895-f75cd8fdf674 [original link is broken]
    hope this helps.

Maybe you are looking for

  • How to publish a 3rd party webservice ?

    Hi Guys, I have a wsdl file of the 3rd party webservice and now i need to consume this service in ABAP on ECC 6.0. I am following the video presentation by Thomas Jung /people/thomas.jung/blog/2007/12/17/consuming-services-with-abap while doing so th

  • 10g listener cannot start after install 11g

    Hi, I install 11g R2 into one of 10g windows 2003 server, but I did not perform upgrade, I want the 11g coexists with 10g. But after I install 11g and create a new 11g instance, I found that the listener cannot be started, until I change the environm

  • Photoshop CS5 used up all RAM after closing a file

    Dear All,   Starting for a while, after opening a file, around 7M, the file is closed. However, after that, the whole computer becomes sluggish and the memory usage is close to 98% (total 4G).   What contribute to such strange behaviour?   The PC is

  • Successfull installation, But Cannot Launch Application Express 2.2

    Hi I have success fully installed the application express software, but however I could not launch the application express I have followed each and every step given in the installation documents. I have created the marvel.conf file with the following

  • Embedded fonts are missing characters in display despite having all glyphs...

    Hi, As per the subject, I have a vast array of different fonts that I need to load on demand via CSS to SWF. For the most part, this works very well. I have around 600 fonts where everything is just fine. I also have some problem fonts like the below