Questions tagged [sapjco3]

Use this tag for SAP JCo 3.x. SAP JCo is the short-cut for "SAP Java Connector". JCo refers to a Java library used to connect to SAP systems through the SAP RFC protocol.

JCO is the short-cut for Java connector. JCO refers to a Java library used to connect to SAP systems through the SAP RFC protocol.


Related tags

87 questions
0
votes
1 answer

How to run a Azure build pipeline and download a dependency which is not available in Maven repo

Trying to deploy an MULE API and as CI/CD I am using Azure Build Pipeline, but we are getting following error : Failed to execute goal on project mule-fts-sap-eapi: Could not resolve dependencies for project…
0
votes
1 answer

Mule Application deploy SAP connector issue

I am trying to deploy an Application in Mule 3 with Anypoint Studio version 6.6.0, but getting several errors in the problems tab, it seems it doesn't find the SAP connector dependency though I have included it in the pom.xml file of the application…
0
votes
1 answer

SAP RFC Call not returning updated table and RFC names

I am working on a .NET application to call SAP RFCs using the SAP JCo3 libraries. It works and everything is fine, but we've recently had a client reach out to us to tell us that when they change a RFC Table name or add a Table our application does…
Quintonn
  • 770
  • 8
  • 29
0
votes
1 answer

How To Get only Transparent Table in SAP Table using Java Connector (JCo)

I'm looking for fetching only Transparent Table for RFC_READ_TABLE using Java JCoFunction JCoFunction function2 = template2.getFunction(); JCoTable jcoTabled = function2.getTableParameterList().getTable("DATA"); Result : /BEZ3/CHCDPAL …
Abhishek C
  • 13
  • 5
0
votes
0 answers

SAP Java Connector

I am trying to develop an application in Java with the SAP Java Connector, but I have problems when I try to execute the jar file that I export from Eclipse. I have this error: Exception in thread "main" java.lang.NoClassDefFoundError: Could not…
0
votes
1 answer

com.sap.conn.jco.AbapException: (126) ERROR: ERROR Message 172 of class 29 type E

I am getting below exception while executing the JCoFunction. JCoFunction functionBOMCreation = destination.getRepository().getFunction("CSAP_MAT_BOM_CREATE"); functionBOMCreation.execute(destination); Getting this…
0
votes
1 answer

sapjco3.dll already loaded in another classloader

I'm using Tomcat 9 with jdk8.I have only 1 webapp deployed on the Tomcat server. Sapjco3.jar and dll placed in WEB-INF\lib of webapps or in Tomcat\lib folder. Come what may this error doesn't go? What can be the cause? Tried all the options found…
Seema
  • 1
  • 2
0
votes
0 answers

SAP JCo Server for multiple (dynamic) SAP systems and repositories

We have two SAP systems (SYS_A and SYS_B). From the SYS_A we want to call an RFC FM from the system SYS_B (an RFM, which is physically on the SYS_B system, so JCo Server repository should also point to SYS_B repository) with the destination…
Andrew
  • 33
  • 3
0
votes
1 answer

WSO2 SAP endpoint property file - searching for wrong file name and path

I have "export" proxy service which aims to "obtain" sequence. The sequence points to ${server}/services/sapBapi or "sapBapi" proxy service. The "sapBapi" proxy service points to gov:endpoints/sapbapiendpoint.xml endpoint, where is the concrete…
0
votes
2 answers

JCO_ERROR_RESOURCE: Destination ABAP_AS_WITHOUT_POOL does not exist... error while connecting via JCo

I am working on a Java app that needs to get data from our SAP system laying in SAP table. I try to connect the SW with SAP system using SAP Java Connector 3.X, but I'm having trouble with the Destination. I used the Code-Examples that came with the…
Deep13
  • 1
  • 1
  • 4
0
votes
0 answers

How to configure Spring Boot application run inside Eclipse STS

I have a Spring Boot application developed in STS which connects to SAP through SAP Java connector. That connector comes in a jar whose rules forbid renaming or repackaging the archive. Since the application must run on several platforms, I've…
watery
  • 5,026
  • 9
  • 52
  • 92
0
votes
2 answers

Sap Java Connector Application in Docker

I am trying to build a sap java connector using springboot. To build this app we need sapjco3.jar and sapjco3.so. I am using Hibersap library and have added the maven jar dependencies. In the documentation it says to run the the app we need pass…
0
votes
1 answer

Jcoserver status changing to STOPPING (not STOPPED) when stop() is called

I am using SAPJco3.jar for connecting to SAP using Java. However, when I am trying to stop my bridge, I get some error. The code for disconnection is this : public void tearDown() { log.info("tearDown() | Starting tear down ..."); …
Srijani Ghosh
  • 3,935
  • 7
  • 37
  • 68
0
votes
1 answer

SAP JCo invoking BAPI_MATERIAL_DISPLAY

I was trying to invoke BAPI_MATERIAL_DISPLAY functional module from SAP JCo, This is how I pass my input parameter. function.getImportParameterList().setValue("MATERIAL", "10"); From my program output I got The material 10 does not exist or is not…
0
votes
1 answer

What format does the TID have within the JCo?

I would like to know what format the TID does look like? We did a short reference implementation using the example StepByStepServer which is provided by SAP and there the TID serverCtx.getTID() has the following format: TID :…
benniz
  • 146
  • 7