cancel
Showing results for 
Search instead for 
Did you mean: 

Call RFC Function module from iOS App trough SUP

Former Member
0 Kudos

Hello Colleagues,

in SAP Backend I implemented a RFC Function Module with two import parameters and several output parameters (tables & structures). I also created

a MBO in SUP with a "other" operation that are mapped to the import and export parameters of the RFC. Now, I want to "access" these MBO from my mobile application to get data from SAP Backend

First, I call the MBO itselfs from my iOS App

Abschlussprojekt_OPEN_ACCT_ITEMSSearch_ContractOpertation *other = [Abschlussprojekt_OPEN_ACCT_ITEMSSearch_ContractOpertation alloc] init];

[other setIV_BUKRS: @"1000"];

[other setIV_RECNNR: @"0000000000447"];

[other save];

[other submitPending];

When running the application I got a "Replay Successful" Message but when I want to access the data from backend via coding line

SUPObjectList *tmpdata = [Abschlussprojekt_OPEN_ACCT_ITEMS findAll];

there are no data in it

So can you please help me?

Thanks in advance & Best regards,
Christoph

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hey Aaron, thanks for your answer. I already tried it but it still doesn't work. Maybe I have to work with load/sync parameters?

Former Member
0 Kudos

Did you try having the AbschlussprojektDB synchronize after saving your parameters and checking your data?