Quantcast
Channel: SCN : Discussion List - SAP HANA Cloud Platform Developer Center
Viewing all 3131 articles
Browse latest View live

hcp's trail instance does not allow me to create CDS artifact

$
0
0

I create a CDS object, xxx.hdbdd and its content like below

 

namespace i034171trial.xs1.HelloDemo.data;

 

@Schema: 'DEV_0K8JWYXI3N4U3TE68NTDY1GH6'

context TPCH {

 

  type key{

  identifier :String(12);

  };

 

  type tt_rname{

  R_NAME :String(25);

  };

 

  type tt_errors {

        HTTP_STATUS_CODE : Integer;

        ERROR_MESSAGE : String(100);

        DETAIL : String(100);

    };

 

 

DEV_0K8JWYXI3N4U3TE68NTDY1GH6 is a system assigned schema, i can create new table under it,,

 

but i could not generate any CDS objects, and system report this message when i try to activate this CDS objects.

 

In this mode only generation to schema "_SYS_BIC" is allowed.Failed to generate CDS artifact



2015-11-03_11-37-30.png


HCP does not support app development via local SAP HANA Studio connect it?

$
0
0

i have conntected to HCP using my own account/id/passord.

 

i have createa a repository and created a xs project, when i try to activate a simple object, like .xsapp, .xsaccess, hana studio prompt, i do not have this authroziation.

but actually i can do it in Web IDE to develop XS apps. does any encounter this situation??

 

2015-11-03_14-16-00.png

 

Looks, is it a bug of HCP? Why i can do it online Web IDE, but could not do it on locally...? very stanger..

No access to HCP cockpit - request is invalid?

$
0
0

Hello,

 

after I logged on and accepted the terms and conditions, I get this webserver message:

 

error.JPG

 

 

My account  d037255 still exist in SAP Cloud Identity.

 

 

Any ideas, what is wrong?

 

 

Thanks & kind regards,

 

Jens Hähnel

HANA Cloud Connector - Getting nullpointerexception when trying to login

$
0
0

I'm following this tutorial to setup the Cloud Connector: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/1019847e-e2aa-3210-6f97-93fbd76947ef?QuickLink=index&overridelayout=true&59983513326533

 

I've installed the Windows .msi and left everything at defaults. When i go to https://localhost:8443 I am presented with the SAP HANA Cloud Connector login page where  I enter username: Administrator and password: manage . Right after clicking the login button I'm getting a HTTP Status 500 - java.lang.NullPointerException error. I have the most recent download from SAP Development Tools for Eclipse (sapcc-2.6.1.1-windows-x64). Am I missing some other prerequisites to get the Cloud Connector setup?

Issue when using HCP.HCP_AFL_WRAPPER_GENERATOR

$
0
0

Hello,

 

I'm trying to get clustering working on HCP but when executing PAL creation procedure I'm always getting the following error:

 

(generate PAL procedure)

Statement: 'CALL HCP.HCP_AFL_WRAPPER_GENERATOR ('TWEETERS_CLUSTER', 'AFLPAL', 'KMEANS', PAL_SIGNATURE)'.Error calling procedure: transaction rolled back by an internal error: [129] "HCP"."HCP_AFL_WRAPPER_GENERATOR": line 31 col 5 (at pos 1742): [129] (range 3): transaction rolled back by an internal error: invalid name of function or procedure: AFL_WRAPPER_GENERATOR: line 1 col 13 (at pos 12)

 

(drop PAL procedure)

Statement: 'CALL HCP.HCP_AFL_WRAPPER_ERASER ('TWEETERS_CLUSTER')'.Error calling procedure: invalid name of function or procedure: [328] "HCP"."HCP_AFL_WRAPPER_ERASER": line 18 col 5 (at pos 1073): [328] (range 3) invalid name of function or procedure exception: invalid name of function or procedure: AFL_WRAPPER_ERASER: line 1 col 13 (at pos 12)

 

It looks like the AFL functions are missing. So I checked the following:

1) SELECT * FROM SYS.AFL_FUNCTIONS WHERE PACKAGE_NAME='PAL' and AREA_NAME = 'AFLPAL' and function_name = 'KMEANS';

This returns 1 line (146121,_SYS_AFL,AFLPAL,PAL,KMEANS,26.10.2015 09:25:02.818,2,2,LFunc,UNKNOWN,)

 

