cancel
Showing results for 
Search instead for 
Did you mean: 

Custom Transaction in Mobile ( laptop)

Former Member
0 Kudos

My requirement is to build a custom transaction in Mobile 5.0 ( Laptop solution) which needs to interact with SAP R/3 using RFC function calls.

I am planning to use .Net connector to connect R/3. How do I pass the value back and forth to the function module from screen.

In research I found that I can only use .Net connector in BO layer.

I used tile and mobile is asking me to bind to Bdoc but I don't have one?

highly appreciate your response.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member186644
Contributor
0 Kudos

Hi Praveen,

I don't think this would be possible. The transfer of data must be achieved through the middleware functionality that is provided.

To connect directly to R/3 would create database inconsistencies and security concerns.

Regards,

Gervase

Former Member
0 Kudos

thanks Gervase.

Reason for not using middleware is that we need to have latest R/3 data in the laptop.

My primary question is that, can we bind data coming from a call to an external dll to UI in MAS.

In BOL, i will make a call to the external dll to recevie/send data. Can i use this data, in the form of tables, to bind to UI.

Edited by: Praveen Kondamadugu on Mar 2, 2009 6:27 PM

Edited by: Praveen Kondamadugu on Mar 2, 2009 6:27 PM

Former Member
0 Kudos

Hi,

of course you can do this.

Firstly you need to define/create a new Business Object (Bdoc NOT supported) with attributes which you want to have.

In your interface you take the recordset which you got from the external interface, create & fill a new Business Collection based on this BO definition mentioned above.

Finally you only need to assign this BCol to the anchor BCol of the current tile.

Regards,

Wolfhard

Former Member
0 Kudos

thanks Wolfhard.

This is how I am doing it right now. let me see if I can achieve what I want to.