Quantcast
Channel: SCN : Discussion List - SAP HANA and In-Memory Computing
Viewing all 5653 articles
Browse latest View live

Alternative of connect by root in HANA

$
0
0

Dear All,

 

I need the alternative of connect by root in HANA. My requirement is to convert following

 

INPUT:

 

ID           Parent ID      Product

1               2               A    

2               3               B

5               3               C

 

Output

 

ID     Product

1     A

2     A    

2     B

3     A

3     B

3     C

5     C

 

I also tried to implement hierarchies in Attribute view but i think that it can only be consumed in MDX or excel. I want such output in database


API'S TO GET ABAP DATA ELEMENTS FOR INPUT / OUTPUT ATTRIBUTES OF ANY HANA VIEWS EX: SQL VIEWS, ATTRIBUTE VIEWs,CALCULATION VIEWS

$
0
0

Hi Colleagues,

 

Use case:

 

ABAP tables related to MDG are replicated to HANA DB through SLT with out changing any table and their fieldnames. 

 

 

For Example : A view any view SQL view or  Attribute View or Calculation View is formed based on  four tables which are replicated through the above process.

 

Lets Say the total fields in the four tables are around 400.

 

But while creating the view we have selected only 20 attributes as input or output attributes of the view  among these 400 fields.

 

We renamed the INPUT or OUTPUT attributes of the view generated so that they are user understandable.

 

Question:

 

Is there any way where we could read the information through code ,

 

1) The input or output attributes  are from which table? which field?(among the four tables and 400 fields)

2) Can we get the ABAP dataelement corresponding to this Input or output attribute in any way?

3) Can we get the time stamp information like when the view is created and changed?

 

4) Is this information stored in any Hana System views  or Tables or any where in Hana Catalog.

5) Are there any  ABaP APi's or SQL Procedures already available which would return us the above information.

 

 

Thanks,

Vasavi.

Is HTTPS/SSL mandatory for LRM 1.0 on HANA

$
0
0

Dear Colleagues,

 

I'm installing LRM 1.0 on HANA ramp-up system in our non-production environment.  I do not want to implement HTTPS/SSL due to unnecessary complexity.  I'm having a problem accessing the LRM UI so I created a SAP customer message to report it.  The response from SAP is "it is currently not foreseen to install the LRM UI without using HTTPS/SSL".  I've asked them to confirm that HTTPS/SSL is mandatory.

 

I've avoided the need for SSL in the past on other systems that supposedly required it by changing the Logon Data to "Standard" for the related internet services. 

 

Has anyone implemented LRM 1.0 on HANA without HTTPS/SSL?  If so, how was it accomplished?

 

Feedback is appreciated as always.

 

Rex

hdbschema is not visible

$
0
0

Hi All,

 

I am following the development video HANA Native Development -- Exercise 2: Creating database objects via the repository  and I got stuck with several questions at the step where it makes a new schema under the project folder.

 

I made the schema as instructed, committed and activated it without error. But, it is not getting displayed under catalog in navigator preference tab. I refreshed the project several times and tried closing and opening the hana studio completely, but nothing helped me.

 

My question-

1) Is the schema actually created and is somehow not visible to me? reasoning lies- I could activate it and cannot reuse the same name when I try to create another schema. Also, I can create table under that schema that too without error.

2) The hdbtable file which I created, is available under catalog > Public synonyms. The question is WHY? Also, the table name has the complete path of the schema that i created and wonder where it is lying.

3) I had added the system initially, and when I tried to create a hdbtable under that schema, i could see the table in that schema as well as under public synonyms. WHY again?

 

I am really getting confused with all these and I wish if I could reach directly to the mentor Thomas Jung.

 

Please help me guys.

 

Thanks,

Atul


Backup strategy for Hana database

$
0
0

Hi all,

 

I am new to Hana and our company is planning a Hana project.

I am the dba for this project.

I have a few questions about backup strategy in Hana env.

 

  1. storage snaphost

In our current oracle env, we do a bcv copy at storage level (snapshot), before we do this, we put the db in hot backup mode, In Hana,   can we still use the same strategy?

