Access to mobile functionalities in new 5.1.12 iOS app version?

I have not been able to find any documentation about this yet, and wondering if anyone else has experienced something similar?
All of my users that have Enterprise ID's (we use these for VP's and GM's), after updating to 5.1.12, no longer have access to the document functionalities for annotation or email. The only option they have is 'Full Screen'. Likewise they no longer have the refresh option either. Our SAP user ID's are just fine. We have made no changes to any of our configurations on the backend.
Another odd thing that I noticed was that on my device, my app version was 5.1.12.4 from when I updated the app back a few weeks ago, different from the 5.1.12 that is available now. I deleted my app and redownloaded from the app store and now have 5.1.12 to make sure that I am testing on the same app as our users.
Thanks

Is the device unlocked? Sounds like it may have been hacked to use on another network, since AT&T 18.0 is the latest AT&T carrier file.

Similar Messages

  • Oracle 10g Lite with ADF/BC4J Application(Offline access in Mobile )

    Hi All,
    We have the following requirement from one of our client.
    Customer Company has R12 Apps instance(which is having 10g Database APPSDB). The users will come in the morning
    and connect to the System(NEWSYSTEM) to download their daily worksheet(resides in APPSDB) to their Mobile Devices
    (Windows XP - http://www.keenzo.com/zoom.asp?zoom=3830134) and then disconnect from the system. The download of data
    should start after login into their Mobile Device Custom Application So that only their worksheet will be downloaded
    to their Mobile Device DB.
    Then they will goto their fields and review their daily worksheet in the Mobile Device application(NEW APPLICATION)
    in offline mode. And update in the application with their findings, which should be stored in the Mobile Device database(MOBILEDB).
    In the evening the uses will come and connect to the system(NEWSYSTEM) and login into their Mobile Application and
    start the upload process, then the updated data from their Mobile Database will be uploaded into APPSDB via the NEWSYSTEM.
    I checked the links, http://www.oracle.com/technology/products/lite/index.html and http://lite.us.oracle.com and I have
    got some understanding about Oracle 10g Lite. For the above requirement we are proposing the NEWSYSTEM as Oracle 10g Lite Server
    and the NEW APPLICATION as ADF/BC4J which can run in their Mobile Devices(work offline and then sync with DB).
    I have the following questions.
    1) The above proposing system is feasible?
    2) Can we develop the Mobile Application using ADF/BC4J and using that we would like to
    control the sync process from our custom application.(so that only their worksheet will come to their Mobile Device DB)
    3) If I want to have the above system,
    a) I should have Oracle 10g Lite server installed(im Unix or Windows)
    b) I should have Oracle 10g Lite client installed in a Windows PC/Laptop
    c) To get my custom application in My Mobile Device, first I have to deploy the application
    in Oracle 10g server using Oracle Mobile Server. Then I have to connect my Mobile Device to the Oracle 10g Lite server,
    and deploy the application in my Mobile Device using Oracle Mobile Manager.
    4) I would like to do a POC before start the project.
    What are all the installations I have to do in my Laptop.(Consider I am installing Oracle 10g Lite server/client, Mobile Manager in my Laptop)
    I am new to Oracle 10g Lite, correct me if any of my understanding is wrong.
    If you have any comments in the approach please add it.
    Thanks in advance.
    With Regards,
    Kali.

    1) The above proposing system is feasible?
    perfecly feasible, and actually a reasonably standard use of oracle lite
    2) Can we develop the Mobile Application using ADF/BC4J and using that we would like to
    control the sync process from our custom application.(so that only their worksheet will come to their Mobile Device DB)
    Actually two different questions here. The application code that runs on the client device can be written in any thing that will run on that type of device, and is capable of using the APIs to connect to the local database, and the other functionality like synchronisation. From the forum there look to be VB, C, java users out there (an i even believe if you wanted to, you could use forms). Main decision regarding the Platform for the application code development tends to be whatever you have the skills in.
    In terms of the sync process only downloading a particular users worksheet, this would be defined when you define the snapshots of the database tables you want to download, rather than the sync login process itself.
    For example - you have a table WORKSHEETS on the server that you want to download, it has a column EMP_NO which is the employee identifier. You would define the selection for the snapshot as
    select * from WORKSHEETS where EMP_NO=:emp_no (note the bind variable)
    when you then add users to the oracle lite application (actually the database), then you will have a parameter called EMP_NO to define with the employee number for that particular user, and this will be used automatically as the bind variable in the download.
    NOTE subsetting in this way does not need to be direct, for example things like
    select * from TASKS where id in (select task_id from user_tasks where emp_no=:emp_no) is perfectly valid
    NOTE when reading the forum and documentation, be careful of the word application. There are actually two different things to be developed, both normally called 'application'
    Within oracle lite you create an application with publication items, scripts, sequences etc. and then subscribe your users to this application. The application in this context is actually the database and synchronisation management ONLY (you can include files and code for download)
    The second application is your runtime code that has a user interface, functionality, processing and validation. This is written in some development platform, and accesses the database created above for select, insert, update etc.
    3) If I want to have the above system,
    a) I should have Oracle 10g Lite server installed(im Unix or Windows)
    YES this goes on the app server and installs a repository schema MOBILEADMIN within your database
    b) I should have Oracle 10g Lite client installed in a Windows PC/Laptop
    YES - once the server is set up, this is downloaded and set up by accessing the <server url>/webtogo/setup
    c) To get my custom application in My Mobile Device, first I have to deploy the application in Oracle 10g server using Oracle Mobile Server. Then I have to connect my Mobile Device to the Oracle 10g Lite server,
    and deploy the application in my Mobile Device using Oracle Mobile Manager.
    steps in outline are
    1) install server
    2) develop the oracle lite application (ie: database) and publish this to the mobile server (can use the development kit or java APIs for these two steps
    3) add a user with the relevant subsetting parameters
    4) set up oracle lite win32 client on the laptop from the server download
    5) synchronise using the msync utility on the client to create the databases and odbc entries
    6) develop your application code using the client database
    7) during development, then changes to database structure would be via changes and re-publish of the oracle lite application, followed by a sync to update the client database
    8) once all development is complete, the runtime application code can be bundled up into the oracle lite application if you want, and then the initial sync for live users will download the database and application code.
    4) I would like to do a POC before start the project.
    What are all the installations I have to do in my Laptop.(Consider I am installing Oracle 10g Lite server/client, Mobile Manager in my Laptop)
    You can set up a standalone server on the laptop, but better to do this on a development app server so you can use the main server development database as the data souce for the snapshot definitions (pretty easy install). there are conflicts if you try and put the oracle lite client and the mobile development kit on the same machine, but if you are familiar with java, the API development is fairly straightforward to use (i have developed applications in this, and i know only the basics of java) you do not need the MDK
    Basic for a POC i would say is to
    1) set up mobile server on development
    2) define a simple oracle ite application on two server tables. one has select * from table, and the other has select * from table where .... including bind variable. at this stage use complete refresh as the mode for simplicity
    3) publish the application, create user and define the subsetting variable
    4) set up mobile client and synchronise user. use the msql utility to interrogate the database and check the content, and do some updates 9standards SQL syntax)
    5) create simple appliaction code to conect to and read the database on the client
    6) do a sync after the updates above and check they appear in the server
    The above should be reasonably quick and proves
    a) ability to define the data you want to be sent to the users
    b) ability to create an app to manage the database running on the client device in you preferred software platform
    c) data download and upload
    after this basic POC, you can extend into defining fast refreshes to improve the efficiency of the sync process, managing the MGP process, developing a more comprehensive database and application etc. If you have complex joins between server table, you may also want to look at creating views to denormalise data and use these as the basis for the snapshots

  • How do I set up devices to access my mobile hotspot once its on?

    How do I set up devices to access my mobile hotspot once its on?

        Great question Bnrybtch019. It's important to have access to all your features, I can help you with that. Since you didn't specific a phone model, these are the steps for a popular Android-Operating Phone http://vz.to/1yrBX0e .
    AdaS_VZW
    Follow us on Twitter at @VZWSupport 

  • How do I get access to Mobile documents admin console login with SAP HANA Cloud cockpit?

    Hi All,
    I am trying to launch SAP Mobile Documents from my trail version of SAP HANA Cloud.
    The Help link which I had followed  via link:
    https://help.hana.ondemand.com/help/frameset.htm?dc618538d97610148155d97dcd123c24.html#concept_0B49F10346C94249845EC16364FFF66D_76
    In SAP Cloud HANA Cockpit Using the link available in Authorization>Authorization Management
    I had created an user assigned to a Group, and Group has been assigned to a  Role ODP-OPERATOR,
    Next step, when I am trying to assign a token, I could not able find a token. How to get a token from here?
    My intention of creating user, group, role and token is for getting access to Mobile documents admin console.
    However I have also tried to access the mobile documents admin console via link
    https://smd-p1886950994trial.hana.ondemand.com/mcm/admin
    When I browse the above link, It shows HTTP 503 the requested service is not currently available.
    I am not sure, How to get access Mobile documents Admin page from here
    Could someone clarify on this please?
    Regards,
    Saravanan.R

    Hi,
    I have managed find an answer from this link SAP Mobile Documents on SAP HANA Cloud saying, SAP Mobile documents trial is not available in SAP HANA Cloud cockpit.
    Regards,
    Saravanan.R

  • I have transferred my itunes library to an external drive. I then attached the external disk to a new computer. I can now access all songs from the new computer. But I can't access playlists. I can still  access all songs and playlists on the old computer

    I have transferred my itunes library to an external drive. I then attached the external disk to a new computer. I can now access all songs from the new computer. But I can't access playlists. I can still  access all songs and playlists on the old computer

    If you right mouse and select Get info it will show you the Apple ID used to purchase these songs.
    Usually the name of an apple id is based on the email. So knowing that you may have forgotten the Apple ID password.
    You can request a new password here http://www.apple.com/support/appleid/

  • Why do I keep getting this 500: Server Error [20-0004] when trying to access Bell mobility?

    When trying to access Bell Mobility account I get 500: Server Error [20-0004].  Is this a problem with my mac or their server?

    Have you tried on another device?
    The folow sugests it is a server issue (not your computer)( but give several actions to confirm that.
    http://pcsupport.about.com/od/findbyerrormessage/a/500servererror.htm

  • Have not used Itunes in a while and I cant access Itunes Store with out downloaded new version but I keep getting error message with download. Can I just access the Istore without downloading new version?

    Have not used Itunes in a while and I cant access Itunes Store with out downloaded new version but I keep getting error message with download. Can I just access the Istore without downloading new version?

    downloaded new version but I keep getting error message with download.
    What does the error message say, andrea? (Precise text, please.)

  • I recently start using Firefox panorama. If I create a tab group that contains, for example, my favorite stack exchange websites, can I save ("bookmark") this tab group for easy access if I start a new session?

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/813855]</blockquote><br>
    I recently start using Firefox panorama. If I create a tab group that contains, for example, my favorite stack exchange websites, can I save ("bookmark") this tab group for easy access if I start a new session?

    You can bookmark all those tabs and place them in a folder.
    * "Bookmark This Page" and "Bookmark All Tabs" no longer show in the Bookmarks menu unless you open the Bookmarks menu via the keyboard (Alt + B).
    * "Bookmark All Tabs" can be accessed via the right-click context menu of a tab on the tab bar.

  • BO authorization model with sap roles / access tot folders, functionalities

    Hi Specialists,
    As authorization cunsultant in BI, I have little knowledge of the security setup in Business Objects.
    I have to setup an authorization model were the authorizations are assigned via sap roles in the backend BI system. These roles are imported in BO were they can serv as 'user groups' and access to folders, functionalities.
    Can anyone provide me a overview, guide, training document... on how the authorizations are managed in BO and best practice when they are linked to sap backend roles.
    The goal will be to user the sap BI backend roles and user them to grant users in BO specific access to specific folders. Eg; User A can access folders 1 as "refresher only", User B is able to publish reports in folder 2, User C has only view access in folder 2...
    Any help would be great!
    Thanks very much in advance.
    rgrds
    Kristof

    Hello,
    this is the best approach you mentioned here.
    I prefer to create roles serverd as functionalities in the Backend. For Example you have a "View" role, a "Refresh" role and so on.
    On the other hand i saw some setups where there is only on role in the Backend with all the BO Users. Then you have to create you functional groups in BO and have to assign the Users there to the Groups.
    Check the Adminguide of BO XI 3.1 for more Informations.
    Regards
    -Seb.

  • I have recently changed my Apple ID password, but i now cant access my icloud with the new password, i thought the 2 were linked?

    i have recently changed my Apple ID password, but i now cant access my icloud with the new password, i thought the 2 were linked?

    Hi helenbeach,
    If you've recently made changes to your Apple ID, you may need to update or log out/log back in to some of the related services for those changes to take effect. You may find the following article helpful:
    Apple ID: What to do after you change your Apple ID
    http://support.apple.com/kb/HT5796
    Regards,
    - Brenden

  • How do I configure my application to provide access for mobile and web brow

    Hi everyone.
    I have one application and I need to provide access for mobiles and desktop browsers, and I don't know how do I configure my application to do this.
    Let me explain:
    In my jDeveloper I have One application and 3 projects:
    -Mobile (here is my mobile application)
    -Model (here is my model)
    -ViewController (here is my Web Browser application)
    In Mobile I have
    JavaEE Web Application name: mobile-Mobile-webapp
    JavaEE Web Context Root: mobile
    ViewController I have
    JavaEE Web Application name: mobile-ViewController-webapp
    JavaEE Web Context Root: myapplication
    When I run some page of ViewController I have this URL "http://localhost:7101/myapplication/index.jspx".
    When I run some page of ViewController I have this URL "http://localhost:7101/mobile/index.jspx".
    My problem is that, I want to have Just one landing URL like that "http://localhost:7101/myapplication/index.jspx" and when I get this URL by Desktop Browser my ViewController is showed, and when i get by Mobile the Mobile project is showed.
    Someone knows how do it?
    Thanks....

    Yes, I can, thanks for response.
    But, don't have some configuration in Oracle for this? I've been thinking do this with java or JavaScript, but I was looking something more beautiful for this.
    Java or JavaScript is the only way?

  • Facebook app and safari crashes repeatedly when trying to access facebook mobile

    I cleared my cache, history, and cookies on my iphone 4.  After doing so, I was no longer able to access Facebook mobile app nor could I access Facebook mobile through Safari.  Both apps continue to crash each time I try to navigate through Facebook.  Safari works fine with other websites.  And my Facebook account works fine on my laptop.  The problem appears to be with Facebook mobile only.  Please help!

    Reader Forum
    http://forums.adobe.com/community/adobe_reader_forums

  • How do I access a mobile photo/video message

    how do I access a mobile photo/video message

    When someone sends you an MMS you'll receive a text and in that text is a password, once you have that navigate to this website: https://ee.mms.ee.co.uk/eeuk/

  • BlackBerry z10 can't get access to mobile network, please help!

    Hi, i got my unlocked z10 a few days ago and still i can't get access to mobile network. Only wifi have worked for me till now.. i used the same sim card as my old phone (where i i got access fine). I've tried rebooting and switched every setting on and off etc. Could any one please help me with this..

    Since you are using the same sim I suggest you contact your service provider to check your provisioning.
    Let me know if this help.

  • I have creat my apple id my computer but not access in mobile

    i can not access my apple id in my phone
    and i make my id by computer
    but it can not access in mobile
    they want my credit/debit a/c details
    why i give him my a/c details
    i do not want to give him my a/c details
    tell me how can i access my apple id without bank a/c details

    you don't need to enter any credit card info for the Apple ID, unless you want to make purchases. Make sure you're on the official website. to manage your apple ID, always go to https://appleid.apple.com/

