Rendering webcenter portal in mobile devices

Hi,
Recently I have been doing a lot of POC's to render a webcenter portal in a mobile device . But nothing has turned fruitful so far.
Can you guys point me the correct direction to render a webcenter portal in a mobile device.
Any help is highly appreciated.
Thanks in advance.
Regards,
Anand
Edited by: Anand on Oct 9, 2012 3:31 AM

Yannick Ongena wrote:
There's more to do it than just the HTTP protocol.
There is also javascript, css which causes most of the issues.
If you build your website and define in your css that the width of a page is 1000px than you can imagine it will not show up properly on a mobile phone...
Some mobile phones don't support the latest features in javascript.
ADF uses a lot of PPR which depends on javascript and if the mobile/table browsers don't support those features than you will loose a lot of functionality.Agreed, css might cause formatting issues and extensive Javascript usage might not work on tablets or mobiles browsers. Thanks!

Similar Messages

  • Does Intune Company Portal in mobile devices notify app updates?

    Hi,
    Does Intune Company Portal in mobile devices notify app updates?
    And if we retire the devices from company portal, the apps we just previously installed from the company portal app will be uninstalled automatically?

    I believe, it won't show any notification, you need to open company portal and search for the new apps which you have published.
    Yes,All the Apps which you have installed from the company portal will be uninstalled and the device will set to default settings.
    -Ash(Please Mark it as Answer if this post helps you.)

  • Request for Webcenter demo (viewlets) for Mobile devices (PDA/iPhone)

    Hi ,
    We are working on a deal opportunity for webcenter suite.
    We are looking for a demo artifacts (recording/viewlets/live vm) for webcenter integration with mobile devices (pda/ iPhones etc).
    Please advise.
    Thanks and regards
    Rahul

    904559 wrote:
    Hi,
    Our client would like to access workflows of WebCenter in Mobile devices like IPhone, Android devices, Blackberry, Nokia etc. Is there any generic way we can develop workflows for all devices or should we develop it specific for each devices.
    An immediate response would be higly appreciated
    regards
    RafiqueMobile development is a bit more involved than simple WebCenter. :-)
    In short, the best approach at present to have mobile access is to create a "mobile" site based on HTML5. You will likely need to re-design your application to be mobile-accessible, either creating a simplified WebCenter app/skin for mobile applications (e.g. the 320 px screen, etc.) targeted at the smartphone-type screen. This does not solve the feature-phone problem. (Nokia?)
    The other approach is to use RESTful services that you can either use or create in order to serve mobile clients that are either native apps or HTML5/JS apps that are created with a tool like PhoneGap. (This would allow for non-web-browsing access.)
    There are also some inklings that a new "ADF Mobile" is coming that will allow for a more ADF-like mobile development approach.

  • Windows 8.1 mobile device management using integrated environment of SCCM 2012 R2 and Windows intune

    Can we avoid the dependency on the Symantec certificate  for enabling windows phone enrollment under Administration->Cloud services -> Windows InTune subscriptions - Windows Phones. My environment will have only windows 8.1 phones.
    Regards
    Leela

    See http://status.manage.microsoft.com/StatusPage/ServiceDashboard. 
    Engineers are investigating a service issue impacting access to portal via mobile devices.
    (Started on 12/30/2014 8:00:00 AM UTC)
    1/8/2015 11:42:49 PM (UTC)
    Current Status: Engineers are continuing to troubleshoot potential issues related to Active Directory Federation Services (ADFS). Engineers have gathered additional traces and logging data for deeper analysis. User Experience: Affected users with Windows Phone,
    iOS, or Android devices are unable to access their company portal and receive repeated prompts to enter credentials. If incorrect credentials are entered, users will receive an error stating that they have entered a bad password. Customer Impact: Engineers
    have received reports that some customers are experiencing this issue. A subset of users are affected by this event. Other users remain unaffected. Incident Start Time: Tuesday, December 30, 2014, at 8:00 AM UTC Next Update by: Tuesday, January 13, 2015, at
    12:00 AM UTC
    Torsten Meringer | http://www.mssccmfaq.de

  • How to use filters on ios mobile devices (iPhone/iPad) using GPU rendering (Solved)

    Many moons ago I asked a question here on the forums about how to use filters (specifically a glow filter) on a mobile devices (specifically the iPhone) when using GPU rendering and high resolution.
    At the time, there was no answer... filters were unsupported. Period.
    Well, Thanks to a buddy of mine, this problem has been solved and I can report that I have gotten a color matrix filter for desaturation AND a glow filter working on the iPhone and the iPad using GPU rendering and high resolution.
    The solution, in a nut shell is as follows:
    1: Create your display object... ie: a sprite.
    2. Apply your filter to the sprite like you normally would.
    3. Create a new bitmapdata and then draw that display object into the bitmap data.
    4. Put the new bitmapdata into a bitmap and then put it on the stage or do what you want.
    When you draw the display object into the bitmapdata, it will draw it WITH THE FILTER!
    So even if you put your display object onto the stage, the filter will not be visible, but the new bitmapdata will!
    Here is a sample app I created and tested on the iphone and ipad
    var bm:Bitmap;
    // temp bitmap object
    var bmData:BitmapData;
    // temp bitmapData object
    var m:Matrix;
    // temp matrix object
    var gl:GlowFilter;
    // the glow filter we are going to use
    var sprGL:Sprite;
    // the source sprite we are going to apply the filter too
    var sprGL2:Sprite;
    // the sprite that will hold our final bitmapdata containing the original sprite with a filter.
    // create the filters we are going to use.
    gl = new GlowFilter(0xFF0000, 0.9, 10, 10, 5, 2, false, false);
    // create the source sprite that will use our glow filter.
    sprGL = new Sprite();
    // create a bitmap with any image from our library to place into our source sprite.
    bm = new Bitmap(new Msgbox_Background(), "auto", true);
    // add the bitmap to our source sprite.
    sprGL.addChild(bm);
    // add the glow filter to the source sprite.
    sprGL.filters = [gl];
    // create the bitmapdata that will draw our glowing sprite.
    sprGL2 = new Sprite();
    // create the bitmap data to hold our new image... remember, with glow filters, you need to add the padding for the flow manually. Should be double the blur size
    bmData = new BitmapData(sprGL.width+20, sprGL.height+20, true, 0);
    // create a matrix to translate our source image when we draw it. Should be the same as our filter blur size.
    m = new Matrix(1,0,0,1, 10, 10);
    // draw the source sprite containing the filter into our bitmap data
    bmData.draw(sprGL, m);
    // put the new bitmap data into a bitmap so we can see it on screen.
    bm = new Bitmap(bmData, "auto", true);
    // put the new bitmap into a sprite - this is just because the rest of my test app needed it, you can probably just put the bitmap right on the screen directly.
    sprGL2.addChild(bm);
    // put the source sprite with the filter on the stage. It should draw, but you will not see the filter.
    sprGL.x = 100;
    sprGL.y = 50;
    this.addChild(sprGL);
    // put the filtered sprite on the stage. it shoudl appear like the source sprite, but a little bigger (because of the glow padding)
    // and unlike the source sprite, the flow filter should acutally be visible now!
    sprGL2.x = 300;
    sprGL2.y = 50;
    this.addChild(sprGL2);

    Great stuff dave
    I currently have a slider which changes the hue of an image in a movieclip, I need it to move through he full range -180 to 180.
    I desperately need to get this working on a tablet but cant get the filters to work in GPU mode. My application works too slow in cpu mode.
    var Mcolor:AdjustColor = new AdjustColor();   //This object will hold the color properties
    var Mfilter:ColorMatrixFilter;                           //Will store the modified color filter to change the image
    var markerSli:SliderUI = new SliderUI(stage, "x", markerSli.track_mc, markerSli.slider_mc, -180, 180, 0, 1);   //using slider from http://evolve.reintroducing.com
    Mcolor.brightness = 0;  Mcolor.contrast = 0; Mcolor.hue = 0; Mcolor.saturation = 0;            // Set initial value for filter
    markerSli.addEventListener(SliderUIEvent.ON_UPDATE, markerSlider);                          // listen for slider changes
    function markerSlider($evt:SliderUIEvent):void {
        Mcolor.hue = $evt.currentValue;                        
        updateM();
    function updateM():void{
        Mfilter = new ColorMatrixFilter(Mcolor.CalculateFinalFlatArray());
        all.marker.filters = [Mfilter];
    how would I use your solution in my case
    many thanks.

  • Cisco ISE 1.2.1.198 Guest Portal Vlan Override at Mobile Device (android,IOS) not working

    Hi Guy, 
    In my ISE deployment, once the guest succcesful authenticated will be assign guest VLAN for internet access.
    we are using guest portal to do the vlan override once user authenticated.
    Window 7 Internet explorer (Active X), Chrome (Java Aplet) is working fine.
    but Android,Apple IOS devices unable to release the DHCP and get new DHCP.
    because from ISE and WLC we can see the Vlan have change, how mobile devices initiate dhcp release for Guest Portal
    Kindly advice.
    Regards
    Freemen

    I don't have such documentation nor I could find any on Cisco's site. With that being said, it doesn't mean that it doesn't exist. I just know that Active X is windows specific framework and Java is not supported on either iOS nor Android:
    http://www.java.com/en/download/faq/java_mobile.xml
    The good news is that Cisco appears to be steering away from Java so it is possible that in the future this will be supported. 
    Hope this helps!
    Thank you for rating helpful posts!

  • Webcenter Portal Support for ADF Mobile Browser

    Hi All,
    I am currently working on an ADF Mobile Browser Application for WebCenter Portal.
    The main issue I face is that WebCenter has some really powerful taskflows and connectors. Is it possible for us to make use of these taskflows in ADF mobile browser? It seems that when used within the trinidad framework, the taskflows are broken.
    I understand from documentation that "Except for page fragments, pop-up in dialogs, and region support, you can use the ADF task flow to develop ADF Mobile browser applications. ADF Mobile browser application that use the ADF task flow only support the trinidad-simple skin family"
    Does this mean that taskflows that use the page fragments, pop up dialogs dont work or that you cant use them within jsff and pop ups?
    Sincerely appreciate any help! thanks

    Hi,
    You can reuse taskflows but you need to modify jsff pages with trinidad components.
    Thanks,
    Minal

  • WebCenter Portal Mobile Compatability

    Hi ,
    Is their any specific Mobile compatibility options in existing webcenter portal applications . Could you please let us know how to enable/add mobile compatibility for application which we are planning to develop in webcenter Portal Framework .
    Thank you,
    Sashank P

    Some reading material:
    https://blogs.oracle.com/ATEAM_WEBCENTER/entry/responsive_adf_webcenter_template_for
    https://blogs.oracle.com/shay/entry/adaptive_layout_for_adf_faces

  • Manage mobile devices by SCCM2012 R2+Intune, Intune Admin Portal

    If mobile devices are configured and managed by SCCM, should these mobile devices also appear in the in the Intune Admin console ?

    This might be helpful
    http://gallery.technet.microsoft.com/Mobile-Device-Management-a23ffe2a
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • Microsoft Intune was unable to set the desired mobile device policy for one or more users due to the following error: A2CE0100

    Hi!
    We have fatal or critical error message on Microsoft Intune Portal but all agents are working just fine. Before opening support ticket we would like to hear comments from the experts on this forum. We would also like to fix this error before starting to
    manage mobile devices with Intune.
    Error message on Intune Portal:
    "Microsoft Intune was unable to set the desired mobile device policy for one or more users due to the following error: A2CE0100"
    Repeated: 19 times.
    Class: (System) Policy
    Random Fatal error message on C:\Program Files\Microsoft\OnlineManagement\Logs\PolicyAgent.log found from one Windows 8.1 client:
    2015-02-21 08:49:20:704 2852 1ab0 FATAL: DocumentProvider::IndicateToConsumer/pp->ProcessPolicies(NULL, NULL, NULL, NULL) failed with error 0x800704d5.
    That said, we are not facing any specific problem but we would like to find symptom of this repeating error message on Intune Portal . We would appreciate to get any thoughts about this case.
    Br.
    Jukka

    Hi Jukka,
    Mobile policy doesn't apply to clients using the Full Client download.  Please open a support case so the team can assist in further troubleshooting.
    Thanks,
    Jon L. - MSFT - This posting is provided "AS IS" with no warranties and confers no rights.

  • How to get dark elements in background to be visible on PDFs viewed on mobile devices?

    I would appreciate any information about how to export to PDF an InDesign document, which has multiple dark jpeg layers used to create a background, so that those elements appear in mobile device PDF viewing, just as they are seen on a computer monitor's version of the PDF viewing experience. 
    On mobile devices - iPhone and iPad - the background of the PDF appears simply as black. All the other texts and color photos in the foreground areas of the InDesign document appear perfectly on the mobile devices on the PDF.  Yet, the darker background elements render as solid black on the mobile devices.  Perhaps, this is always the case so that the PDF can be rendered viewable on mobile devices more quickly. I don't know.  The same PDF is viewed perfectly on computer monitors. This is only an issue with the mobile device viewing of the PDF.
    I've tried everything I know to do to choose different and particular settings in the "Adobe PDF preset" type area from within InDesign in order to create viewable background elements via a PDF viewed on mobile devices. 
    Any information as to particular settings for the InDesign document to Adobe PDF which would allow ALL elements to be seen on ALL electronic devices would be especially helpful. 

    Steve,  thank you for your post as well.  Please see my first reply, which was in reply to Bob Levine's question.  I can't provide a link to the document because it's part of a collaborative work that I'm contracted for - so I can't violate that with a public sharing of the PDF.  Otherwise, I would share a link.  But your comment about the different app Readers you used, gave me the idea to try all of them that I have.  Because the doc was in a Dropbox shared folder, I could access it via my Dropbox app on my iPhone/iPad.  So, I decided to go through multiple options with what they allow you to open a PDF in, to read it.  I had only tried a few.  Then after your comment I decided to try whatever else they had and tried the Adobe PDF reader one - and it opened with all the visual elements there.  I'll have to tell the folks, that I'm doing the work for, to open it in the ADOBE PDF Reader app now.

  • Can't see any orders in Mobile Device

    Hi all,
    As described in topic "How to deploy MAM 2.5 into MI Server", I have just installed MI and deployed MAM 2.5 into an WebAS 6.40 SP13.
    I have also, with the help of the functional guys from my team, followed through the Server Side Configuration part of the MAM Config Guide and created the scenario. I have assigned my MAM user (same userID of the backend) to the scenario and I'm now trying to see the orders of that scenario in the mobile device.
    The problem is that I can synchronize the device but I can't see anything in the MAM besides de User View Manager.
    I executed MEREP_MON and for my mobile ID I can see 1 I-Waiting for each SyncBO, 5 I-Error for SyncBOs MAM25_001 and MAM25_010 (but by the times of the logs, it seems that they are quite old already) and 5 I-Finished for all the other SyncBOs. Also, there are 5 0-Sent for each SyncBO but for MAM25_017, that has 19 0-Sent. All the other fields are 0.
    What does the I-Waiting and I-Finished and so on mean? How can I make my user to see his orders?
    Thanks,
    Daniel

    Hi Daniel!
    I understand that the result you see in the Worklist monitor doesn't help.Did you try the recommendation in the FAQ.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/mi/mobile application faq/mam client faq.faq#q-4
    If it doesnot help, try the following
    (1)In the SPRO under MAM Customizing settings, go in to
       "Assign Orders and Stocks to a Technician" and then double click the "Assignment Profile(Assigned to your MAM User ID in User dependant data)"  and change the Order Assignment & Notification Assignment to "User-->Employee Number", if it is assigned to a Work Center OR a Planner Group.You can reset this back to the original settings later if required.
    (2)Replicate the MAM25_090 & MAM25_095 via transaction MEREP_EX_REPLIC in the middleware.
    (3) Synchronize the data from your MI Client
    (4) If no data exists Monitor your Worklist as you did earlier.
    Let me know.
    Thx
    Gisk
    Message was edited by: Gisk

  • Digital Signatures for Mobile Devices

    We currently use smart cards that have our digital signatures and would like to have this transferred or be able to use on a mobile device.  Our forms currently require digital signatures, however, the person can't view the form (created in Livecycle designer ES2) from the mobile phone, therefore we need to upgrade to ES4.  Will we be able to use our current signatures using mobile, without having to use a signature created from Adobe?

    LiveCycle ES4 has Mobile Forms module which actually capable of rendering your existing XFA based forms as HTML5 based form which could be opened on Mobile devices as well.
    Mobile Form has Scribble signature for Mobile devices, the digital signature is not supported on Mobile devices.Check this : http://helpx.adobe.com/livecycle/topics/mobile-forms-dev.html
    Thanks,
    Wasil

  • SSO-Logon from mobile device - create logon ticket from WebDynpro for Java

    Hi Experts,
    I'm developing WebDynpro-JAVA application for some warehouse stuff  (runs on a portal system, clients are mobile barcode-scanners with Windows mobile 5.0). JCOs from the portal system to the R/3-backend are confirgured for SSO with Logon-tickets and portal uses LDAP for authentication against a Windows-ADS.
    This works so far ... but my problem is the standard Logon-screen, which is nearly unusable on the mobile device (screen size, layout, etc.). Is there any solution to create logon-tickets directly from the WebDynpro application (using something from com.sap.engine.interfaces.security.auth or similar ?) or any chance to have a special logon screen for mobile devices (parameter sap-wd-client=Pie03Client is ignored for the logon screen).
    Thanks in advance.
    regards,
    Hendrik

    Hi Henrik,
    Did you find the solution to your problem ?
    I'm facing the same issue, so I'd be pleased to know the solution!
    Regards
    Stekam

  • Dynamic PDF's for Mobile Devices

    I have been converting my company's forms to dynamic pdf format using ES4 to facilitate completion and submission by our highly dispersed workforce.  These forms are unfortunately not accessible on the mobile devices our field employees typically use.  Can anyone suggest resources that a layman can use to learn about and utilize ES4's mobile forms and HTML5 capabilities?  All the information I have located on the Adobe website appears to be oriented to programmers or developers, and my (small) company does not have the financial resources to engage a consultant for this purpose.  Thanks in advance for your insights and suggestions.

    Hi,
    In short, what you're attempting to do can be very costly if you stick with the Adobe LiveCycle ES solution to render forms on mobile devices (via their mobile forms platform). Also, if you're not familiar with the technology, you'd definitely need  to engage a consultant in addition to purchasing the require server-side modules to render your forms in HTML5?
    Questions:
    1. What mobile devices are being used in the field?
    2. Do your forms absolutely need to be made dynamic, or could they be saved as "static" XFA, instead? If you're doing things like adding rows to tables, hiding/revealing subforms, etc. then yes, the forms would need be dynamic. But if your forms do not need to be dynamic and/or you can tweak the design logic so the form is rendered in a static layout, then using the forms on an iPad is possible via the app "PDF Expert". PDF Expert can read/render static XFA files HOWEVER there's no support for javascript in that format. On the Android side, the app "qPDF Notes" provides support for static XFA PDFs.
    On the other hand...if users are able to use a Windows PRO based tablet (i.e. something like the Surface Pro 2, or even something less expensive running Windows PRO - not RT), then you could install Adobe Reader or Acrobat and use the dynamic forms, as is, on those tablet...no need for HTML5 rendering.
    In either case, the solutions mentioned about would be far less expensive (and less complicated) to trying to using ES4 mobile forms.
    Hope this helps!

Maybe you are looking for

  • Bapi function module for clearing

    Hi,   This is pravakar ,Any body can help me  is their any function module  in BAPI for clearing the invoice?

  • Cash Journal Receipt Functionality

    Dear All, As we have Receipt printout from cash journal, how to change the formate of receipt? Please reply. Regards, Bhadresh

  • Text Editor update in PR05 ( Travel & Expense )

    Hi, I am trying to update editor in PR05. I am using function module HRTRV_IF_MODIFY_TRIP to update PR05. For some reason, I am trying to update the editor. But I am getting below error message. Field PTP71-EDITOR_TEXT(9) does not exist I saw whether

  • How do I underline text in Flash?

    There doesn't seem to be any clearcut instructions on how to underline text in Flash.  I did a search and there seems to be many solutions by adding code, etc.  I tried using the Line Tool to underline some text and it shows up fine on the stage but

  • Black thing on Photo settings..help, before i get bumped off to the bottom

    Hope this info helps.. I just got this iMac intel dual core few days ago coz the iLife 6 sounded better with new features but too many glitches??? To get around this black thing on Photo Settings, i just drop same picture from my pane to replace old