SAP Lumira Connection to Protected App Server

Hi All,
Report in lumira on top of a universe, requires connection to BI application server (CMS Name, User ID & Password).
But in our production server we have siteminder integration and business users are not allowed to connect to application server directly, in this case can we use URL instead of CMS name OR is it possible to connect to application server without port opening to use Lumira ?
Please suggest.
Thanks and Regards,
Ankit Sharma

Hi,
according to the help guide http://help.sap.com/businessobject/product_guides/vi01/en/lum_117_user_en.pdf
section 5.9.1 Connecting to a universe datasource
->  Enter the name or IP address of the server hosting your Central Management Server (CMS).
I feel this would be a very strong topic for consideration and future inclusion. Please could you submit your enhancement to the Lumira Ideas Place?    (over here: SAP Lumira: Home )
I seem to remember someone asking for the ability to connect to an @Clustername  but can't find it alas..
regards,
H

Similar Messages

  • How to configure database connectivity in OC4J App server.

    Hi,
    I am working on Oracle ESB flows. I have the flow inserting rows into database table using database connection that I have defined. I havent set up connection settings in OC4J EM console.
    I dont wonder when JDeveloper is inserting rows into tables, as connection is explicitely defined in JDeveloper.
    Now I login to EM enviroment and click on Home, click on Web Services tab, and when I use this flow as a Web Service end point and feed values through the form that it provided, it also works. But since I havent defined any connection properties in App Server explicitely, I wonder where is it getting connection properties(JNDI name) from.
    I want to configure some settings in Testing Environment and am kind of stuck at this point.
    Thanks,

    Hi.
    When you don't have JNDI configured, OC4J uses the design time connection defined in the Adapter's WSDL. Look for the following description in your Adapter WSDL:
    <!-- Your runtime connection is declared in
    J2EE_HOME/application-deployments/default/DbAdapter/oc4j-ra.xml
    These 'mcf' properties here are from your design time connection and
    save you from having to edit that file and restart the application server
    if your JNDI is missing.
    These 'mcf' properties are safe to remove.
    -->
    Now, for JNDI configuration, you can use the SOA Suite tutorial as a reference:
    http://download.oracle.com/docs/cd/B31017_01/core.1013/b28937/setting_up.htm#CIHBHEFC
    There you can find the steps to create a connection pool, data source, etc.
    Denis

  • Connection problems with App Server database

    Hello All.
    On my project it has been noticed in the database listener logs that our Application Server is attempting to make a jdbc connection to the database multiple times a second on different ports. The port numbers appear to be increasing on each attempt.
    We believe this is causing the number of connections available to be rapidly taken up, and limiting the App Server from making any connections for future processes.
    Here are some of the events in the database listener log:
    20-AUG-2006 13:10:40 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=PWTS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=OUR_HOST)(PORT=37870)) * establish * PWTS * 0
    20-AUG-2006 13:10:40 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=PWTS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=OUR_HOST)(PORT=37871)) * establish * PWTS * 0
    20-AUG-2006 13:10:40 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=PWTS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=OUR_HOST)(PORT=37872)) * establish * PWTS * 0
    20-AUG-2006 13:10:40 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=PWTS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=OUR_HOST)(PORT=37873)) * establish * PWTS * 0
    20-AUG-2006 13:10:40 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=PWTS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=OUR_HOST)(PORT=37874)) * establish * PWTS * 0
    20-AUG-2006 13:10:41 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=PWTS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=OUR_HOST)(PORT=37875)) * establish * PWTS * 0
    20-AUG-2006 13:10:41 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=__jdbc__)(USER=))(SERVICE_NAME=PWTS)) * (ADDRESS=(PROTOCOL=tcp)(HOST=OUR_HOST)(PORT=37876)) * establish * PWTS * 0
    Has anyone seen anything similar to this or have any suggestions as to where to look?
    Thanks,
    Sean

    sqlnet does switch the ports dynamically, I guess for scaling and security - but I have to admit, I am not a db guru - o it's jsut what i remember from previous chats with colleaques..

  • Connecting to 9i Apps Server

    Hello,
    I have both application server and Jdeveloper on same PC(sandalone). I cannot connect to 9i application server.
    When I installed application server I did not give any
    username and password. BY default username it's taking admin and i left password blank,URL- ormi "localhost/". I didn't give port number. However connection is refused.
    How can succesfully connect to Apps server.
    Please help me with this.
    Ponic

    hi , the following link may be of help to u http://www.awprofessional.com/articles/article.asp?p=26560&seqNum=7&rl=1

  • HELP - Can't connect to Sun App Server

    Hi,
    I'm confused. The Sun App Server documentation states that the protocol to use in the JNDI context lookup is jms or tcpjms, and that the service runs on port 7676:
    javax.naming.ConfigurationException: Invalid URL: jms://localhost:7676 [Root exception is java.net.MalformedURLException: unknown protocol: jms]
    When I use the other (commented-out) line: iiop://localhost:3700, I get a different error (and I don't think this is the protocol I want to use anyway).
    JNDI API lookup failed: javax.naming.NameNotFoundException [Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0]
    javax.naming.NameNotFoundException [Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0]
    So which is it?? Here is my code...thanks in advance for your help!
    package com.tpc.jms.simpleProducer;
    import javax.jms.*;
    import javax.naming.*;
    import java.util.Hashtable;
    import java.util.Properties;
    public class SimpleJMSTest {
    // public static final String PROVIDER_URL = "iiop://localhost:3700";
    public static final String PROVIDER_URL = "jms://localhost:7676";
    public static final String CONTEXT_FAC = "com.sun.jndi.cosnaming.CNCtxFactory";
    public static void main (String argv[]) {
    try {
    Properties properties = new Properties();
    properties.put(Context.PROVIDER_URL, PROVIDER_URL);
    properties.put(Context.INITIAL_CONTEXT_FACTORY, CONTEXT_FAC);
    properties.put(Context.SECURITY_PRINCIPAL, "guest");
    properties.put(Context.SECURITY_CREDENTIALS, "guest");
    InitialContext initialCtx = new InitialContext(properties);
    System.out.println("Good!");
    //TopicConnectionFactory topicConnFactory = (TopicConnectionFactory) initialCtx.lookup (fac);
    //Topic nasdaqTopic = (Topic)initialCtx.lookup(topic);
    /* System.out.println("Creating topic connection");
    TopicConnection topicConnection = topicConnFactory.createTopicConnection();
    topicConnection.start ();
    System.out.println("Creating topic session: not transacted, auto ack");
    TopicSession topicSession = topicConnection.createTopicSession(false, Session.AUTO_ACKNOWLEDGE);
    System.out.println("Creating topic, subscriber");
    TopicSubscriber nasdaqTopicSubscriber = topicSession.createSubscriber (nasdaqTopic);
    System.out.println ("Ready to subscribe for messages :");
    nasdaqTopicSubscriber.setMessageListener(new SubscriberListener());*/
    catch (Exception e) {
    e.printStackTrace ();
    }

    Hi,
    First of all, you don't use iiop in JMS.
    And also for your problem, did you by any chance forget to create your connectionfactory in the application server?

  • Trouble connecting to the app server

    Facts:
    Discoverer installed on NT4, connecting to Oracle8i on Solaris via odbc. Able to connect through sqlplus, etc from the nt4.
    Receiving the following error message:
    Unable to connect to the Oracle Discoverer Application Server: oracle/discoverer/corba/_st_DCILocator
    Please contact your Oracle Discoverer Administrator.
    That is me. I am not sure if I installed this thing incorrectly or what.
    Thanks,
    Young

    So I got past the last problem that i posted. I was able to connect after realizing that there were a set of net8 applications (including the discoverer) that uses a different tnsnames.ora than is found in <ora home>\network\admin. I found that you need to also have a tnsnames.ora located in <ora home>\net80\admin and <ora home>\net80\tnsapi.
    This problem killed me!
    I now have that up and running. I got the administrator application up and configured everything wonderfully. I am now stuck on trying to get the 3i client running. I am running into more connectivity issues (says cannot connect to the application server). I am certain that it is another problem with my setup.
    If anyone can help that would be great. if i find the answer i will post.

  • Unnable to connect oracle Discover app server.

    Hai Friends...
    Tried installing 9iAS 1.0.2.1.0 on NT.
    When i am starting the Oracle Discover plus
    it is saying that unable to connect to thr oracle discoverer application server, Discover has detected a conflict loading class oracle/discoverer/corba/_st_DCILocator.class.
    Any help wouid be most appreciated.
    Cheers
    Gopi
    null

    Murali,
    Great suggestion. I found that after adding a host one has to run AutoConfig on Database Server and bounce the TNS Listener. I will read manuals to find out how to do that, but it will be great if someone can point me to where I can find that information quickly. Better still, if someone has instructions on how to do both, that will save a lot of time.
    Thank you.
    Rahul

  • Problems Connecting to Discoverer App Server

    I have Discoverer3i and Oracle8i co-existing on one NT 4.0 sp3 machine with IIS as the Web Server.
    All parts of the installation went well. I can connect to the database from both instances using sql*plus and the DB Alias. I can connect to the EUL using Discoverer User edition on the server itself.
    When I try connecting from a remote client using a Web Browser, the applet responds with an erro message "Unable to connect to the Oracle Discoverer Application server oracle/discoverer/corba/_st_DCILocator please contact your oracle discoverer Administrator". The OracleDiscovererService is running, so is the OADUTIL and the Locator. I even cleaned up the CLASSPATH and removed PATH references to the Oracle 8i installation of JRE to ensure no conflicts but still get this error. Any Ideas anyone?
    Thanks.
    Owiso.

    I have Discoverer3i and Oracle8i co-existing on one NT 4.0 sp3 machine with IIS as the Web Server.
    All parts of the installation went well. I can connect to the database from both instances using sql*plus and the DB Alias. I can connect to the EUL using Discoverer User edition on the server itself.
    When I try connecting from a remote client using a Web Browser, the applet responds with an erro message "Unable to connect to the Oracle Discoverer Application server oracle/discoverer/corba/_st_DCILocator please contact your oracle discoverer Administrator". The OracleDiscovererService is running, so is the OADUTIL and the Locator. I even cleaned up the CLASSPATH and removed PATH references to the Oracle 8i installation of JRE to ensure no conflicts but still get this error. Any Ideas anyone?
    Thanks.
    Owiso.

  • I am not able to connect to the apps server

    I get an error code 1 when I attempt to log into the apps section from my printer.  I talked to tech support and we checked everything.   All is good except for getting into the apps section. 

    Hi jbsytes,
    What printer are you trying to access the print apps with?
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • SAP Additional App Server unable to recognize sybase DB on PAS

    Hi Experts,
    We have Primary App Server(PAS) + DB installed on a single box which is up and running fine, now we are trying to install an additional application server(AAS) and we have NFS mounted /sapmnt/SID and /usr/sap/trans from PAS onto the Addtln App Server but got some error when SWPM is starting the instance. When checked the logs dev_w0 says that it is unable to establish connection with the sybase database :
    ERROR: -1 in function SQLConnectWithRetry (SQLConnectWithRetry) [line 4531]
    C  (30012) [08001] [Sybase][ODBC Driver]Client unable to establish a connection
    C  syb_glob.dbsl_ca.errclass set to DBSL_EC_RESTART
    C  Connection 0 failed using DRIVER={Adaptive Server Enterprise};server=hnpclecp;port=4901;uid=SAPSR3;db=ECP;pwd=xxxxxxxxxxxx;TextSize=21
    47483647;FetchArraySize=1000;ReleaseLocksOnCursorClose=1;DynamicPrepare=1;UseCursor=2;homogeneousbatch=1;charset=utf8;EncryptPassword=1;E
    nableLOBLocator=0;app=R3D000 01 comm rd ODBC;logintimeout=30;ProtocolCapture=cap_w0_comm_rd;supresstdscontroltokens=1;SuppressRowFormat=1
    ;SuppressParamFormat=1;
    C
    B  ***LOG BV3=> severe db error 30012     ; work process is stopped [dbsh         1241]
    B  ***LOG BY2=> sql error 30012  performing CON [dblink       544]
    B  ***LOG BY0=> [ASE Error SQL30012:08001]Client unable to establish a connection [dblink       544]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1521]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   11445]
    Both the servers are on the same network and hence all the ports will be open already.
    Also /sapmnt/<SID> is mounted and in /usr/sap/SID/D01/exe of app server has the latest sybase library files.
    Kindly advice if I have missed any mandatory steps for AAS intance installtion...
    Thanks !!!
    Regads,
    Srikanth

    Hi Juan,
    We are using Sybase ASE and SWPM has not asked for any client software(I believe its not required for Sybase). And R3trans -X returns 0012 with trans log saying ;
    4 ETW000  [     dev trc,00000]  RSecSSFs: Entering function "RSecSSFsGetRecord" [rsecssfs.c 872]          11  0.017067
    4 ETW000  [     dev trc,00000]  RSecSSFs: Configuration data read from environment parameters [rsecssfs.c 4359]
    4 ETW000                                                                                                  40  0.017107
    4 ETW000  [     dev trc,00000]  RSecSSFs: Data file "/usr/sap/ECP/SYS/global/security/rsecssfs/data/SSFS_ECP.DAT" opened for read [rsecssfs.c 2539]
    4 ETW000                                                                                                  63  0.017170
    4 ETW000  [     dev trc,00000]  RSecSSFs: Key file "/usr/sap/ECP/SYS/global/security/rsecssfs/key/SSFS_ECP.KEY" not found, using default key [rsecssfs.c 1424]
    4 ETW000                                                                                                  35  0.017205
    4 ETW000  [     dev trc,00000]  RSecSSFs: Record with key "DB_CONNECT/DEFAULT_DB_CON_ENV" not found in secure storage [rsecssfs.c 2561]
    4 ETW000                                                                                                  33  0.017238
    4 ETW000  [     dev trc,00000]  RSecSSFs: Exiting function "RSecSSFsGetRecord" with return code 1 (message: Record with key "DB_CONNECT/DEFAULT_DB_CON_ENV" not found in secure storage) [rsecssfs.c 940]
    4 ETW000                                                                                                  38  0.017276
    4 ETW000  [     dev trc,00000]  read_ssfs_record(): not found is accepted, RSecSSFsGetRecord(DB_CONNECT/DEFAULT_DB_CON_ENV)=1 : Record with key "DB_CONNECT/DEFAULT_DB_CON_ENV" not found in secure storage
    4 ETW000                                                                                                  13  0.017289
    4 ETW000  [     dev trc,00000]  read_ssfs_record(): deregister callback ssfs_dbi_trace                     7  0.017296
    4 ETW000  [     dev trc,00000]  load of SQLLEN8 SYB library libsybdrvodb8.so successful.                4328  0.021624
    4 ETW000  [     dev trc,00000]  lib_dbsl 721 12/12/2013 15:20:00                                         761  0.022385
    4 ETW000  [     dev trc,00000]  connection unquiesced                                                     17  0.022402
    4 ETW000  [     dev trc,00000]  721_EXT build                                                             12  0.022414
    4 ETW000  [     dev trc,00000]  dbsybslib.dll patch info                                                  17  0.022431
    4 ETW000  [     dev trc,00000]    SAP patchlevel  0                                                       11  0.022442
    4 ETW000  [     dev trc,00000]    SAP patchno  213                                                         9  0.022451
    4 ETW000  [     dev trc,00000]    Last SYBASE DBSL patchlevel 0                                           10  0.022461
    4 ETW000  [     dev trc,00000]    Last SYBASE DBSL patchno         213                                    11  0.022472
    4 ETW000  [     dev trc,00000]    Last SYBASE DBSL patchcomment IBM i: Multi-connect to SYBASE IQ (1946327)
    4 ETW000                                                                                                  17  0.022489
    4 ETW000  [     dev trc,00000]  Fri May 16 02:18:33 2014                                             30001377  30.023866
    4 ETW000  [     dev trc,00000]  ERROR: -1 in function SQLConnectWithRetry (SQLConnectWithRetry) [line 4531]
    4 ETW000                                                                                                  26  30.023892
    4 ETW000  [     dev trc,00000]  (30012) [08001] [Sybase][ODBC Driver]Client unable to establish a connection
    4 ETW000                                                                                                  19  30.023911
    4 ETW000  [     dev trc,00000]  syb_glob.dbsl_ca.errclass set to DBSL_EC_RESTART                          22  30.023933
    4 ETW000  [     dev trc,00000]  Connection 0 failed using DRIVER={Adaptive Server Enterprise};server=hnpclecp;port=4901;uid=SAPSR3;db=ECP;pwd=xxxxxxxxxxxx;TextSize=2147483647;FetchArraySize=1000;ReleaseLocksOnCursorClose=1;DynamicPrepare=1;UseCursor=2;homogeneousbatch=1;charset=utf8;EncryptPassword=1;EnableLOBLocator=0;app=R3 000 00 comm rd ODBC;logintimeout=30;ProtocolCapture=cap_p21766_comm_rd;supresstdscontroltokens=1;SuppressRowFormat=1;SuppressParamFormat=1;
    4 ETW000                                                                                                 
    4 ETW000  [    dblink  ,00000]  ***LOG BY2=>sql error 30012  performing CON                              221  30.024200
    4 ETW000  [    dblink  ,00000]  ***LOG BY0=>[ASE Error SQL30012:08001]Client unable to establish a connection
    4 ETW000                                                                                                  19  30.024219
    2EETW169 no connect possible: "DBMS = SYBASE --- "
    Please assist.
    Regards,
    Srikanth G

  • How to Non-ACC Client connect Sun App Server 8 with SSL

    I have create a Rich Client(Non-ACC) that connect to Sun App Server 8 with IIOP(8001) and is working fine. However, when I try to connect to same server with using SSL (8002) and throw exception during lookup a Bean as below.
    Please help!!
    Server Configuration
    ================
    IIOP Port(s): 8001, 8002, 8003
    All listener ports are enabled
    Client Coding
    ===========
    env.put(javax.naming.Context.PROVIDER_URL, "iiop://"+url);
    env.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY,"com.sun.appserv.naming.S1ASCtxFactory");
    System.setProperty("javax.net.ssl.keyStoreType", "jks");
    System.setProperty("javax.net.ssl.keyStore", "D:\\Sun\\AppServer\\domains\\adsr\\config\\keystore.jks");
    System.setProperty("javax.net.ssl.keyStorePassword", "password");
    System.setProperty("javax.net.ssl.trustStore", "D:\\Sun\\AppServer\\domains\\adsr\\config\\cacerts.jks");
    System.setProperty("javax.net.ssl.trustStorePassword", "password");
    System.setProperty("com.sun.CORBA.connection.ORBSocketFactory", "com.sun.enterprise.iiop.IIOPSSLSocketFactory");
    ic = new InitialContext(env);
    Object objref = ic.lookup("ejb20/statelessSession/EntControllerHome");
    Exception
    ========
    [java] Mar 18, 2005 4:43:59 PM com.sun.corba.ee.spi.logging.LogWrapperBasedoLog
    [java] INFO: "IOP00710299: (INTERNAL) Successfully created IIOP listener on the specified host/port: all interfaces/4645"
    [java] Mar 18, 2005 4:44:00 PM com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl readFully
    [java] WARNING: "IOP00410215: (COMM_FAILURE) Read of full message failed :
    bytes requested = 12 bytes read = 7 max wait time = 300 total time spent waiting = 364"
    [java] org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 215 completed: No
    [java] at com.sun.corba.ee.impl.logging.ORBUtilSystemException.transportReadTimeoutExceeded(ORBUtilSystemException.java:2629)
    [java] at com.sun.corba.ee.impl.logging.ORBUtilSystemException.transportReadTimeoutExceeded(ORBUtilSystemException.java:2655)
    [java] at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.readFully(SocketOrChannelConnectionImpl.java:676)
    [java] at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.read(SocketOrChannelConnectionImpl.java:545)
    [java] at com.sun.corba.ee.impl.protocol.giopmsgheaders.MessageBase.readGIOPHeader(MessageBase.java:119)
    [java] at com.sun.corba.ee.impl.transport.CorbaContactInfoBase.createMessageMediator(CorbaContactInfoBase.java:153)
    [java] at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.readBits(SocketOrChannelConnectionImpl.java:325)
    [java] at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.handleEvent(SocketOrChannelConnectionImpl.java:1175)
    [java] at com.sun.corba.ee.impl.transport.SelectorImpl.run(SelectorImpl.java:275)
    [java] javax.naming.CommunicationException: Can't find SerialContextProvider [Root exception is org.omg.CORBA.COMM_FAILURE:   vmcid: SUN  minor code: 208 c
    ompleted: Maybe]
    [java] at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.java:133)
    [java] at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:290)
    [java] at javax.naming.InitialContext.lookup(InitialContext.java:347)
    [java] at com.shkco.jaf.test.JAFLogonTest.connect(JAFLogonTest.java:110)
    [java] at com.shkco.jaf.test.JAFLogonTest.setUp(JAFLogonTest.java:134)
    [java] at junit.framework.TestCase.runBare(TestCase.java:125)
    [java] at junit.framework.TestResult$1.protect(TestResult.java:106)
    [java] at junit.framework.TestResult.runProtected(TestResult.java:124)

    I don't think tomcat supports the ejb-ref portion of web.xml. If you're using ejbs your best bet is to use a web container within a J2EE implementation.
    --ken                                                                                                                                                                                                                                                                                                                                           

  • Error creating connection to Oracle Application Server 10g(10.1.3)

    Hey
    Im using Oracle JDeveloper 10g and when i tried to create a new connection to Oracle App Server 10.1.3 and test it, I received the following error message
    Error while parsing OPMN dump in XML format: XML Parse Exception: tag=[null] Ran out of data, content []
    I have no idea what this means and any help on this will be highly appreciated. Thank you
    Arjhun

    OK, in short:
    Cause: Wrong OPMN request port used to configure the connection (third step of "Create Application Server Connection" wizard). You might have kept the default (6003) but your OPMN is configured with different request port.
    Solution: Check $ORACLE_HOME/opmn/conf/opmn.xml file and look for entry like this:
    <port local="6140" remote="6240" request="6040" />
    Create the connection using OPMN request port that is set in opmn.xml file.
    Thanks
    Shail

  • SAP Lumira Cloud connection on iPad

    Dear gurus
    I am trying to set up an iPad connection to the SAP Lumira Cloud through the SAP Mobile App version 6.1.18
    I can create the connexion. I know that my log in information works as I can log in through the web browser, but using the iPad app, I just get the following error:
    Unable to connect to the server MOB 06301 HTTP 417
    I just have a Free Edition account. Is there any limitation for that kind of account for iPad access ?
    PY

    Hello Pierre - I am getting the same error using Mobi iOS
    There is a similar note here http://service.sap.com/sap/support/notes/2126696
    Would you mind opening an Incident with SAP Support?  I'll keep looking but I am seeing the same as you.
    Tammy

  • Publish Dataset and history in sap lumira server

    Hi Experts
    I'm trying to publish a dataset and story from the sap Lumira desktop to Lumira  server.
    Tools used
    SAP HANA DATABASE REV.80 INSTANCIA EN WINDOWS AZURE
    SAP LUMIRA DESTOP V1.18
    SAP LUMIRA SERVER V1.18
    The process I followed is as follows:
    1. Create Users:
    CONFIG: Assign the role sap.bi.admin :: BI_CONFIGURATOR. Some other role or privilege required?
    TECNICO: Assign the role sap.bi.common :: BI_TECH_USER. Some other role or privilege required?
    ANALISTA: Assign the role sap.bi.common :: BI_DATA_ANALYST. This user is the one that has the role to publish in Lumira sap server. Some other role or privilege required?
    2. Entry to http: // <HOSTNAME> 80 <INSTANCE> / sap / hana / xs / FormLogin /
    I sign in with  the password created in hana studio  for each user and then make the change the password of each user CONFIG - TECNICO – ANALISTA
    3. Entry to http://<HOSTNAME>:80<INSTANCE>/sap/bi/launchpad/fiori
    I sign in with the  user CONFIG and in the catalag administration of sap Lumira server income in the field Enter technical  user TECNICO, so I confirm the sql connection.
    4. Entry to http: // <HOSTNAME> 80 <INSTANCE> / sap / hana / xs / admin
    I sign in with the user CONFIG sap.bi.launchpad.logic.v2 following path of the package and confirm that the sql connection is for the user TECNICO
    5. Entry to Sap lumira Desktop, sign in with the user ANALISTA to access the dataset, I create visualization and history, the last step is to publish the dataset and story in SAP Lumira server, for this I sign in with the user ANALISTA but when I clic on the button PUBLISH IN SAP LUMIRA SERVER is show me this error:
    Error - The dataset could not be published to SAP Lumira Server because publishing to the SAP HANA layer failed.  Reason is ''. (HDB 11009)
    I searched many blogs of sap and tested with the following options but None of the above helped me to solve the problem.
    http://scn.sap.com/community/lumira/blog/2014/06/10/how-to-install-sap-lumira-server
    http://scn.sap.com/community/lumira/blog/2014/06/21/sap-lumira-server-on-hana--part-2
    http://scn.sap.com/thread/3532168
    http://www.saptechies.com/access-privileges-required-sap-lumira-from-sap-hana/
    http://scn.sap.com/thread/3523762
    http://scn.sap.com/community/lumira/blog/2014/06/16/sap-lumira-server-sap-fiori-launchpad-integration
    http://www.saptechies.com/security-settings-run-lumira-hana-online-shl-views/
    http://scn.sap.com/community/lumira/blog/2014/06/16/sap-lumira-server-post-install-configuration
    6. Another issue is when I access to Lumira server  http: // <HOSTNAME> 80 <INSTANCE> / sap / bi / launchpad / and I sign in with the user ANALISTA, I find a number of the dataset in lumira server but when I run  any for create a compose can not access   hana dataset.
    Shows me the following error
    Please help me with this issues
    Thanks

    Hi John,
    I also forwarded the incident to SAP and as suggested by SAP, after assigning sap.hana.xs.lm.roles::Administrator  my issue was resolved.
    Regards,
    Abhijit

  • Connection error in sap lumira

    Hi All,
           While I am connecting  SAP HANA cloud platform through SAP LUMIRA its throughing  an error "Check the server name and instance ID."
    where I will get the server name and instance id.
    Thanks & Regards,
    Hemanth Reddy M.

    Hi,
    You are trying to connect to the cloud system and not the HANA system underneath.
    In order to do the same, you can follow the scn
    http://scn.sap.com/community/lumira/blog/2013/12/02/trying-out-lumira-with-the-hana-cloud-platform-free-trial-account#jive_content_id_Connecting_Lumira_to_HCP
    Regards,
    Anjali.

