Access SAP Portal on iPad

Hi,
We have a requirement to access SAP Netweaver Portal on iPad.
I would like to know whether it is possible to access Netweaver portal on iPad? Are there any settings, as we do for SAPGUI for HTML.
Any information would be very helpfull.
Regards,
Ashish

Hi,
SAP GUI for HTML is only for Internet Explorer.
So Safari doesn't work fine.
I use free Browser App  iLunascape which you can choose IE engine from many kind of engines.
I am not heavy user but It works well as far as I can see.
Thanks,

Similar Messages

  • How to access Sap portal login user in ejb web service

    Hi,
    I wnt to access SAP Portal login user in my ejb application which resides on the same server.
    I am using following code
    try {
         IUser user =null;                         IWDClientUser wdUser = WDClientUser.getCurrentUser();
                                  user = wdUser.getSAPUser();
                             } catch (WDUMException e) {
                                  // TODO Auto-generated catch block
                                  e.printStackTrace();
    Some additional jar files are required for this?
    The same code works fine with webDynpro but not with ejb.
    Thanks in advance     
    Best regards,
    Nilesh

    Thanks for reply.
    I have already added com.sap.security.api in my EJB module project classpath. How to add the same in EJB application Project (application-j2ee-engine.xml)?
    Best regards,
    Nilesh

  • Server Names exposed while accessing SAP Portal

    We are using FireFox browser to access the SAP Portal application.We are running SAP EnterPrise Portal on NW 7.01. Our Production SAP portal is exposed to
    internet.
    After the users log into the system, using Firefox browser, the server name is seen in the status bar of the
    browser. This is a security threat, as the server names are exposed.
    This issue is not there if we access the sameusing Internet explorer.

    Abdul,
    See this:
    http://help.sap.com/saphelp_nw04s/helpdata/en/b6/8b9aea8d7c11d5bdd8006094191908/frameset.htm
    The suspect is "User Mapping Type". It is probably set to "admin", instead of "admin, user". That is why you do not see the system when logged in as one of the users.
    Also make sure users have permissions in PCD to the system.
    If does not help, check other suspect as SAP help suggests:
    The selected principal does not have end-user permissions for the system.
    The system's logon method does not require any user mapping data for the system (such as "SAPLogonTicket" for a system that is not the SAP reference system).
    The system's user mapping type is not set correctly or not set at all.
    There is no system alias defined for the system.
    There is no system landscape registered, for example, the one contained in Enterprise Portal.
    Regards,
    Slava

  • How to restrice ananymous user access to portal link /irj/servlet/prt/portal/prtroot/com.sap.portal.navigation.portallauncher.default?

    Hi experts,
    We had an issue with portal access. I wonder if portal is venerable for security threats?
    Could you please let me how to restrict the unauthorized users (anonymous user) to the portal URL.
    https://HOST:50001//irj/servlet/prt/portal/prtroot/com.sap.portal.navigation.portallauncher.default .
    Appreciate your help.
    Regards
    Maruti

    Hi Maruti,
    Hope you are doing good.
    Can't you just amend the portal permissions so that this access is not possible.
    The PCD location should be:
    com.sap.portal.system/security/sap.com/NetWeaver.Portal/no_safety/com.sap.portal.navigation.portallauncher....
    Hope this helps.
    Thank you and have a nice day!
    Kind Regards,
    Hemanth

  • Add tab in Portal to access SAP BW system

    Hello All,
    Currently, we have SAP ECC tab available in the Portal to access the ECC system directly with a single sign on.
    Similarly, we want to add a tab to access SAP BW system wherein user can login to BW system to execute a process chain..
    Please advice me with the development required for the same.
    Thanks & Regards
    Sneha

    Hi Sneha,
    Please follow the below steps.
    1) Create a system object to BW system and get the single sign on done and test the connections are fine(BASIS TEAM)
    2) Create a Portal Role called BW Extractor
    3) Create a standard transaction iview to rspc to BW system, and make the entry point on iview to true
    4) Add the iview to the Portal Role
    5) Add the Portal Role to user or user group.
    Please let me know how it goes !
    Regards,
    Vivek Nidhi

  • Access denied (Object: com.sap.portal.system/security/no_safety)

    We are implementing EP 6.0, currently with SP11. We have developed some iViews, which are using RFC functions to get information from backend system, in this case SRM.
    Everything worked fine, till the day we’ve transported those developments into other systems (production and testing systems). We are getting the following error Access denied (Object: com.sap.portal.system/security/no_safety). This error only comes out if the iView is called from inside another one, if called isolated it works fine.
    Does any one have any idea about how to solve this?

    Hi AA, you can find in the log file in order to identify what is the object that you need to add in the security zone.
    You can find information for the security zones on:
    http://help.sap.com/saphelp_nw04/helpdata/en/25/85de55a94c4b5fa7a2d74e8ed201b0/content.htm
    Regards.

  • Can I access Webi queries and Xcelsius dashboards from SAP portal?

    Hello,
    Can I access Webi queries and Xcelsius dashboards from SAP portal?  And how?
    Thanks

    Portal Part 1
    /people/ingo.hilgefort/blog/2010/03/29/sap-businessobjects-enterprise-sap-enterprise-portal--part-1-of-4
    Portal Part 2
    /people/ingo.hilgefort/blog/2010/03/30/sap-businessobjects-enterprise-sap-enterprise-portal-part-2-of-4
    Portal Part 3
    /people/ingo.hilgefort/blog/2010/04/08/sap-businessobjects-enterprise-sap-enterprise-portal--part-3-of-4
    Portal Part 4
    /people/ingo.hilgefort/blog/2010/04/21/sap-businessobjects-enterprise-and-sap-enterprise-portal--part-4-of-4
    Ingo

  • Issues accessing keystore of SAP Portal

    we need to configure an SSO from SAP portal and a third party website by passing encrypted userid as url parameters.
    To configure the SSO I have received the public key of the third party and able to access it from server location. Now I have to access priavte key of the SAP Portal certificate and sign the UserId and pass it as url parameter. I have gone through many blogs and written code as below which is giving Invalid Keystore Format error.
    My question is
    1. What should be passed to FileInputStream?
    As of now we are passing the .cer file which is stored as part of project.
    Below code is throwing error at ks.load() method.
    String fielPath1 = request.getPublicResourcePath()+"/SAPLogonTicketKeypair-cert1.cer";
    FileInputStream ksfis = new FileInputStream(fielPath1);
    KeyStore ks = KeyStore.getInstance("JKS");
    ks.load(null, sPass.toCharArray());
    BufferedInputStream ksbufin = new BufferedInputStream(ksfis);
    ks.load(ksbufin, sPass.toCharArray());
    PrivateKey priv = (PrivateKey) ks.getKey(alias, kPass.toCharArray());
    Error is:
    Invalid keystore formatsun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:633)sun.security.provider.JavaKeyStore$JKS.engineLoad(JavaKeyStore.java:38)java.security.KeyStore.load(KeyStore.java:1185)am_sso_apc.doContent(am_sso_apc.java:132)com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:213)
    Please let me know how to pass the filepath to extract the priavte key .
    Regards,
    Satish

    Sorry to say: but that's a bad advise.
    The usertype impacts not only the ability / requirement to change passwords (see <a href="http://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=622464">SAP Note 622464</a>).
    A better advise might be <a href="http://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=869218">SAP Note 869218</a>: if users need to have the option to logon to the ABAP backend systems by using UID/PWD but do not want to be prompted to change those backend passwords when accessing the backend systems through the Portal, then that note can provide some solution.
    Of course: not using UID/PWD but some (other) sort of SSO would be the better approach. However, somethimes that is not possible (e.g. when it would be required to purchase an SNC partner product, according to <a href="http://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=66687">SAP Note 66687</a>).
    Wolfgang

  • Portal Role to Access SAP ERP

    Hi
    I have created my own portal iviews and pages by using Visual composer. It creates a sales order in SAP ERP system.
    When I execute it in the portal with Super Admin rights everything works fine. Perfect.
    But when I assign to a user that does not have super admin rights it gives a error. The error is due to authorization.
    What is the minimum role that must be assigned to end users to allow portal content to access SAP ERP??
    Must be able to stipulate that  a sprcific user has access to a specific SAP ERP.

    Hi
    In SAP the user has SAP_ALL, full access in SAP ERP. it is from the portal side that is giving the error. soon as I apply super admin it will work.
    In ST22 I see no error to this effect.
    I created my own content with Visual composer and do not want to use SAP content.
    Any solutions?

  • Can the KM be accessed by another non-sap portal?

    Company has portals based on Vignette.
    Also has SAP CRM, where a catalog is based in KM.
    Can the Vignette portal or Vignette Content Management System connect to KM?
    Can any other CMS's connect to KM?
    I would ask on a Vignette forum, but I haven't found one yet.
    Thanks!

    Hi Eric,
    >> I know this isn't the ideal place to ask a Vignette question...
    You may feel free to do so.
    But the answer is:
    The SAP Portal can access Vignette through iViews, KM in the Portal offers an API (the Repository Framework API) to which Vignette could connect or via which you could connect Vignette and this would e.g. make Vignette searchable trough the SAP Portal.
    You see the tendency, right?
    If Vignette wants to search (and before this they will have to index and crawl) KM repositories, the connectivity question lies on Vignette's side.
    Regards,
    Karsten

  • Url Iview from SAP Portal to Infoview encounters "Access is denied"

    Hi
    We are using URL Iview to point to Business Objects Infoview from SAP Portal. Our requirement is to launch the Infoview within the portal content area. We are able to preview the iview, but encounter "Access is denied" error when we add the iview to page, we realised that we are only able to launch infoview when it is setup to open in a new window.
    Is there a way where we can show the Infoview in portal content frame.
    Regards
    Kamal

    Hi experts,
    i got the same problem how to integrate the InfoView Appl into the "Portal Content Area" and not only as an new Window.
    When i try to analyse the problems, the error stacks say some thin about that an Java Script is trying to change the browser size and the portal is not allowing this... thats my assumptions.
    Has anybody how we could solve this tricky topic ?
    For details to to customize the URL iView please refer to this thread: Integration of InfoView into SAP Portal using SSO
    kind regards
    Stefan

  • Accessing SAP ECC 6.0 from the iPad or iPhone

    Dear experts
    Can we access ECC 6.0 through iPad or iPhone? whether we can access as same as we use through desktop clinet with all transactions & report access
    kindly revert
    Thanks
    Venugopal

    Dear Menon,
    You can try this SAP Launcher on the App Store on iTunes (I never tried it)
    In alternative you can set your system to be accessed by web GUI (this will work with iOS/Android/any web browser)
    http://scn.sap.com/docs/DOC-29485
    In both case you need to access SAP server with VPN or SAPRouter string.
    Best Regards
    Gianmaria

  • How to Access data from SAP Content Server through SAP Portal

    Hi Experts,
    I want to aceess the data from SAP Content server through portal. Currently I am working on LSO business package. The SAP content server should work like Webdav as we uses KM as webdav.
    I am trying to use this URL into the CMS address but it is not working
    http://XXX-XXX-XXXX:1090/ConTentServer/ContentServer.dll?adminContRep&operation=docIdList&contRep=ZADGAS_LSO
    Is there any other procedure for acceesing the DATA  from SAP content server. ?
    Thanks,
    Ahmad

    If your Content Server is being used by DMS, then you can use the DMS Connector for KM.  This connector allows all documents stored in DMS to be accessed in Portal as if they are stored in KM.  For more info see this:
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/42/d289b446076bb2e10000000a1553f6/frameset.htm
    Andrew

  • Users are not able to access two different SAP portals at a time

    Hi Experts,
    Users are not able to access two different SAP portals at a time, if users login the OLD SAP Portal then they are not able to access NEW SAP Production Portal asking user id's & Password while doing ECC & APO transactions.
    If user clear the Internet Explorer cache then for time being they can access but its not the permanant solution.
    Can any one please help me on this.
    Thanks,
    Jay

    Hello Jay,
    here we are facing this problem, this company users not able to access both the portals at at time
    If you want to access HTC and Armed at the same time you gotta complete SSO Config or User mapping between these two Portals. You can refer to the below link for more details.
    http://help.sap.com/saphelp_nw04/helpdata/en/f8/3b514ca29011d5bdeb006094191908/content.htm
    Thanks
    SM

  • How can I access BOE Universes from SAP Portal?

    I'm trying to access an Universe on BOE server from SAP Portal.  Does anyone know if this is possible or not?  Additions, is it possible to get access to the list of universes from the portal?

    Hi Ingo,
    I think we are talking about the same KM.  Yes, I could see all folders from the BOE server inside portal KM repository.  However, I could not see any of the universes.  If I put a Webi document in one of the visible folders, then I can see the webi document.
    If it is possible, I'd prefer not to go the other route to use SDK.
    Thanks,
    Garry