2) select * from "SYS"."SCHEMAS" WHERE SCHEMA_NAME = '_SYS_AFL';

This returns 1 line (_SYS_AFL,_SYS_AFL,FALSE,)

 

Any ideas what I'm missing ?

 

Thanks

com.sap.security.um.user.UserProvider & User doesnt return user attributes

$
0
0

Hi

Am working on a HCP extension application. Am using the above packages to retrieve the logged on User Information like Name & Email.

 

  UserProvider users = UserManagementAccessor.getUserProvider();

and

  User user = users.getUser(request.getUserPrincipal().getName()); both returns valid response and user is returned as PXXXXX user

 

But getAttribute("email") or getAttribute("firstname") or getName is returning null.

 

I have to use java ee6 web profile server as destinations also required in my extension app.

Any hints

 

******************************************************************************************************************************************************************************

 

Dependencies in pom.xml

 

<dependency>
<groupId>com.sap.cloud</groupId>
<artifactId>neo-javaee6-wp-api</artifactId>
<version>2.62.4</version>
<scope>provided</scope>

</dependency

 

I have tried these two implementations

 

web.xml

 

  <resource-ref>

    <res-ref-name>user/Provider</res-ref-name>

    <res-type>com.sap.security.um.user.UserProvider</res-type>

  </resource-ref>

 

 

First Implementation

try {

 

InitialContext usrctx = new InitialContext();

UserProvider userProvider = (UserProvider) usrctx.lookup("java:comp/env/user/Provider");

    User user = null;

    if (request.getUserPrincipal() != null) {

    user = userProvider.getUser(request.getUserPrincipal().getName());

      LOG.info("User Name" + user.getName());

      LOG.info(("email" + user.getAttribute("email")));

    }

 

}

catch (Exception e) {

                // Handle errors

              }

 

Second Implementation

 

              try {

                // UserProvider provides access to the user storage

                UserProvider users = UserManagementAccessor.getUserProvider();

                 

                // Read the currently logged in user from the user storage

                User user = users.getUser(request.getUserPrincipal().getName());

              

                // Print the user name and email

                LOG.info("User name: " + user.getAttribute("firstname") + " " + user.getAttribute("lastname"));

                LOG.info("Email: " + user.getAttribute("email"));

              } catch (Exception e) {

                // Handle errors

              }

Insufficient privileges to the views created.

$
0
0

Hi Everyone,

 

Using HCP and having issue while viewing data after modelling Analytical view or other views. I can only view data from attribute view.

 

I am facing following issue :

SAP DBTech JDBC: [258]: insufficient privilege: Not authorized

 

Checked the forum. But many of them are facing the same issue and couldn't fine the solution. Please guide us how to resolve the issue as we are not authorized to add the roles to the user. Is there any other possibility to view the data.

Do we have DEV QAS PRD in HANA Cloud Platform?

$
0
0

Hi All,

I just have developed an application in HCP trial account but I have a question about in the real HCP instance, will we have DEV and QAS? like SAP ERP or not?

Any advice would be appreciated

 

Thank you,

Thep.


HCP is down.

$
0
0

Dear Team,

 

Not able to connect to HCP.


Error Details:

Could not connect to SAP HANA Cloud Platform system

An internal server error occurred.

Existence of database user/schema for schemaId hanainstance could not be checked in the underlying DBMS system due to an error. Contact HCP support if the error persists.

 

HanaInstance Failure.JPG

Mobile service admin access error : internal error 500

$
0
0

Hi there,

Does anyboby know how I could resolve following issue?

 

When I tried to access HCPms (mobile Service) , following error has been shown :

HTTP Status 500 - An internal pplication error occuerred : Request : nnnnnnnnnnnn xxxxxxtrial:hcpmsadmin

 

I think configuration (role setup, etc.) are correctry finished.

If any idea for solve this, could you please give me advice?

 

Thanks,

Masashi

Configuring SAP HANA Cloud Connector with trial account

$
0
0

The free developer license includes the use of cloud connector. (message from SAP)

When I try to set up the Initial configuration of the SAP HANA Cloud Connector as described in the SAP How-To Guide (Version 1.0, March 2013 and Technical Documentation SAP HANA Cloud, Document Version: 1.6.0 - 2013-06-18 ) I get the the message

"Connection to https://connectivityconfig.hanatrial.ondemand.com:443 refused"

 

