cancel
Showing results for 
Search instead for 
Did you mean: 

execute function module from sapportal without to create the users in R/3

Former Member
0 Kudos

I have a pdk application in sapportal. This pdk application will be execute for any sapportal users which don't have R/3 users. The problem is the follow.. in this pdk application there is a R/3 function module that must be execute, ¿how can i execute this function module without to create the users in R/3?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

prem thanks for your answer, i will try it and i'll let you know.

Answers (2)

Answers (2)

Former Member
0 Kudos

prem i took other way to solve my problem, thanks for all.

Former Member
0 Kudos

hi marcel.

What exactly does your pdk application do? Have you created it yourself?

Because to execute a function module, you could use JCo which requires just One User to do the connection part.

It goes like this:

JCO.Client mConnection = null;
JCO.Repository mRepository = null;
JCO.Function function = null;
  
 mConnection = JCO.createClient("100", "abcuser", "abcpassword", "E","1.1.1.1", "01");
mConnection.connect();