Maybe you are looking for

  • How to delete tracks from iOS device?

    Hello! Could somebody help me with a problem? How can I delete tracks, stored in my device memory (im usuing iPhone 4) when itunes match mode turned on? "Swipe to delete" on tracks/artist doesn't work. So the swipe works only when itunes match mode i

  • Installation Oracle E-Business Suite 11.5.10 on a redhat linux platform 5.5

    Dear All, Can someone has already installed Oracle E-Business Suite 11.5.10 on a redhat linux platform 5.5? I'm having issues with compat-oracle5 library who is requesting binutils15 and on the linux box it's version binutils17? Thanks Dilbert137

  • Can you undo sudo command that has stopped third party OCR application from running

    Mac OS X 10.5, Ink: Handwriting recognition cannot be enabled Last Modified: July 28, 2011 Article: TA25180 Old Article: 307372  This article has been archived and is no longer updated by Apple. Products Affected Mac OS X 10.5, Mac OS Components Issu

  • Best config for win 7 + ubuntu

    Hi guys, Just looking for some ideas as to what would be the best option to run latest mac osx, win7 and ubuntu on my macbook pro 15' late 2011 (md322). No getting around having all 3 as i require them for work. And not real keen in buying a windows

  • Disconnecting daisychained Firewire drives

    I have two MacAlly 100AC firewire drives daisychained. What is the proper way to disconnect one or both of them from my computer?