Applications of SAP Mobility

I need to know when we already have SAP logon pads available for the devices like IPAD and IPHONE then what more can be done with respect to mobility and what kind of applications can be developed and deployed for the same ?
Regards,
Vaibhav

Hi,
you can develop any kind of app, as long as you use Netweaver Mobile and/or Sybase SUP. Both products work great if it comes to build apps that handle business processes on small devices like iPhone or iPAD. Adding both together gives you the best of two worlds and has some benefits here.
As said: whatever business process you have today, that needs to enter data on paper and later to put this data into R/3 manually can be done with this landscpae easily.
Hope ths help,
regards,
Oliver

Similar Messages

  • Free Webinar: Integrate your ABAP Documents with SAP Mobile Documents

    Learn how to integrate documents stored in your ABAP-based application into SAP Mobile Documents. In this webinar, you will also learn how to share documents out of your ABAP application with SAP Mobile Documents.
    For further details check out http://scn.sap.com/docs/DOC-60383.

    The recording of the session is now available at http://scn.sap.com/docs/DOC-60383. There is also a new blog on what you have to do to share your documents from your ABAP system How to share your documents from ABAP with SAP Mobile Documents.

  • Error while uploading images to SAP Mobile Documents from iPad application using ObjectiveCMIS.

    Hi,
    I am getting the error while uploading images to SAP Mobile Documents from custom iOS(iPad )application using ObjectiveCMIS library.
    My Custom method is as follows:
    - (void)createSalesOrderRouteMapImageInFolder:(NSString*)salesOrderRouteMapFolderId routeMapImageTitle:(NSString *)imageTitle routeMapContent:(NSData *)imageData
        NSInputStream *inputStream = [NSInputStream inputStreamWithData:imageData];
        NSMutableDictionary *properties = [NSMutableDictionary dictionary];
        [properties setObject:[NSString stringByAppendingFileExtension:imageTitle] forKey:@"cmis:name"];
        [properties setObject:@"cmis:document" forKey:@"cmis:objectTypeId"];
        [self.session createDocumentFromInputStream:inputStream
                                           mimeType:@"image/png"
                                         properties:properties
                                           inFolder:salesOrderRouteMapFolderId
                                      bytesExpected:[imageData length]
                                    completionBlock:^(NSString *objectId, NSError *error) {
                                        NSLog(@"Object id is %@",objectId);
                                        if(error == nil) {
                                            [inputStream close];
                                            NSLog(@"Uploading Sales order route map successfully.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderSuccessNotification object:nil];
                                        } else {
                                            [inputStream close];
                                            NSLog(@"Uploading sales order route map failed.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderFailedNotification object:error];
                                    } progressBlock:^(unsigned long long bytesUploaded, unsigned long long bytesTotal) {
                                        NSLog(@"uploading... (%llu/%llu)", bytesUploaded, bytesTotal);
    OBjectiveCMIS Method in which i am getting error during upload:
    - (void)sendAtomEntryXmlToLink:(NSString *)link
                 httpRequestMethod:(CMISHttpRequestMethod)httpRequestMethod
                        properties:(CMISProperties *)properties
                contentInputStream:(NSInputStream *)contentInputStream
                   contentMimeType:(NSString *)contentMimeType
                     bytesExpected:(unsigned long long)bytesExpected
                       cmisRequest:(CMISRequest*)request
                   completionBlock:(void (^)(CMISObjectData *objectData, NSError *error))completionBlock
                     progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
        // Validate param
        if (link == nil) {
            CMISLogError(@"Must provide link to send atom entry");
            if (completionBlock) {
                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeInvalidArgument detailedDescription:nil]);
            return;
        // generate start and end XML
        CMISAtomEntryWriter *writer = [[CMISAtomEntryWriter alloc] init];
        writer.cmisProperties = properties;
        writer.mimeType = contentMimeType;
        NSString *xmlStart = [writer xmlStartElement];
        NSString *xmlContentStart = [writer xmlContentStartElement];
        NSString *start = [NSString stringWithFormat:@"%@%@", xmlStart, xmlContentStart];
        NSData *startData = [NSMutableData dataWithData:[start dataUsingEncoding:NSUTF8StringEncoding]];
        NSString *xmlContentEnd = [writer xmlContentEndElement];
        NSString *xmlProperties = [writer xmlPropertiesElements];
        NSString *end = [NSString stringWithFormat:@"%@%@", xmlContentEnd, xmlProperties];
        NSData *endData = [end dataUsingEncoding:NSUTF8StringEncoding];
        // The underlying CMISHttpUploadRequest object generates the atom entry. The base64 encoded content is generated on
        // the fly to support very large files.
        [self.bindingSession.networkProvider invoke:[NSURL URLWithString:link]
                                         httpMethod:httpRequestMethod
                                            session:self.bindingSession
                                        inputStream:contentInputStream
                                            headers:[NSDictionary dictionaryWithObject:kCMISMediaTypeEntry forKey:@"Content-type"]
                                      bytesExpected:bytesExpected
                                        cmisRequest:request
                                          startData:startData
                                            endData:endData
                                  useBase64Encoding:YES
                                    completionBlock:^(CMISHttpResponse *response, NSError *error) {
                                        if (error) {
                                            CMISLogError(@"HTTP error when sending atom entry: %@", error.userInfo.description);
                                            if (completionBlock) {
                                                completionBlock(nil, error);
                                        } else if (response.statusCode == 200 || response.statusCode == 201 || response.statusCode == 204) {
                                            if (completionBlock) {
                                                NSError *parseError = nil;
                                                CMISAtomEntryParser *atomEntryParser = [[CMISAtomEntryParser alloc] initWithData:response.data];
                                                [atomEntryParser parseAndReturnError:&parseError];
                                                if (parseError == nil) {
                                                    completionBlock(atomEntryParser.objectData, nil);
                                                } else {
                                                    CMISLogError(@"Error while parsing response: %@", [parseError description]);
                                                    completionBlock(nil, [CMISErrors cmisError:parseError cmisErrorCode:kCMISErrorCodeRuntime]);
                                        } else {
                                            CMISLogError(@"Invalid http response status code when sending atom entry: %d", (int)response.statusCode);
                                            CMISLogError(@"Error content: %@", [[NSString alloc] initWithData:response.data encoding:NSUTF8StringEncoding]);
                                            if (completionBlock) {
                                                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeRuntime
                                                                                     detailedDescription:[NSString stringWithFormat:@"Failed to send atom entry: http status code %li", (long)response.statusCode]]);
                                      progressBlock:progressBlock];
    Attaching the logs:
    ERROR [CMISAtomPubBaseService sendAtomEntryXmlToLink:httpRequestMethod:properties:contentInputStream:contentMimeType:bytesExpected:cmisRequest:completionBlock:progressBlock:] HTTP error when sending atom entry: Error Domain=org.apache.chemistry.objectivecmis Code=260 "Runtime Error" UserInfo=0x156acfa0 {NSLocalizedDescription=Runtime Error, NSLocalizedFailureReason=ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public void com.sap.mcm.server.service.AbstractChangeLogService.updateChangeLog(java.lang.String,boolean) throws com.sap.mcm.server.api.exception.MCMException method on bean instance com.sap.mcm.server.nw.service.NwChangeLogService@4e7989f3 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|NwChangeLogService in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.ejb.EJBTransactionRolledbackException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a; nested exception is: javax.ejb.EJBException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a}
    2015-03-12 04:08:31.634 Saudi Ceramics[4867:351095] Uploading sales order route map failed.

    Hi Sukalyan,
    Have you checked the below links?
    These will give you step by step implementation procedure.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a099a3bd-17ef-2b10-e6ac-9c1ea42af0e9?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDJava/KmuploadusingWebdynproapplication
    Regards,
    Sandip

  • Error in getting the BAPIWrapper name from the ini file or SAP mobile configuration: Agentry Error

    Hello Experts,
    I follow the flightbooking tutorial to create a Material application to get material list. I  can start the agentry server but when I connect to SAP server and get data, I face below issue
    Error in getting the BAPIWrapper name from the ini file or SAP mobile configuration. Please check the ini file or the mobile configuration for the bapi key (com.syclo.sap.material.bapi.materialbapi) either in sections BAPI_WRAPPER or REQUIRED_BAPI_WRAPPER
    I check the parameters name in SAP Agentry Config panel, all are correct. Why cannt it get the data. Do I have to add anything in javaBE.ini? Please help me. Thank you very much.
    My javaBE
    [HOST]
    server=be1.vdc.csc.com
    APPNAME=ZCH_MATERIALLIST
    [CLIENT_NUM]
    CLIENT=800
    [SYSTEM_NUM]
    SYSNUM=01
    [LOGON_METHOD]
    ; USER_AUTH if standard UID/Password authentication is used
    ; USER_AUTH_GLOBAL if pooled connections using single UID/Password is used
    ; USER_AUTH_GROUP if UID/Password authentication with SAP Message Server
    ;   (load balancing) is used
    LOGON_METHOD=USER_AUTH
    [GLOBAL_LOGON]
    ; referenced when LOGON_METHOD=USER_AUTH_GLOBAL
    ; uses a pool of connections to the SAP backend all utilizing a single
    ;    UID/password
    UID=
    UPASSWORD=
    SHAREDCONNECTION=0
    GET_PERSONNEL_INFO=
    [SERVICE_LOGON]
    ENABLED=true
    UID=hngu3
    UPASSWORD=xxxxxxx
    UPASSWORDENCODED=false
    [GROUP_LOGON]
    ; referenced when LOGON_METHOD=USER_AUTH_GROUP
    ; individual user authentication using an SAP Message Server which distributes
    ; client connections among a "group" of SAP application servers based on load
    ; balancing criteria
    ; host name or IP address of SAP Message Server
    MESSAGE_SERVER=
    GROUP_NAME=
    SYSTEM_ID=
    CLIENT=
    [LANGUAGE]
    LANG=EN
    [LOGGING]
    Level=4
    [REQUIRED_BAPI_WRAPPER]
    com.syclo.sap.bapi.LoginCheckBAPI=/SYCLO/CORE_SUSR_LOGIN_CHECK
    com.syclo.sap.bapi.RemoteUserCreateBAPI=/SYCLO/CORE_MDW_SESSION1_CRT
    com.syclo.sap.bapi.RemoteParameterGetBAPI=/SYCLO/CORE_MDW_PARAMETER_GET
    com.syclo.sap.bapi.SystemInfoBAPI=/SYCLO/CORE_SYSTINFO_GET
    com.syclo.sap.bapi.ChangePasswordBAPI=/SYCLO/CORE_SUSR_CHANGE_PASSWD
    com.syclo.sap.bapi.CTConfirmationBAPI=/SYCLO/CORE_OUTB_MSG_STAT_UPD
    com.syclo.sap.bapi.DTBAPI=/SYCLO/CORE_DT_GET
    com.syclo.sap.bapi.GetEmployeeDataBAPI=/SYCLO/HR_EMPLOYEE_DATA_GET
    com.syclo.sap.bapi.GetUserDetailBAPI=/SYCLO/CORE_USER_GET_DETAIL
    com.syclo.sap.bapi.GetUserProfileDataBAPI=/SYCLO/CORE_USER_PROFILE_GET
    com.syclo.sap.bapi.PushStatusUpdateBAPI=/SYCLO/CORE_PUSH_STAT_UPD
    com.syclo.sap.bapi.RemoteObjectCreateBAPI=/SYCLO/CORE_MDW_USR_OBJ_CRT
    com.syclo.sap.bapi.RemoteObjectDeleteBAPI=/SYCLO/CORE_MDW_USR_OBJ_DEL
    com.syclo.sap.bapi.RemoteObjectGetBAPI=/SYCLO/CORE_MDW_SESSION_GET
    com.syclo.sap.bapi.RemoteObjectUpdateBAPI=/SYCLO/CORE_MDW_SESSION_UPD
    com.syclo.sap.bapi.RemoteReferenceCreateBAPI=/SYCLO/CORE_MDW_USR_KEYMAP_CRT
    com.syclo.sap.bapi.RemoteReferenceDeleteBAPI=/SYCLO/CORE_MDW_USR_KEYMAP_DEL
    com.syclo.sap.bapi.RemoteReferenceGetBAPI=/SYCLO/CORE_MDW_SESSION_GET
    com.syclo.sap.bapi.RemoteReferenceUpdateBAPI=/SYCLO/CORE_MDW_SESSION_UPD
    com.syclo.sap.bapi.RemoteSessionDeleteBAPI=/SYCLO/CORE_MDW_SESSION1_DEL
    com.syclo.sap.bapi.RemoteUserDeleteBAPI=/SYCLO/CORE_MDW_SESSION1_DEL
    com.syclo.sap.bapi.RemoteUserUpdateBAPI=/SYCLO/CORE_MDW_SESSION_UPD
    com.syclo.sap.bapi.TransactionCommitBAPI=WFD_TRANSACTION_COMMIT
    com.syclo.sap.bapi.SignatureCaptureBAPI=/SYCLO/CS_DOBDSDOCUMENT_CRT

    Hi Tahir, please help me check the log below
    Agentry Runtime Worker Thread###throwExceptionToClient::begin |
    Agentry Runtime Worker Thread###throwExceptionToClient::com.syclo.sap.material.steplet.MaterialSteplet::throwExceptionToClient::397::MaterialSteplet - Error in getting the BAPIWrapper name from the ini file or SAP mobile configuration. Please check the ini file or the mobile configuration for the bapi key (com.syclo.sap.material.bapi.materialbapi) either in sections BAPI_WRAPPER or REQUIRED_BAPI_WRAPPER |
    Agentry Runtime Worker Thread###Exception: 17:15:35 06/17/2014 : 20 (Agentry3), Java Business Logic Error (com.syclo.agentry.BusinessLogicException: MaterialSteplet - Error in getting the BAPIWrapper name from the ini file or SAP mobile configuration. Please check the ini file or the mobile configuration for the bapi key (com.syclo.sap.material.bapi.materialbapi) either in sections BAPI_WRAPPER or REQUIRED_BAPI_WRAPPER),  |
    Agentry Runtime Worker Thread###loggedOut::begin |
    Agentry Runtime Worker Thread###HNGU3: SESSION END |
    Agentry Runtime Worker Thread###BAPI::begin |
    Agentry Runtime Worker Thread###create::nulled repository::created new repository |
    Agentry Runtime Worker Thread###create::/SYCLO/CORE_MDW_SESSION1_DEL Connection ID: com.sap.mw.jco.JCO$Client@2656ed99 |
    Agentry Runtime Worker Thread###create::Function /SYCLO/CORE_MDW_SESSION1_DEL created |

  • SAP Mobile Installation

    I am New to SAP MI but has been assisgned a small PDA development, which I had done in VB.NET, but this project I want to use SAP MI.
    I have BW 3.5 with WEB AS 6.40 and also I have EP6.0,
    Can I use the BW WEB AS or EP 6.0 for SAP Mobile Install?
    How do I install SAP MI on the WEB AS.?
    Thanks
    Jagraj Dhillon

    Hi Jagraj
    SAP MI server is technically embedded in SAP Web Application Server (SAP Web AS)Both ABAP and J2EE stack are required.
    A minimal MI landscape ideally consists of the following components:
    1) One or more application backend systems
    2) A middleware server (Web AS)
    3) One or more client systems (mobile devices)
    For further clarification and learning please refer to the following links
    https://www.sdn.sap.com/irj/sdn/developerareas/mi?rid=/webcontent/uuid/6ba0ba72-0901-0010-e287-d8649ddb6425 [original link is broken]
    http://jogel.blogspot.com/2006/07/learning-sap-mi.html
    http://media.sdn.sap.com/public/html/submitted%5Fdocs/MI/MDK%5F2.5/
    http://help.sap.com/saphelp_nw04/helpdata/en/a7/893a5889e08b41b615688b1a93b559/frameset.htm
    Thanks
    Gopi

  • Configuration of SAP NW AS (Configuration of SAP Mobile Infrastructure)

    Hello everyone
    'm configuring the MI and I want to clarify some key concepts.
    In the configuration of SAP NetWeaver AS when it says to initiate transactions (eg PFCG) means over the SAP R3 system?
    Thanks, Gokhan

    Dear Veeraraagavan,
    Yes, SAP R/3 = backend
    I think you're right, and I'm banging my head on for days ... I gave a quick glance at guides (installation, architecture, Installation Options, etc.) on the SAP Web NWAS and I think I found a bit of light!
    But I need confirmation from you experts.
    On the Configuration of SAP Mobile Infrastructure in Prerequisites section is written that there is need of SAP NetWeaver AS 2004 (including the SAP J2EE Engine and the ABAP stack), so if I understand correctly the installation option for SAP Web AS is Integration = SAP Web Application Server ABAP + Java System.  So what in the figure http://www.mediafire.com/imageview.php?quickkey=vg3nzmjhiwm&thumb=6 represents only a SAP Web Application Server Java System (J2EE Engine) and non-SAP Web Application Server ABAP + Java System? Or it could be an ABAP + Java System?
    I'm thinking that might be missing only the SAP GUI to access the ABAB ENGINE as shown in this photo http://help.sap.com/saphelp_nw04/helpdata/EN/84/54953fc405330ee10000000a114084/frameset.htm .
    Thanks in advance, Gokhan

  • Help SAP Mobile Infrastructure 7.0 on NW 2004S

    Hi all, I am a Newbie, and i really need some help.
    After 2 weeks i installed:
    On the <b>Server:</b> side (machine 1)
    SAP NW 2004s SR1 (ABAP + JAVA + MI) / ORACLE / Windows Server 2003
    after that i update the system to:
    ABA Support Package 10 for 7.0
    Basis Support Package 10 for 7.0
    Kernel (part I and II) version: 83.
    MI Client 7.0 SP10
    MI Drivers 7.0 SP10
    MI Administration 7.0 SP10
    MI WD Laptop 7.0 SP10
    On the <b>Client</b> side (Machine 2) (Windows XP)
    SAP Developer Studio 7.0.10
    So the problem is that i don't know where is the SAP Mobile Infrastructure 7.0 Installer, so when a try to used the SAP Developer Studio it says me to configure:
    (Windows --> Preferences -->MI Development)
    MI Home Folder:
    MI server name:
    MI webapp root:
    MI webapp TCP port:
    (AWT runtime)
    MI Home Folder
    MI Logon Information
    MI Logon user name
    MI Logon password
    I understand that i need to install the Sap Mobile Infrastructure 7.0 in the Client Development Machine, and after configure the Developer Studio, so that i can use the server to deploy my applications. This SAP Mobile Infrastructure is NO the MI Client 7.0 (NWMCLIENT10_0-20000910.SCA) Because i used it to update the server..
    Please can somebody say me where i can download the Mobile Infrastructure 7.0?? I think that is the only thing that i  need to complete all the mobile development environment, or maybe i need Tomcat too in the client machine?
    Best Regards,
    Erick Ilarraza

    Hi Han,
    Actually I have on my client / development  machine:
    SAP NetWeaver Developer Studio 7.0
    SAP Mobile Infrastructure
    Server machine
    NW04s SP10 ABAP + JAVA + MI
    What is the FW_INSTALL? i try to search it in the software distribution center, but i can't found it.
    I understand that for:
    Windows Mobile Device --> CrEme Virtual Machine
    Laptop --> I don't know! maybe i only need to have the J2SK 1.2.4_08
    In any case, i am trying to run the example code (Sap Help) 1st 2nd ... with the Mobile Infrastructure Program. But i don't have idea how to do this.
    Regards,
    Erick

  • Sap Mobile platform Tutorialst

    Hello,
              I need to consume the sap backend in android,this can be possible by using the "SAP Mobile Platform and SAPR3<>NetWeaverGateway<>SUP-ODP<>RelayServer<>Device".I already registered with the open sap, i have done  the self study for the course SAP mobile Solution Development for Enterprise,so now i got some information on it i need to learn it very depth.
    I have few questions.
         1.Is their any other online training  courses available on sap mobile platform ?
         2.Open Sap will soon start any training courses on sap mobile platform ?
    Thanks in advance sorry for bad english
    Regards,
    Navaneeth prodhutur

    The architecture you given uses Odata exposed from NW gateway and SMP will be an online data proxy. Relay server can be used for more security. To know how to develop android apps in this architecture follow this,SyBooks Online
    Other types of applications that you can develop using SMP include Object API based (as Jitendra mentioned, Developing SAP Android Mobile app from scratch), HWC apps (HWC mobile app development for dummies), apps using third party frameworks (http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc01942.0230/doc/pdf/smp_tutorial_hybrid_app_package_devel…) and rest apis (http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc01926.0230/doc/pdf/smp_devguide_rest_api_applications.pd…).
    Helpful links,
    http://scn.sap.com/thread/3205550
    http://scn.sap.com/thread/3436603
    http://scn.sap.com/docs/DOC-36056

  • Question about version SAp Mobile Infraestructure

    Good morning,
    Actually we have using the version of Sap Mobile Infraestructure MI 25 SP 22 Patch 02 Build 200901191055
    Do we want to know if exist some last version or SP of  the Sap Mobile Infraestructure MI 25?
    Thanks
    Regards
    Fernando

    Hi,
    Now, the latest available version of SAP Mobile Infrastructure is 7.1 with EHP1.
    For MI 7.1, go to:
    service.sap.com/swdc -> SAP Installations & Upgrades -> Installations & Upgrades - Entry by Application Group -> SAP Netweaver -> SAP Netweaver -> SAP Netweaver Mobile 7.1 -> Installation .
    If you want to install MI 7.1 with EHP1, go to:
    service.sap.com/swdc -> SAP Installations & Upgrades -> Installations & Upgrades - Entry by Application Group -> SAP Netweaver -> SAP Netweaver -> SAP EHP1 for SAP NW PI 7.1 -> Installation and Upgrade.
    The same installation DVDs are required to install both PI 7.1 EHP1 and MI 7.1 EHP1.
    Read the installation guides at service.sap.com/instguides and it will clarify any further doubts that you may have.
    Thanks,
    Shitij

  • SAP Mobile Documents buttons missing

    Hi gurus,
    I have installed SAP Mobile Documents server, and mobile applications on devices are working as expected, but web app is not showing action buttons (create, share, delete ...) when a file is selected, only info properties icon (with letter i shows up) and there is no logon info or help buttons in the upper right corner of the screen.
    Does anyone have an idea, what could be the problem? Version of MCM server is SP2 patch3.
    BR, Igor

    Hi,
    looking at the screenshot (especially the weird looking checkboxes to the left of the items of the table), it seems that the UI5 Version is not the one we need. You should at least have UI5 Version 1.16.5. You can find out which version is used if you press CTRL+ALT+SHIFT+P. A popup should get displayed, showing some general information about UI5.
    Best Regards,
    Ingo

  • Prerequisites for SAP mobile Documents.

    Hello,
    I have going to install SAP Mobile Documents. I would like to know what are the requirements and if there are any install guide and videos.
    I believe that SAP Mobile Documents require NetWeaver Application Java and SAP Mobile Documents using the Software Update Manager (SUM).
    What are the other components that are required and the c
    Require your help on this
    Regards

    Hello Robert,
    you will find the prerequisites documents here:
    http://scn.sap.com/community/mobile-documents --> Implement --> Solution Prerequisites
    You find the complete step-by-step installation and configuration information here:
    http://scn.sap.com/community/mobile-documents --> Step-by-Step Implementation Guide
    Regards,
    Jens

  • Problem trying to download SAP Mobile Platform SDK - Developer Edition

    Dear All,
    when i try to go on:
    SAP Mobile Platform Developer Center
    and I click on:
    Download SAP Mobile Platform SDK - Developer Edition
    The system is returning to me:
    Forbidden
    You don't have permission to access /sap/cp/ui/resources/store/html/SolutionDetails.html on this server.
    What I have to do?
    Thanks

    This download link is related to SAP Store and I guess there is some issue with SAP Store now. (store.sap.com) .
    Anyways the link might provide access to only SDK of SMP 3.0 , but to develop mobile applications on SMP both the Runtime and SDK are to be installed and only SDK is available to public.
    If you have a valid S-User credentials you can download SMP from SAP Service Marketplace - Home
    Softwares Donloads -->  A-Z Index --> M -->SAP mobile Platform -- ? choose the version you are looking at (2.1 / 2.2 /2.3 )
    SMP 3.0 is still in Rampup only available to limited registered partners
    Which version of SMP you are looking to download?

  • Is there any third party component required to run SAP Mobile ?

    Hi Gurus,
    What 3rd party mobile components are required to run SAP mobile (E.g DB2e)? Do any of them require separate licensing thatu2019s not covered by the SAP licence?
    Thanks in Advance,
    Dharani

    Hi Larissa Limaravo,
    Thank you so much for you detailed answer.
    Can you please let me know your view on this please.
    Q4 What do we get in terms of remote management (i.e. any of the security points above plus deployment of software and remote support)? Is there any benefit in moving to 7.1 from 7?
    Thinking of the supplied XAPPS that are available with SAP mobile, how configurable are they in terms of:
    Q5
    u2022     Adding new fields (both for info in the field and for engineers to return additional data).
    u2022     Changes to validation.
    u2022     Changes to workflow within the application.
    u2022     Anything else!
    Q5.1  Is there an IDE or tool available for implementing configuration changes?
    Q5.2  What weu2019re after here is a feel for the overall influence on functionality, expressed as a percentage (e.g. 0 no influence to 100% complete control), which can be achieved with configuration?
    Q5.3  Typically, who is responsible for making configuration changes, would it be possible to do this in-house or would we require experienced consultants? If this is a split between the 2 could we get a feel based on the most commonly requested changes?
    Q5.4  With regard to customizing supplied XAPPs or writing our own, would we be talking Java development through webdyn pro? How would customisation impact patching and upgrades of the SAP infrastructure?
    Q6  Our assumption is that SAP mobile solutions are only suitable for SAP backend systems owing to the tight integration. In your experience, has anyone successfully implemented a SAP mobile solution on a non SAP backend system? Would you, as experienced SAP consultants, recommend such a venture?
    Q6.1  How would we go about integration of other systems on the mobile device? For example GPS, Barcode, Cameras or other applications like boiler diagnostics. Again, can you break this down into tasks that can be performed in house vs. tasks that are typically performed by experienced consultants?
    Q6.2  This is a bit of a vague question so I must apologies in advance: Company will ultimately control our production environment but weu2019d be interested in having some control to be able to deploy configuration changes without having to bother them. If you could suggest if and how this arrangement would be implemented, then I can approach company to assess the feasibility.
    Thanks in Advance,
    Dharani

  • How to connect SAP Mobile device with BADI?

    Dear experts,
    We have some functionality written in the BADI program for handling Stock movement . We want to bring the same functionality for SAP Mobile device.
    Can you please provide your suggestions?
    Thank you!
    Saravanan

    continuing...
    How NW Mobile can achieve this is:
    1. By creating BAPI Wrappers (these should follow the CRUD principle)
    2. Then you import these BAPI Wrappers as 'Data Objects' into NW Mobile.
    (In your case, I guess you would have a Data Object relating to instances of Consignment Stock Movements)
    3. Then you create distribution rules (this will define which data object instances will flow to which devices)
    4. You create and deploy an application on your device (you can write whatever business logic you want in your application, including taking inputs from a user, or doing manipulations to the data object instances)
    When the user uses your application, changes will be done to the data object instances, either due to synchronizing data with NW Mobile (to get latest set of changes to the instances) or by creating, modifying or deleting the instances in the device.
    Later, when the user synchronizes with NW Mobile, the changes made to the data in the device will be forwarded to the backend via the BAPI Wrappers which you created earlier.
    This, in essence is how NW Mobile works.
    If however, you want to replicate the logic that is being performed in your BAdI in your mobile device, there are only two ways to it:
    1. You rewrite your logic in your mobile application (in Java, or whatever language it is that you wish to develop your application in)
    OR
    2. Say your BAPI Wrapper internally causes your backend to call certain BAdI's. But this is of no concern to the NW Mobile system itself.
    An example of #2 would be:
    Every time your user modifies a 'Consignment Stock Movement' in the device and syncs with NW Mobile, NW Mobile will call the MODIFY BAPI Wrapper in the backend (SRS system). The MODIFY BAPI Wrapper will trigger a workflow, or run an SAP shipped report or whatever it is that will lead your BAdI to be called... Finally, all this will cause some change to be done to your 'Consignment Stock Movement' in the backend. Which will get pushed to the NW Mobile system and the next time the device syncs with it, this change will be reflected in the device as well.

  • SAP Mobile Infrastructure and Mobile Asset Management Training

    Hello All,
    We would like to announce that SAP Education is offering the following courses the week of November 6, 2006 in Newtown Square, PA:
    <b>1. TMOB20</b> (Mobile Infrastructure Administration) – 2 days
    Course description link: http://www50.sap.com/useducation/curriculum/course.asp?cid=60168283
    <b>2. TZMAM2</b> (Early Product Training – SAP Mobile Asset Management 2.5) – 3 days
    Course description link: http://www50.sap.com/useducation/curriculum/course.asp?cid=60205890
    Please register as soon as possible to reserve your seat for these special deliveries.  These are the only scheduled deliveries of these courses planned for the remainder of 2006.
    To register call 1-888-777-1727 or 610-661-6501.
    For questions call 1-877-876-7271 or post directly in this thread.
    Best Regards,
    Ted

    Hi,
    We have this answer in many other threads..
    Mobile infrastructure (MI 2.5 / MI 7.0) is the older release of mobile.The latest version of mobile is NW Mobile 7.1 which comes with a total architectural change, provides better scalability and has advantages in many other areas like better modeling, monitoring options , faster device synchronization time etc.
    Netweaver mobile constitutes of server (DOE) and a default client framework (Netweaver mobile client) .
    Mobile application could be created using NetweaverDeveloper Studio(NWDS) that will present the data required by the mobile device user.
    This mobile application once deployed on a device will work on the local persistency and during synchronization with DOE sends the modified/new data to Backend via DOE.
    Customers can also develop a custom client framework and application that still talks to DOE (and inturn to backend)
    NW mobile 7.1 could be used to build mobile applications suiting offline and onlines scenarios.
    In few words to mobilize enterprise solutions
    SAP R/3 will act as backend
    ---talks to DOE through remote enabled BAPI Wrappers ---
    NW mobile will be middleware that does the data orchestration
    Upon Synchronization of mobile device with DOE using a messaging protocol over http(s)
    Receivers could be devices with client application installed / another server.
    checkout this [configuration guide|http://help.sap.com/saphelp_nwmobile71/helpdata/en/45/17a790d8000064e10000000a1553f7/frameset.htm] and [developer's guide|http://help.sap.com/saphelp_nwmobile71/helpdata/en/8F/0B674240449C60E10000000A1550B0/frameset.htm]
    for understanding how to start with development with NW Mobile 7.1
    Regards,
    Liji

Maybe you are looking for

  • Indesign book files making a PDF with spreads????

    Hi, I am working with a book file but need to make a digital PDF with spreads. So the problem is obviously that I start with a right single page and finish with a left single page in each chapter which doesn't make a spread. Is there a way around thi

  • K7N2-L Network problem?

    does anyone know if the problems with the onboard lan not working with hubs/routers was fixed? im about to swap some stuff on my system, and id rather use the LAN for my cable modem than the USB option.

  • Help! Down-converting 720p HD to DVD

    Just finished a project using FCP 5 and Motion 2 in 720p60 HD. I did not use any HD video but built the whole project out of high resolution stills with pans and zooms with basic text moving over the top. Since this is going to be a promotional piece

  • Pages for iPad and for Mac?

    I bought Pages for iPad. Is it possible to use it in MacBook Pro? Thanks Simone

  • Dividing ISL trunk problem

    I have a network design issue to solve and need some help. Current network uses ISL to trunk vlans between two sites. Some encryption devices need to be installed that do not understand ISL (or BPDUs for that matter). I need to split the ISL, or tunn