John SAP has Published 117 Articles

Use of Role tab in SAP HANA system using HANA Studio

John SAP

John SAP

Updated on 24-Feb-2020 08:07:00

177 Views

Roles tab is used to define the existing roles in HANA system and you can also create a new role in HANA system to add to user’s profile as per requirement.To add privilege to a new role, you have to click on “+” sign.

Opening SQL editor using SAP HANA Studio

John SAP

John SAP

Updated on 21-Feb-2020 10:45:11

3K+ Views

When you add a new system under HANA Studio, below screen comes where different folders are available to manage HANA system. To open SQL editor, you have to select HANA system and click on SQL button at the top.Once you click on SQL button to open SQL console for selected ... Read More

Changing default schema in SQL console in SAP HANA

John SAP

John SAP

Updated on 21-Feb-2020 10:44:34

1K+ Views

To change the default schema, you have to select schema name from Catalog folder and click on SQL tab at the top.You can also right click on Schema in which you want to create Relational objects and select Open SQL Console. In below pic, you can see the Schema AA_HANA11 ... Read More

Granting _SYS_REPO with SELECT to user schema in SAP HANA

John SAP

John SAP

Updated on 21-Feb-2020 10:43:21

4K+ Views

In SAP HANA system _SYS_REPO user is required to create run time objects that are saved in HANA database under _SYS_BIC schema. When you activate modeling views in HANA, SYS REPO provides the read access to users on these modeling views. That is why it is required to grant _SYS_REPO ... Read More

Refreshing a schema after creating a table in SAP HANA database

John SAP

John SAP

Updated on 21-Feb-2020 10:38:19

320 Views

Let us say you have executed the below create table SQL statement in HANA database −Create Table Demo_HANA ( ID INTEGER, NAME VARCHAR(10), PRIMARY KEY (ID) );To check the table in HANA database, navigate to AA_HANA11 schema and right click and refresh (F5). Navigate to “Table” folder and you can ... Read More

Inserting data in a table in SAP HANA

John SAP

John SAP

Updated on 21-Feb-2020 10:37:26

1K+ Views

To insert the data, you need to run the Insert statement in SQL editor. “Demo_HANA” is table name.Insert into Demo_HANA Values (1, 'John'); Insert into Demo_HANA Values (2, 'Anna'); Insert into Demo_HANA Values (3, 'Jason'); Insert into Demo_HANA Values (4, 'Nick');In SQL editor, add INSERT statements and execute (F8) as ... Read More

Changing storage type of table in SAP HANA database

John SAP

John SAP

Updated on 21-Feb-2020 10:35:28

267 Views

You can also convert a Column store table to a Row store table or a Row store table to Column store table using ALTER table command.Alter table "AA_HANA11"."DEMO_HANA" column;

Converting a Column store table to row store in SAP HANA

John SAP

John SAP

Updated on 21-Feb-2020 10:34:54

506 Views

To convert a Column store table to row store, you can use the following SQL statement −Alter table Table_Name row;

Adding a Page break/new page in SAP Script

John SAP

John SAP

Updated on 17-Feb-2020 12:47:45

931 Views

To add a new page, you can use Control command NEW-PAGE in Transaction SE71.SyntaxNEW-PAGE [page_options] [ spool_options]EffectThis statement creates a new page in the current list and writes the subsequent list output into a spool list.In T-Code: SE38 Print Program, you can use Function Module CONTROL_FORM to call NEW-PAGE command ... Read More

Calling an ABAP Function Module using Python script to put data in SAP HANA

John SAP

John SAP

Updated on 17-Feb-2020 12:44:48

394 Views

You can refer this SAP blog how to use SAP NetWeaver library with Python.SAP Link

Previous 1 ... 5 6 7 8 9 ... 12 Next
Advertisements