Enabling Audit Policy in SAP HANA

SAP ABAP Expert
Updated on 22-Jun-2020 08:55:37

326 Views

To enable Audit policy, navigate to Security tab → AuditingUnder Auditing, you need to enable Auditing policy as shown below −

Configuring Blacklist in Password Policy in SAP HANA

SAP ABAP Expert
Updated on 22-Jun-2020 08:55:12

373 Views

This can be done under a Blocked password option under the password management policy. Below shows SAP HANA cockpit snapshot −

Read Inputs as Strings in C#

Chandu yadav
Updated on 22-Jun-2020 08:55:10

9K+ Views

To read inputs as strings in C#, use the Console.ReadLine() method.str = Console.ReadLine();The above will read input as string. You don’t need to use the Convert method here since the input takes string by default.Now display the string entered by user −Example Live Demousing System; using System.Collections.Generic; class Demo {    static void Main() {       string myStr;       // use ReadLine() to read the entered line       myStr = Console.ReadLine();       // display the line       Console.WriteLine("Result = {0}", myStr);    } }OutputResult =The following is the output. Let’s say the user entered “Amit” as the input −Result = amit

Remove Item from a Chash List Using an Index

Samual Sam
Updated on 22-Jun-2020 08:54:42

13K+ Views

To remove an item from a list in C# using index, use the RemoveAt() method.Firstly, set the list −List list1 = new List() {    "Hanks",    "Lawrence",    "Beckham",    "Cooper", };Now remove the element at 2nd position i.e. index 1list1.RemoveAt(1);Let us see the complete example −Example Live Demousing System; using System.Collections.Generic; using System.Linq; class Program {    static void Main() {       List list1 = new List() {          "Hanks",          "Lawrence",          "Beckham",          "Cooper",       };       ... Read More

Configuring Password Policy and Blacklist in SAP HANA Studio

SAP ABAP Expert
Updated on 22-Jun-2020 08:54:17

540 Views

Following privileges are required −You need to have the system privilege INIFILE ADMIN.You need to have the object privileges SELECT, INSERT, and DELETE for the _SYS_PASSWORD_BLACKLIST table (_SYS_SECURITY).

Print Duplicate Characters in a String Using Chash

George John
Updated on 22-Jun-2020 08:53:54

5K+ Views

Set maximum value for char.static int maxCHARS = 256;Now display the duplicate characters in the string.String s = "Welcometomywebsite!"; int []cal = new int[maxCHARS]; calculate(s, cal); for (int i = 0; i < maxCHARS; i++) if(cal[i] > 1) {    Console.WriteLine("Character "+(char)i);    Console.WriteLine("Occurrence = " + cal[i] + " times"); }Above, we have calculated the frequency of characters. The same is shown below in the complete example −Exampleusing System; class Demo {    static int maxCHARS = 256;    static void calculate(String s, int[] cal) {       for (int i = 0; i < ... Read More

Create View in SQL for SAP HANA Database

SAP ABAP Expert
Updated on 22-Jun-2020 08:52:55

4K+ Views

>Create View View_name as Select Col1,Col2 From Table_name;In the above SQL statement, you are creating a view that contains Col1 and Col2 from the table.Table Name − Emp_InfoExampleIdEmplNameEmpluserEmplpasswordJoining_Date1Employee 1Emp1Emp1Pwd9/11/20162 Employee 2Emp2 Emp2Pwd   16/08/20153Employee 3Emp3Emp3Pwd15/09/20164Employee 4Emp4   Emp4Pwd  3/07/20145Employee 5Emp5Emp5Pwd10/09/20126Employee 6Emp6  Emp6Pwd   1/10/2013                                                                                               To create a view, which contains only 3 columns you have to write->Create View View_EmpInfo As Select Id, EmplName,Joining_Date  From Emp_Info;This view can be used by users to get Id, EmplName, and Joining_date. 

Benefits of Using SAP HANA Database Views

SAP ABAP Expert
Updated on 22-Jun-2020 08:52:05

437 Views

Following benefits can be achieved using database views −To provide security −Using a view, you can select specific columns and assign access to the users. Users can only see the columns for which permissions are set on the view and not the underlying tables with full data.To hide Complexity −Consider a scenario where you need to join multiple tables using complex joins or calculations. All the coding can be put in database view and access can be provided.

Perform Different SAP Logon Checks While Connecting to HANA

SAP ABAP Expert
Updated on 22-Jun-2020 08:50:36

254 Views

When a user logins to the HANA system, the following steps are performed −Step 1 The system authenticates the user using the configured mechanism.Example − When User name/password authentication is being enforced, the provided user name and password are verified.Step 2The system verifies that the user's account is within its validity period.In the system view USERS, the columns VALID_FROM and VALID_UNTIL must contain effective values for the user in question.However, this is an optional parameter that a user administrator can set during user provisioning.Step 3The next step is system verifies that the user's account is active.This can be performed by checking ... Read More

Detailed Error Notification for Failed Login in SAP HANA

SAP ABAP Expert
Updated on 22-Jun-2020 08:48:42

461 Views

You can use parameter detailed_error_on_connect: Indicates the detail level of error information returned when a logon attempt fails.Parameter      detailed_error_on_connectDefault Value falseAdditional Information                                                                        When you set this parameter to false, only the information authentication failed is returned.When this parameter is set to true, the specific reason for failed logon is returned −Invalid user or passwordUser is lockedConnect try is outside validity periodUser is deactivated

Advertisements