Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
326 views

How to control transaction (commit/rollback) when reading an IDOC

When using JCo (3.x) to read IDOCs sent from a SAP server, what action should be taken to indicate the message has been properly received (i.e. commit)? In Java I imagine something like: public ...
2
votes
1answer
426 views

How can I get the SAP JCo middleware(com.sap.mw.jco.*) APIs in Mac

I tried to make use of some classes of com.sap.mw.jco.*, such as IRepository and JCO. But my IDE(Intellij) can not recognize this classes. There are always compiling errors. I tried to add the ...
2
votes
2answers
779 views

RFC for remote call transaction in SAP

How do I call the SAP report (for example RSPARAM) with help JCo? What RFC may be used to remotely call SA38 transaction with RSPARAM (e.t.c.) as parameter and then return results for later work ?
1
vote
1answer
78 views

Connect Sap System

I am working in a Java EE project that integrates with SAP system, and I am trying to run a simple standalone java class that calls a RFC. My snippet of code is JCO.Client mConnection = ...
1
vote
2answers
104 views

Is JCO (java connector of SAP) thread safe?

I did not really manage to find proper documentation about this. There are the classes in JCO com.sap.conn.jco.JCoDestination and com.sap.conn.jco.JCoDestinationManager. My questions about them: are ...
1
vote
0answers
157 views

Does spring have support for SAP JCo transactions?

Does Spring have support for JCo transaction management? How can Transactions be combined with SAP's JCo or JRA transactions? Regards
1
vote
1answer
2k views

Tutorials, manuals, documentation for using SAP JCo 3.x

Do you know any decent documentation source for using JCo 3.x? Most of the materials I could find are pretty outdated and refer to previous versions (JCo 2.x). In case, anyone wondered, the things I ...
1
vote
2answers
252 views

Is there any RFC or BAPI implementing the transaction rsscd001 for displaying change documents in SAP?

I would like to know whether there is any RFC or BAPI functions to display change documents based on input query in SAP. The customer requirement is to implement a java monitor system on SAP without ...
1
vote
1answer
1k views

Why I got DATA_BUFFER_EXCEED when calling RFC_READ_TABLE to CDPOS in java

The requirement in my java/groovy program is like this: Users are allowed to input table names and table fields as a query input parameters and expect to get some the query result from SAP. From the ...
1
vote
2answers
419 views

Building JCoServer without Properties-File

I got another JCo-related question and hopefully finding help. With JCo you can easily build up a connection like it is explained in the example sheets which came with the JCo-library. Unfortunately, ...
1
vote
1answer
302 views

GLAccount Information - Simulate BAPI_INCOMINGINVOICE_CREATE

I am currently working on an application that posts invoices to SAP using Java/JCo. I am using BAPI_INCOMINGINVOICE_CREATE for the purpose and it works perfectly fine. Now I have an additional ...
1
vote
1answer
285 views

How can SAP tRFC server tell client through JCo that function has been carried out?

SAPs "Transactional RFC Technical Description" document (release 4.0, see ...
1
vote
2answers
493 views

“NOT_SUPPORTED_BY_GUI” Exception in JCo

We are having a BAPI that uploads the specified document to SAP. The BAPI accept three parameters: ID, FILE_LOC and FOLDER_NAME. And I'm setting the values as follows in the JCo code: ...
0
votes
1answer
92 views

Creating Purchase Info Record in SAP

I am trying to create a Purchase Info Record (ME11) in SAP using the below JCo code: It executes without fail and throws no error, but i am not able to get the newly created info record in SAP. In ...
0
votes
2answers
124 views

Error using SAP BAPI “CSAP_MAT_BOM_MAINTAIN”

I am trying to use the SAP BAPI "CSAP_MAT_BOM_MAINTAIN" to create a BOM in SAP but i get error. IFunctionTemplate ft = mRepository.getFunctionTemplate("CSAP_MAT_BOM_MAINTAIN"); ...
0
votes
0answers
217 views

No end point for service interface! “Error”

I'm getting No end point and attachment support error while I'm trying to reach my webservice. I can make the authorization but then I can not be able to get to the webservice because of this "No end ...
0
votes
2answers
331 views

Could not initialize class com.sap.conn.jco.rt.JCoRuntimeFactory

Please help, I tried all! I can run my app that use JCo on a Windows Server 2003 64x with glassfish, please help!
0
votes
1answer
628 views

how to access the SAP JCo connector from a Java Web Service?

I've a java web service in Eclipse for Mac using the JCo connector to access a number of RFCs, but my java code could not access SAP that had the error "(102) JCO_ERROR_COMMUNICATION: Connect to SAP ...
0
votes
1answer
87 views

The problem with S_RFC in JCO

The user has the right to S_RFC object: ACTVT: 16 RFC_TYPE: FUGR RFC_NAME: RFC1, SDIFRUNTIMЕ, SDTX, SPF1, SYST, SYSU, THFB, SRFC. Getting error: "User MY_USER has no RFC authorization for ...
0
votes
0answers
116 views

how to save an edited row in a datatable when we have list of rows

I'm using JSF 2.0 as framework and SAP JCo as middleware to connect to SAP where my backend is SAP ABAP. I have list from database which is shown in a datatable on the page, out of which 2 fields are ...
0
votes
2answers
583 views

Could not load middleware layer 'com.sap.mw.jco.rfc.MiddlewareRFC'

I'm using Sap Jco to connect to SAP database with the front end being Java(JSF), When I connect to SAP with: try { mConnection =JCO.createClient("400", // SAP client "c3026902", // userid ...
0
votes
2answers
303 views

SAP Java Connector (JCo) mocking/testing JCoFunction and/or JCoParameterList

i need to test a module without actually calling our sap provider via executing a "real" JCoFunction. how do i instantiate a "formally correct" JCoFunction? i can even just deal with a ...
0
votes
1answer
393 views

JCo | How to iterate column wise

The data from SAP is returned as a JCo.Table. However, we don't want to display ALL the columns in the VIEW. So, what we have done is, we have created a file called display.xml which has the ...