Based on my current understanding of Hana, every 5-min it flush the memory to the disk which is a consistent image.

So ,we just need to do a snapshot for storage ( without  doing anything like put db in hot backup mode as we did  in oracle env)? Am I right?

 

  1. the db-level backup

we plan to backup the db first to the local file system and keep the copy there for 1 or 2 weeks and then move the tape.

Our production  environment will be a 4-node cluster environment.

The non-prod will be single node.

 

is there anything different between single node and cluster env in terms of backup/recover ?

 

Thanks,

 

Lily

learn SAP HANA

$
0
0

Hi,

 

I have been working as SAP-B2B integrator for past 8 years. Worked on ABAP and integration tools like  sap pi, seeburger, etc... Now I am planning to switch my platform. I have heard about SAP BI, HANA but doesn't have much knowledge about it.. I am also thinking about learning functional modules like WM/PP/SD, etc.. Can you please suggest if it fine to learn BI/HANA with my background or should I learn different module?

 

Thanks for your suggestion..

SLT system access

$
0
0

Hi All,

 

I am new to the Hana world and trying to get hands on it.

 

I have got the 30 days trial version of Hana environment also.

I have created some schema in the Hana studio and trying to get the data into that schema from some other SAP system.

 

what I have got so far is that, one approach is via using SLT.

But my concern is that where is this SLT which is nothing but a netweaver application. But i not getting any clue about the SLT .

 

Kindly help me with some suitable docs and also correct me my understanding is wrong.

 

Thanks in advance.

 

With Regards,

Gopal Gupta


HTML5 application on mobile

$
0
0

Has anybody build the application and tested the same on mobile?

 

The application just looks amazing on the web browser, but I am unable to work on to open the ports to access the same on my mobile.

 

Any clues to proceed?

 

Thanks,

Atul


problem creating hdbview

$
0
0

Anybody who has followed this video http://www.saphana.com/docs/DOC-3019 , encountered the below error?

 

 

 

I am using the below code to make the view-

schema="SessionAtul";

query="select T0.\"OrderId\",

              T1.\"OrderItem\",

              T0.\"CreatedBy\",

              T0.\"CreatedAt\",

              T1.\"ProductId\",

              T1.\"Quantity\",

              T1.\"QuantityUnit\"

        from \"SessionAtul\".\"workshop.sessions.system.data::header\" T0

        left outer join \"SessionAtul\".\"workshop.sessions.system.data::item\" T1

        on T0.\"OrderId\" = T1.\"OrderId\"

        order by T0.\"OrderId\" ASC";

        depends_on_table =["workshop.sessions.system.data::header","workshop.sessions.system.data::item"];

SLT system access

$
0
0

Hi All,

 

I am new to the Hana world and trying to get hands on Hana technology.

 

I have got access to the Hana environment. Currently I am trying to replicate the data from one the sap system to the Hana environment.

So, far what I have understand is that, this can be achieved by SLT which is a netweaver application.

My concern is that how i will get access to this SLT ? 

 

And it will be good enough if one can help me with some ref docs.

 

Thanks in Advance,

Gopal

Installing Hana Client DB: Can not update ODBO

$
0
0

Running XP Pro

Installing Hana client database and getting error that it

 

Cannot Update package ODBO

Install of Package ODBO failed

Registration of package ODBO failed

 

(other drivers such as odbc went in fine. Also Studio installed fine)

 

Also can't register MDX-  %SystemRoot%\system32\regsvr32.exe: %SystemRoot%\system32\regsvr.exe /s "C:\ProgramFiles\SAP\hdbclient\SAPNewDBMDXProvider.dll":cannot create process, The system can not find file specified.

Calculated Attribute not visible in IDT

$
0
0

Hi All,

I created a calculated attribute field in HANA. everything works fine in HANA but when I try to use the analytical view in IDT I am missing this field altogether. Any thoughts about resolving it.

 

KP

Real time Data Replication into SAP BW - Options Available

$
0
0

Hello All,

 

Just wanted to get advise/best practices to get real time data replication/near real time data replication in BW (Hana as DB)

 

