Hi experts,
As some of you know, we are developing native Android application with SAP MBO, a work order application. Creating layouts isn't so hard but connecting them all together through Java is. So, one of my first questions would be:
- We need to provide a login screen with the user credentials from SAP. In MBO, there are Runtime data source credentials where I put my credentials, but now we have to use USERNAME and PASSWORD variables. Can you explain me how to work with these variables in Login Activity. What is the best practice for login functionality in SAP MBO native Android app?
- Our data model consists of two level header items tables (header, items, and two more items in the first level items). My idea is to use this activity flow:
Login activity, Search activity (for selecting work orders), List view activity (for displaying selected work orders), Master detail activity (with items on the left and details on the right fragment). Work order header have no importance because it will be created in SAP, not in the field, so information from List view would be sufficient. What is important is items (first and second level) because there are the fields which is to be filled on field (and offline). My concern is how to display those two second level items. Through Table layouts in Detail fragment of Master detail flow? Or maybe to open new activity (but then again will have to use List and details). Can you give me some advice about this?
That's for now. Thanks.
Message was edited by: Vladimir Erakovic Finally a useful document: "http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc01908.0233/doc/pdf/smp_devguide_android_object_api_applications.pdf" Questions are still opened..