John SAP

John SAP

88 Articles Published

Articles by John SAP

Page 5 of 9

Security folder in SAP HANA Studio

John SAP
John SAP
Updated on 24-Feb-2020 622 Views

Last folder in SAP HANA Studio system navigation is Security and it has 3 subfolders inside it that defines the system security policy and user management activities −SecurityUserRolesIn Security tab, you can also define Password Policy of HANA system.In Users tab, you can find list of all the existing users in SAP HANA system. You can also create a new User or a restricted user in SAP HANA.In Roles tab, you can see all the existing roles in SAP HANA system.

Read More

Searching a user in SAP HANA system using HANA Studio

John SAP
John SAP
Updated on 24-Feb-2020 621 Views

Users tab defines the list of existing users in HANA system and you can also create a new user, new restricted user or find a user in HANA system.In above pic, you can use Find User to filter a particular user from existing list.

Read More

Use of Role tab in SAP HANA system using HANA Studio

John SAP
John SAP
Updated on 24-Feb-2020 333 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.

Read More

Changing default schema in SQL console in SAP HANA

John SAP
John SAP
Updated on 21-Feb-2020 2K+ 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 and right click → Open SQL Console.At the top of SQL console, you can see Schema name where the objects will be created using this console.

Read More

Granting _SYS_REPO with SELECT to user schema in SAP HANA

John SAP
John SAP
Updated on 21-Feb-2020 6K+ 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 with SELECT with GRANT privilege to user schemas.GRANT SELECT ON SCHEMA "SCHEMA_NAME" TO _SYS_REPO WITH GRANT OPTIONThis is required when you use objects of a table/view of a schema to build HANA Modeling Views. You need to grant _SYS_REPO the SELECT WITH GRANT privilege on this schema.

Read More

Refreshing a schema after creating a table in SAP HANA database

John SAP
John SAP
Updated on 21-Feb-2020 595 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 see new table with name Demo_HANA is created.

Read More

Inserting data in a table in SAP HANA

John SAP
John SAP
Updated on 21-Feb-2020 2K+ 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 below −

Read More

Changing storage type of table in SAP HANA database

John SAP
John SAP
Updated on 21-Feb-2020 601 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;

Read More

Adding a Page break/new page in SAP Script

John SAP
John SAP
Updated on 17-Feb-2020 2K+ 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 as below −CALL FUNCTION 'CONTROL_FORM' EXPORTING COMMAND = 'NEW-PAGE' EXCEPTIONS UNOPENED = 1 UNSTARTED = 2 OTHERS = 3.

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 784 Views

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

Read More
Showing 41–50 of 88 articles
« Prev 1 3 4 5 6 7 9 Next »
Advertisements