cancel
Showing results for 
Search instead for 
Did you mean: 

Big Problem: ABAP-RFC and JCO client

Former Member
0 Kudos

Hi Friends,

I am a java developer in trouble with a ABAP/RFC, and I dont have idea whoe lese ask for help

This is the situation:

In order to send a "candidates resume" (curriculum) in to SAP,

the ABAP developers made for me a RFC which uses the transaction PB10 (applicant master data).

The rFC when tested in the SAP GUI works fine.

I wrote a java client which calls the RFC, send the parameters and expect the results.

This client uses JCO to access SAP.

But, from the java client the RFC works PARTIALLY.

I mean, it creates the applicant, fills his name, address (infotypes 002,006,001)

but doesnt fill the education a qualifications (infotypes 22 and 24).

I am trying to figure why.

Some of the internal ABAP errors code that we get are:

DC -006

PA -054

5A -135

Also I get this message:

"Exception condition "CNTL_ERROR" raised"

Please, I am a java-per lost in the SAP land.

Thanks in advance by any help!!!

PD: I could sent you the ABAP code of the RFC or the java code of the client if necessary.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Go to SE91 transaction in SAP and look up the details of error codes...

DC - 006 (Control Framework: Fatal error - GUI cannot be reached)

PA - 054 (Please specify an applicant number)

5A - 135 (Data fields have not been filled)

this will help you analyze you problems...

Thanks,

Shashi

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

That CNTL_ERROR tells me that its trying to access a gui control which I don't is possible thru jCo. Gui Controls are very dependent on the SAP Gui Frontend. Since you are calling the transaction thru jCo, it oviously doesn't know what to do with it. Any chance that you can get a hold of the ABAP developer which wrote it initially? Maybe there is another transaction that can be used instead of the PB10 transaction.

Regards,

Rich Heilman

Former Member
0 Kudos

Thanks Rich!!

As Muphy´s law said:

"The solution of the problem changes the nature of the problem",

so, now I will try to find some alternative to the PB10.

I guess the others erros codes are derivated from the GUI problem.

Thanks very much!