Options i have

 

1) SLT - this is real time, but given the complexity of recreating the standard extractor logic again in BW , its a Pain

 

2) BODS(near real time) - It supports the extractors, i can push the data into DSO frequently and reprort, any challenges in Delta mechanisms?

 

3) DXC - Get the data loaded into HANA, and again consume in BW virtual Providers, This has less development efforts from BW view, but i am scared about the security maintenance in HANA again

 

 

Experts please share your thoughts , also suggest how you are doing the real time replication, given we have Robust SAP BW Shop.

Thanks

Karthik

What view contains multidimensional reporting models in SAP HANA

$
0
0

Dear All,

 

Could you please help me in knowing which View in HANA contains Multi Dimensional Reporting models?

 

Is it Anaytical View or Calculation View?

 

Many thanks in advance,

 

Best Regards,

 

Rama

2 Questions on Privileges in SAP HANA

$
0
0

Dear All,

 

Can any one of you please help me in getting the answers for the below 2 questions? Also, can you please explain me the reason why that particular privilege is only applicable?

 

1. Which privilege can be applied to restrict user for accessing data for specific  years and region?

A. SQL Privilege

B. Analytic Privilege

C. System Privilege

D. Package Privilege

 

 

2. Which privilege can be grant to users for department wise .

A. SQL Privilege

B. Analytic Privilege

C. System Privilege

D. Package Privilege

 

 

Thanks in advance,

 

Best Regards,

KV


learn SAP HANA

$
0
0

Hi,

 

I have been working as SAP-B2B integrator for past 8 years. Worked on ABAP and integration tools like  sap pi, seeburger, etc... Now I am planning to switch my platform. I have heard about SAP BI, HANA but doesn't have much knowledge about it.. I am also thinking about learning functional modules like WM/PP/SD, etc.. Can you please suggest if it fine to learn BI/HANA with my background or should I learn different module?

 

Thanks for your suggestion..

How to have Variable popup in the Excel with HANA Connection

$
0
0

Hello,

 

I have a Calculation view with 3 input parameters. I wish to connect this calculation view using  Excel connection via MDX connection. But I dont see an option to get the variable popup to have in Excel. If I do data preview in Hana Studio, I see the input parameter pop up.

 

What is the best way to have a value passed based on the user input..

 

example: Selection is for date and I have to pass different value to get different set from the calculation view.

 

Appreciate the help..

 

Happy Tony

how to access analytic views created in HANA using IDT

$
0
0

Dear SCN,  I have created analytic view using HANA, Am unable to see the column views created for the same under "_SYS_BIC" schema in IDT but the same is visible in HANA Studio. Can you please help me understand how can i consume these views? And if they are any limitations?

 

Regards,

Krishna Tangudu

Dashboard in SAP B1Analytics

$
0
0

Hello,

 

I'm trying to do a dashoard in SAP B1A, but when I import the file

the system throw an error

 

 

Do I have to put the file in an other place?

 

how can I import the file correctly?

 

Regards!!!

hdbschema is not visible

$
0
0

Hi All,

 

I am following the development video HANA Native Development -- Exercise 2: Creating database objects via the repository  and I got stuck with several questions at the step where it makes a new schema under the project folder.

 

I made the schema as instructed, committed and activated it without error. But, it is not getting displayed under catalog in navigator preference tab. I refreshed the project several times and tried closing and opening the hana studio completely, but nothing helped me.

 

My question-

1) Is the schema actually created and is somehow not visible to me? reasoning lies- I could activate it and cannot reuse the same name when I try to create another schema. Also, I can create table under that schema that too without error.

2) The hdbtable file which I created, is available under catalog > Public synonyms. The question is WHY? Also, the table name has the complete path of the schema that i created and wonder where it is lying.

3) I had added the system initially, and when I tried to create a hdbtable under that schema, i could see the table in that schema as well as under public synonyms. WHY again?

 

I am really getting confused with all these and I wish if I could reach directly to the mentor Thomas Jung.

 

Please help me guys.

 

Thanks,

Atul


Viewing all 5653 articles
Browse latest View live


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