Maybe you are looking for

  • HELP ME!!!! who can help me ???

    My eclipse always halt suddenly. I have no idea how to solve it, and i have reinstall my JVM and eclipse.but it doesn't work, the eclipse halt again. The below is the eclipse log hs_err_pid3740.log. Who can help me? much appreciate!!!! # An unexpecte

  • USB ports are not working and I can't figure out what to do!

    My laptop is a HP Pavilion dv4-1225dx Entertainment Notebook. I've had it for almost three years now. It is running Windows Vista, the same it came with. The problem has only just recently started or was just discovered. My problem is that the two US

  • Files w/ adobe icons won't open

    adobe reader 9. toshiba laptop vista premium.1GBram . in program files there's alot of files with the adobe icon next to them. ahere all dll files. when i try to open one of these adobe opens with the black screen with a message as follows: adobe cou

  • Garageband unable to update to acquire extra sound effects

    I was trying to access the Vinyl loops/sound effects earlier but it asked me to download the software update. When I got to the Garageband menu in the app and click "Check for Updates" it says Update Avaliable (from 6.0.4 to 6.0.5). When I click upda

  • 0CO_PC_ACT1 DATA SOURCE- Valuation class missing

    Hi All, I have data reconciliation issue. Valuation class is not getting populated for some materials. Data source is ZCO_PC_ACT1. Please tell me which tables are used by this data source. Also when I checked in RSA3 I found that for a single materia