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

Re: SAP HANA Install Error message "Cannot load Sql module"

$
0
0

Hi Shaik,

 

Could you please let us know , which version of HANA you are installing .

Please use latest version

please also tell which os version.

 

BeSt RgArDs

aTuL


Re: Error in Data Provisioning

$
0
0

Hi Raj,

 

Thank you for the information. However we have only one source system. Infact i was able to migrate the tables to SAP HANA sometimeback. SUddenly i got that error. Basis confirms that the RFC connection between the SAP ECC and SLT is working fine.

 

Please let me know where else i need to check.....

 

Regards

Nilesh

Defining a recursive view in SAP HANA

$
0
0

Hi All,

 

I have a problem defining a recursive view in HANA, in MS SQL for example I use the WITH statement to recursively iterate over the bill_of_materials view (see below), any idea how to do it in HANA?

 

WITH recursiveBOM
  
(assembly_id, assembly_name, parent_assembly) AS
(SELECT
parent.assembly_id,parent.assembly_name, parent.parent_assembly
FROM bill_of_materials parent
WHERE
parent.assembly_id=100
UNION ALL
SELECT child.assembly_id, child.assembly_name, child.parent_assembly
FROM recursiveBOM parent, bill_of_materials child
WHERE child.parent_assembly = parent.assembly_id)

SELECT assembly_id, parent_assembly, assembly_name
FROM recursiveBOM;

 

Thanks,

 

Tal

B1 HANA 9.0 installation error

$
0
0

Hi all,

 

We have received our IBM HANA server and we are stucked with HANA installation.

 

1. We have downloaded the SLES11_SP2_B1AH.x86_64-0.0.20.preload.iso and burned it into a CD for SUSE installation.

2. We have downloaded the “Installation Guide for SUSE Linux Enterprise server with SAP HANA and SAP Business One”

3. We have downloaded SAP B1 for HANA 9.0

4. We have downloaded SAP HANA Platform Edition 1.0

5. We have followed the Installation Guide with the SLES11_SP2 installation CD until page 27where it asked to provide the location path to the SAP Installation Master. This is where we are stuck because we don’t know how to get going.

 

I tried copying both SAP B1 for HANA 9.0 and SAP HANA Platform Edition 1.0 to an external USB drive, and choose "usb://", and type in the folder name, but i keep getting the following error message

 

Error

Cannot find Installation Master at given location

 

 

B1_for_SAP_HANA_Admin_Guide.pdf does not have a troubleshooting guide for this error. It only says that the Pre-requisite is to install B1 HANA Platform Edition.

 

Can anyone gives me some idean how to proceed with HANA installation?

 

Many Thanks,

Taw-Fey, Tan

Re: SAP HANA 1.0 installation error

$
0
0

Hi Atul,

 

I have checked the note and nothing seems to be wrong with the hostname. Do you think, I have to change that?

Also, the folders log, data, sapmnt are created.

 

Thanks,

Balajii

Re: B1 HANA 9.0 installation error

$
0
0

Hi,

 

It can be found inside

HANA_IM_LINUX__X86_64

 

BR

Atul

Re: SAP HANA & SAP Portal ??

$
0
0

SAP HANA is a database.

But it also contains an Application Server.

SAP HANA is not only for BI/BO guys as there are many other things.

Now we can use HANA for Web Development also and for that we use JSON, JavaScript, OData, JQuery and SAPUI5 along with HTML 5

 

Check this blog by Thomas Jung on XS Services that use Application Server:

http://scn.sap.com/community/developer-center/hana/blog/2012/11/29/sap-hana-extended-application-services

 

You can find more information about HANA and Cloud Portal here :

http://scn.sap.com/community/hana-cloud-portal

 

There is no prerequisite to learn HANA and anyone can learn SAP HANA

 

According to me SAP Portal co-relates with SAP HANA through Cloud only.

For more info on HANA you can also check my blog :

http://scn.sap.com/community/developer-center/hana/blog/2013/06/25/want-to-learn-sap-hanawhere-to-startcertification

Re: delete models/package.... in Studio

$
0
0

Fahad,

 

I think the issue here is that you took the select * FROM _SYS_REPO.PACKAGE_CONTENT WHERE PACKAGE_ID = 'a1project';

 

and put a delete instead of select. Just take out the * since in a delete you are not specifying a result set.

so -

DELETE FROM _SYS_REPO.PACKAGE_CONTENT WHERE PACKAGE_ID = '%a1project%';

 

but test with the select * instead of the delete first - to be sure you are getting EXACTLY what you want.

 

Hope that helps. Just keep in mind that fiddling with the repository is not supported - although I believe the behavior is a bug,

 

Karl


Re: how to insert data using a stored procedure in sap hana?????

$
0
0

Hi Sindu

 

Creation  of Store Procedures on the Table to insert values

 

CREATE  SCHEMA  SCH

CREATECOLUMNTABLE"SCH"."MYTABLE"( "EMAIL"VARCHAR (100) NULL,

       "FIRSTNAME"VARCHAR (50) NULL,

       "LASTNAME"VARCHAR (50) NULL,

       "USERNAME"VARCHAR (50) NULL,

       "PASSWORD"VARCHAR (100) NULL,

       "BIRTHDAY"DATENULL,

       "GENDER"VARCHAR (10) NULL,

       "COUNTRY"VARCHAR (50) NULL,

       "STATE"VARCHAR (50) NULL,

       "CITY"VARCHAR (50) NULL);

 

