cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding Mobile Application

Former Member
0 Kudos

Hi ,

  I am creating simple android mobile application

  In my application i have one TexBox  as sales organization and  under that i have One Button .

when i entered the sales organizations in my mobile click the button it should bring the all customer Present in the Sales Organization .

I created Application But i dont know how to connect the sap systems from my  Mobile(Android Operating Systems ) .

if any one knows it Please provide the way for solutions .

Thanks ,

Srikanth

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Srikanth,

      Here are the 3 days you can create your Android mobile application with SUP and i am giving references for all of them as a starting point.

1. If your application is going to use ODATA and SAP NetWeaver Gateway then you can use the below guide as starting point.

http://scn.sap.com/docs/DOC-23532

2. If you are planning to build Hybrid Web Container application with SUP then following document gives high level overview about that.

http://www.sybase.com/files/White_Papers/Sybase_SUP_Hybrid_Web_Container_Article_wp.pdf

3. If you are planning to build a native app with MBO design in SUP then you can refer to the following official documentation from SAP and SYBASE.

http://infocenter.sybase.com/help/index.jsp

     In fact the last link gives you complete official documentation. You can go to 'SYBASE UNWIRED PLATFORM 2.1 ESD2->Developer Guide: Android object API Applications' for more developer level details. Hope this helps.

Best Regards,

Manne.

Former Member
0 Kudos

Thanks a lot RajaShekar .

Answers (1)

Answers (1)

sujith_prathap
Advisor
Advisor
0 Kudos

Hi Srikanth,

                   Currently for you approach you can use the service document approach. SAP exposes services much similar to that of OData. You should get hold of some such service document that suits your purpopse. Like you mentioned you can do a get on a service document url on click of your button to populate the text box.

The steps would be as follows.

1) Obtain the Service document URL. (For Ex, this you give you the list of all customer in the organisation).

2) Accept the organisation whose customers you want to see.

3) Modify the URL to search for the organsation by appending the search parameters to the url.

4) You should then do a generic GET which gives you a xml response.

5) Parse this response for the name of the customer and store it in an array.

6) Display contents of the array.

Best Regards,

Sujith