Configuration Data of Cloud Connector Connector

 

Landscape Host:        hanatrial.ondemand.com

Account Name:         s<user>trial

User Name:               s<user>

Password:                 ...

 

Do I have to observe further settings?


Is it possible to build CDS Views on HANA Tables / Views

$
0
0

Hello Everybody,

 

i tried to build an CDS view on a Table from the EPMSAMPLEDATA.SNWD_AD Content in the HANA Cloud. I could not get it done.

 

i tried it like followed :

 

namespace s0010044918trial.test;
@Schema: 'DEV_9V2SR3LG4AKF30G9TXCW2ZF3W'
context CDC_1_1 {
define view hallo as select from S0010044918trial.test.data.SNWD_AD.attributeview {  NODE_KEY,  CITY,  POSTAL_CODE
};
};

 

 

------

 

do have someone a hint ?

 

Is it at all possible to create CDS on HANA - Tabels / Views ?

OAuth local server failure in sdk 2.26.7.1

$
0
0

Hi All - especially Martin Raepple

 

I'm getting an error every time I start up a local 2.26.7.1 server:

 

java.lang.ClassNotFoundException: com.sap.cloud.security.oauth2.commons.exception.OAuthClientEntityException

 

Anything you are aware of?

 

Cheers,


Chris

Insufficient Privileges: During SAP HANA XS Role.hdbrole file activation

$
0
0

Hello Friends,

 

I have create a Analytic view and I want to see it in SAP Lumira but it is not showing in Lumira. I am using SAP HANA cloud trial account. I searched SCN forum and found below blog

 

Trying out Lumira with the HANA Cloud Platform (free trial account)

 

and did the same suggested by Robert Russell  in above forum. I created model_access.hdbrole file in HANA XS project but when I am trying to activate it is saying insufficient privileges. I am trying to grant privilege on Analytic view in role file Please check attachment for more details.


After this I have executed below procedure as per SAP recommendation for trail account


SAP HANA Cloud Platform


Step 1  - call "HCP"."HCP_GRANT_ACTIVATED_ROLES"

Step 2 - call "HCP"."HCP_GRANT_ROLE_TO_USER"('pMYUSERtrial.MYPACKAGE::model_access', 'pMYUSER')


but these are not working.


Looking forward needful help.


Regards

Gursharanjit




How to give coding for inserting an image in HCP template?

$
0
0

Hi all,

 

I'm currently customizing an app done in HCP platform according to our company's standard. I need to insert an image in that app.

I tried the following code:

 

<Image width="140px" height="140px" id="mobo_logo" src="images/8-Mobo-LOGO.png"/>

 

 

But the image is not getting displayed.

Can someone help me with this?

 

 

Regards,

Ramya


How to whitelist WebIDE in SFSF

Class Cast Exception in Destination Factory

$
0
0

Hello all,

 

We currently want to use the Destination Factory API to access a backend system over the Hana Cloud Connector. Unfortunately we receive an exception we are currently not understanding:

 

2015 11 02 16:59:10#+00#ERROR#com.sap.csc.customer.poc.project.dcs.backend.odata.ODataClient##anonymous#Thread-7#na#customerprojectpocqafactory#customerpoc#web##Failed to create an HTTP client from the destination configuration name X_Gateway: Cannot cast class com.sap.core.connectivity.cloud.destinations.CloudDestinationFactory to interface com.sap.core.connectivity.api.DestinationFactory