CREATEPROCEDURE SCH.MY_INSERT_PROCS (IN EMAIL VARCHAR(100),

       IN FIRSTNAME VARCHAR(50) ,

       IN LASTNAME VARCHAR(50),

       IN USERNAME VARCHAR(50),

       INPASSWORDVARCHAR(100),

       IN BIRTHDAY DATE,

       IN GENDER VARCHAR(10),

       IN COUNTRY VARCHAR(50),

       IN STATE VARCHAR(50),

       IN CITY VARCHAR(50) ) LANGUAGE SQLSCRIPT AS

BEGININSERT

INTO"SCH"."MYTABLE"VALUES (EMAIL ,

      FIRSTNAME,

      LASTNAME,

      USERNAME,

            PASSWORD,

      BIRTHDAY,

      GENDER,

      COUNTRY,

      STATE,

      CITY)

;

 

END

;

 

Regards

 

Srinivas

Re: Configuring Workspace in SAP HANA Studio

$
0
0

Hi Thomas,

I am not able to find it in the marketplace.  Could you provide a link for me?

Re: Generated DSO can not be deleted

$
0
0

Hi Jungtae,

 

Unfortunately, we could not find any solution.

 

Regards,

Z

Re: Configuring Workspace in SAP HANA Studio

$
0
0

http://service.sap.com/patches

Then Browse our Download Catalog

SAP In Memory (SAP HANA) ->HANA Platform Edition -> SAP HANA PLATFORM EDITION->SAP HANA PLATFORM EDIT. 1.0 -> Comprised Software Component Versions.

 

Within this list you will find the HANA Client and HANA Studio.

Re: Cognos on SAP HANA?

$
0
0

Thanks Tina!

 

Is Cognos going to get SAP certification for HANA or is it as past where usage is at customer's own risk?

 

Rama

Can a person from ABAP background, learn SAP HANA ?

$
0
0

Hi Experts,

 

I am purely from ABAP background and would like to upgrade skill set. Will this be a right decision to learn HANA if I have experience in ABAP.

Please guide.

 

-=Virendra=-

SLT Replication - Datatypes NVARCHAR converted in HANA

$
0
0

Hello Experts,

 

I have lots of questions how to achieve the Datatypes to be converted when we replicate tables from SLT system to HANA.

 

I got to know from one of the thread we can achieved it as a global setting.

 

The default type mapping can be redefined for each configuration. The individual type mapping can be defined in table IUUC_REPL_TYPMAP and will affect all tables of the corresponding configuration. For those data types where no individual type mapping is defined, the default mapping will be used.

 

Mapping.jpg

 

My question are as below

 

  • What are the Pre requites steps to be followed for this replication
  • Is this applicable for already replicated tables as well
  • If it affected to all tables, How are we going to ensure for already replicated tables which holds the data. Will it converts the DATATYPE's which is already having the data ?
  • Should we do this at the time of initial replication ?

 

Your Inputs are highly appreciated.

 

Thanks,

HA


Re: Can a person from ABAP background, learn SAP HANA ?

$
0
0

Hi,

 

Yes, a person from ABAP background can learn HANA. This question is asked many many times before in this forum.

 

You can find your answer here.

ABAP for HANA is more relevant for you to focus, as per my opinion.

 

Regards

Raj

Re: Executin procedure in parallel mode

$
0
0

Hi Santosh,

 

According to your information, the 5,000 records, it takes 4 minutes for all?

 

As my understanding, it is much time and performance is not good for only 5,000 records, general, row store type in other DB product, such as DB2, Oracle, SQL Server. the performance is not good for 5,000 records and takes 4 minutes, if the records is greater than 1,000,000, then I think that the execution result is very very bad.

 

Besides, as you know, the SAP HANA performance is faster than other DB product.

 

So I think that you need to check and consider your solution again.

 

Regards

Jerry

Re: how to insert data using a stored procedure in sap hana?????

$
0
0

i tried it before...it worked ..tanq

Re: how to get connected to sap HANA db

$
0
0

Hi Chowdary,

 

I checked your screenshot, the sapstartsrv service did not start in landscape, so if you need use sap then you need to start this service by manually.

 

please refer to http://scn.sap.com/thread/272552 to check how to start and stop this service.

 

hope this can help you resolve your issue.

 

Regards

Jerry

Re: SLT - problem with replication in HANA

$
0
0

Hi Tomas,

 

In SAP HANA I have three jobs for DD02L, DD02T and DD08L in scheduled state for last three hours. I am not sure what would be the reason. I see following jobs in SLT server 

in SM37 I see job IUUC_MONITOR_001 as active. I also see job DTL_MT_DATA_LOAD_001_001 running frequently. I also see job IUUC_MONITOR_SCHEMA in SM50 on hold for quite sometime.

 

I am not sure what would be the reason. Request you to please let me know how do i make those three jobs in IN PROCESS state in SAP HANA.

 

Regards

Nilesh Awaghan

Viewing all 8968 articles
Browse latest View live


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