Maybe you are looking for

  • Related to display problem

    sir when i start my laptop then monitor intensity is very low its not visible but sometimes its working properly  with fluctuation but good....whats the solution plz mail me ...thanks for seeing my problem

  • Disk permissions problems

    Hi. I am having persistent disk permissions problems that do not seem to be able to repair. This is what I am getting: Verify permissions for "Macintosh HD" Reading permissions database. Reading the permissions database can take several minutes. Warn

  • Link between implementation project configuration (SOLAR02) and ChaRM?

    Dears; We want to benefit from listing all IMG Objects and developments in an implementation project (SOLAR02) to control our transports as we have ChaRM activated on the affected systems. But there seems to be no link/control which has several conse

  • Data source error  in r3 system using rsa1 t-code

    in quality  apo system we have qr3 Datasource when i check   i am getting this error ,The BW IDoc type ZSQD019 is not the same as the source system IDoc type ZSQD020     RSAR     371      and also i have  opend both the systems and try to restore dat

  • Podcast Playlists not showing up on Playlist Page on Itouch

    I am having a devil of a time trying to transfer my podcasts playlist to my Itouch after 3.1.1 upgrade and itunes 9... My favorite Podcasts list shows by hour 1, hour 2, hour 3 etc... So I made a playlist so they play in order... but they dont show u