java.lang.ClassCastException: Cannot cast class com.sap.core.connectivity.cloud.destinations.CloudDestinationFactory to interface com.sap.core.connectivity.api.DestinationFactory

    at com.sap.csc.customer.poc.project.dcs.backend.odata.ODataClient.getHttpClient(ODataClient.java:781)

    at com.sap.csc.customer.poc.project.dcs.backend.odata.ODataClient.readEdm(ODataClient.java:281)

    at com.sap.csc.customer.poc.project.dcs.backend.BackendConnectivity.testBackendConnectivity(BackendConnectivity.java:56)

    at com.sap.csc.customer.poc.project.dcs.backend.BackendConnectivity.<init>(BackendConnectivity.java:36)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)

    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)

    at java.lang.reflect.Constructor.newInstance(Constructor.java:526)

    at java.lang.Class.newInstance(Class.java:392)

    at org.apache.catalina.core.DefaultInstanceManager.newInstance(DefaultInstanceManager.java:116)

    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4919)

    at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5517)

    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)

    at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:901)

    at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:877)

    at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:652)

    at org.eclipse.gemini.web.tomcat.internal.TomcatServletContainer.startWebApplication(TomcatServletContainer.java:125)

    at org.eclipse.gemini.web.internal.StandardWebApplication.start(StandardWebApplication.java:109)

    at org.eclipse.gemini.web.extender.WebContainerBundleCustomizer.addingBundle(WebContainerBundleCustomizer.java:49)

    at org.osgi.util.tracker.BundleTracker$Tracked.customizerAdding(BundleTracker.java:482)

    at org.osgi.util.tracker.BundleTracker$Tracked.customizerAdding(BundleTracker.java:1)

    at org.osgi.util.tracker.AbstractTracked.trackAdding(AbstractTracked.java:262)

    at org.osgi.util.tracker.AbstractTracked.track(AbstractTracked.java:234)

    at org.osgi.util.tracker.BundleTracker$Tracked.bundleChanged(BundleTracker.java:457)

    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImpl.java:847)

    at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230)

    at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148)

    at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged(Framework.java:1523)

    at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent(Framework.java:1459)

    at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent(Framework.java:1454)

    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:391)

    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:299)

    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:291)

    at com.sap.core.js.deployer.watchservice.WARDeployer.deployStartStep(WARDeployer.java:816)

    at com.sap.core.js.deployer.watchservice.WARDeployer.bulkDeploy(WARDeployer.java:731)

    at com.sap.core.js.deployer.watchservice.FileSystemEventsListener.triggerBulkDeployment(FileSystemEventsListener.java:118)

    at com.sap.core.js.deployer.watchservice.FileSystemEventsListener.onChange(FileSystemEventsListener.java:58)

    at org.eclipse.virgo.util.io.FileSystemChecker.notifyListeners(FileSystemChecker.java:245)

    at org.eclipse.virgo.util.io.FileSystemChecker.check(FileSystemChecker.java:166)

    at com.sap.core.js.deployer.watchservice.WatchTask.run(WatchTask.java:29)

    at java.lang.Thread.run(Thread.java:812)|

2015 11 02 16:59:10#+00#ERROR#com.sap.csc.customer.poc.project.dcs.backend.BackendConnectivity##anonymous#Thread-7#na#customerprojectpocqafactory#customerpoc#web##Failed to test odata

javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

    at sun.security.ssl.Alerts.getSSLException(Alerts.java:192)

    at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1916)

    at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:279)

    at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:273)

    at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1469)

    at sun.security.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:213)

    at sun.security.ssl.Handshaker.processLoop(Handshaker.java:913)

    at sun.security.ssl.Handshaker.process_record(Handshaker.java:849)

    at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1035)

    at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1344)

    at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1371)

    at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1355)

    at org.apache.http.conn.ssl.SSLConnectionSocketFactory.createLayeredSocket(SSLConnectionSocketFactory.java:275)

    at org.apache.http.impl.conn.HttpClientConnectionOperator.upgrade(HttpClientConnectionOperator.java:169)

    at org.apache.http.impl.conn.PoolingHttpClientConnectionManager.upgrade(PoolingHttpClientConnectionManager.java:333)

    at org.apache.http.impl.execchain.MainClientExec.establishRoute(MainClientExec.java:398)

    at org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:219)

    at org.apache.http.impl.execchain.ProtocolExec.execute(ProtocolExec.java:195)

    at org.apache.http.impl.execchain.RetryExec.execute(RetryExec.java:86)

    at org.apache.http.impl.execchain.RedirectExec.execute(RedirectExec.java:108)

    at org.apache.http.impl.client.InternalHttpClient.doExecute(InternalHttpClient.java:184)

    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82)

    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:106)

    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:57)

    at com.sap.csc.customer.poc.project.dcs.backend.odata.ODataClient.readEdm(ODataClient.java:281)

    at com.sap.csc.customer.poc.project.dcs.backend.BackendConnectivity.testBackendConnectivity(BackendConnectivity.java:56)

    at com.sap.csc.customer.poc.project.dcs.backend.BackendConnectivity.<init>(BackendConnectivity.java:36)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)

    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)

    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)

    at java.lang.reflect.Constructor.newInstance(Constructor.java:526)

    at java.lang.Class.newInstance(Class.java:392)

    at org.apache.catalina.core.DefaultInstanceManager.newInstance(DefaultInstanceManager.java:116)

    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4919)

    at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5517)

    at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)

    at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:901)

    at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:877)

    at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:652)

    at org.eclipse.gemini.web.tomcat.internal.TomcatServletContainer.startWebApplication(TomcatServletContainer.java:125)

    at org.eclipse.gemini.web.internal.StandardWebApplication.start(StandardWebApplication.java:109)

    at org.eclipse.gemini.web.extender.WebContainerBundleCustomizer.addingBundle(WebContainerBundleCustomizer.java:49)

    at org.osgi.util.tracker.BundleTracker$Tracked.customizerAdding(BundleTracker.java:482)

    at org.osgi.util.tracker.BundleTracker$Tracked.customizerAdding(BundleTracker.java:1)

    at org.osgi.util.tracker.AbstractTracked.trackAdding(AbstractTracked.java:262)

    at org.osgi.util.tracker.AbstractTracked.track(AbstractTracked.java:234)

    at org.osgi.util.tracker.BundleTracker$Tracked.bundleChanged(BundleTracker.java:457)

    at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImpl.java:847)

    at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230)

    at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148)

    at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged(Framework.java:1523)

    at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent(Framework.java:1459)

    at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent(Framework.java:1454)

    at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:391)

    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:299)

    at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:291)

    at com.sap.core.js.deployer.watchservice.WARDeployer.deployStartStep(WARDeployer.java:816)

    at com.sap.core.js.deployer.watchservice.WARDeployer.bulkDeploy(WARDeployer.java:731)

    at com.sap.core.js.deployer.watchservice.FileSystemEventsListener.triggerBulkDeployment(FileSystemEventsListener.java:118)

    at com.sap.core.js.deployer.watchservice.FileSystemEventsListener.onChange(FileSystemEventsListener.java:58)

    at org.eclipse.virgo.util.io.FileSystemChecker.notifyListeners(FileSystemChecker.java:245)

    at org.eclipse.virgo.util.io.FileSystemChecker.check(FileSystemChecker.java:166)

    at com.sap.core.js.deployer.watchservice.WatchTask.run(WatchTask.java:29)

    at java.lang.Thread.run(Thread.java:812)

Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

    at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:385)

    at sun.security.validator.PKIXValidator.engineValidate(PKIXValidator.java:292)

    at sun.security.validator.Validator.validate(Validator.java:260)

    at sun.security.ssl.X509TrustManagerImpl.validate(X509TrustManagerImpl.java:326)

    at sun.security.ssl.X509TrustManagerImpl.checkTrusted(X509TrustManagerImpl.java:231)

    at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:126)

    at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1451)

    ... 59 more

Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

    at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(SunCertPathBuilder.java:196)

    at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:268)

    at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:380)

    ... 65 more

 

 

Do you guys have an idea?

 

Thank you very much and Best Regards

Philipp

WebIDE not working

$
0
0

Good morning,

 

for 3 days now my WebIDE is not working anymore. When starting its showing the white screen with the loading bar. An additional bar moving from the left to the right appears in the top (see attached screenshot).

 

I was waiting for long time but it doesn't load.

 

Kind regards,

Jan

No access to HCP cockpit - request is invalid?

$
0
0

Hello,

 

after I logged on and accepted the terms and conditions, I get this webserver message:

 

error.JPG

 

 

My account  d037255 still exist in SAP Cloud Identity.

 

 

Any ideas, what is wrong?

 

 

Thanks & kind regards,

 

Jens Hähnel

Restricted Column unusual behaviour

$
0
0

Hello,

 

I created Restricted Column (Res_ENO) on measure ENO_1 (giving Aggregation value in Semantics as MAX (or MIN)). The expected result is as below-

result1.JPG

The condition was to display values in Res_ENO when EMP_SAL = 150.

 

 

But when I give Aggregation value in Semantics as 'COUNT' for measure ENO_1, the result is-

result2.JPG

 

Values in column Res_ENO is displayed in all rows even when the condition is set for EMP_SAL = 150.

 

I find it as unusual behaviour or am I missing something in understanding the logic behind Restricted columns?

 

Regards,

Ajay

Viewing all 3131 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>