Found 594 Articles for SAP Basis

Password blacklist table in SAP HANA database

SAP ABAP Expert
Updated on 30-Jul-2019 22:30:21

382 Views

The password blacklist in SAP HANA is implemented with the table _SYS_PASSWORD_BLACKLIST in the schema _SYS_SECURITY. This table is empty when you create a new instance.You can enter words in the password blacklist as part of password policy configuration in the Security editor of the SAP HANA studio.

Performing different SAP logon check while connecting to HANA

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

157 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

Using SAP HANA Cockpit for HANA Administration

SAP ABAP Expert
Updated on 21-Feb-2020 07:42:24

226 Views

SAP HANA Cockpit with Fiori-based Launchpad shows the content in the form of tiles arranged in groups. Using these tiles, you can access individual applications and can also access app-specific data for immediate review.You can also perform a drill on these tiles to see the detailed information about specific applications. Note that full administration of SAP HANA is not possible using SAP HANA cockpit and you have to use SAP HANA studio for those.

Setting detailed error notification about failed login in SAP HANA

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

296 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

Setting password expire notification in SAP HANA

SAP ABAP Expert
Updated on 21-Feb-2020 07:48:45

687 Views

Parameter    password_expire_warning_timeDefault Value 14 (days)Parameter definitionNotification is transmitted via the database client (ODBC or JDBC) and it is up to the client application to provide this information to the user.If you enter the value 0, the user does not receive notification that his or her password is due to expire.The system also monitors when user passwords are due to expire and issues a medium priority alert. This may be useful for technical database users since password expiration results in the user being locked, which may affect application availability. It is recommended that you disable the password lifetime check of technical ... Read More

Checking existing password policy of SAP HANA system

SAP ABAP Expert
Updated on 21-Feb-2020 07:49:33

547 Views

You can check this information under New User in SAP HANA. The below snapshot shows the New User dialog in SAP HANA Studio and the password rule that is displayed when hovering over the password field.

Create User SQL in SAP HANA database

SAP ABAP Expert
Updated on 21-Feb-2020 07:52:45

2K+ Views

You can achieve this by running the below SQL query −>CREATE USER TEST password “Welcome1$$”  VALID FROM ‘2017-12-05 11:00:00’ UNTIL ‘2018-12-08 12:00:00’; CREATE USER DUMMY password “Welcome1$$”  VALID FROM NOW UNTIL FOREVER;Note that password passed in this SQL should meet password policy of SAP HANA system otherwise user creation will be failed.

Defining validity of initial password in SAP HANA

SAP ABAP Expert
Updated on 21-Feb-2020 08:02:30

160 Views

This can be defined under Password policy → Miscellaneous

Defining user lock settings in SAP HANA

SAP ABAP Expert
Updated on 22-Jun-2020 08:56:20

281 Views

Yes, new for SPS7 is the Lock indefinitely radio button −

Checking create time for all users in SAP HANA

SAP ABAP Expert
Updated on 27-Feb-2020 10:33:29

638 Views

This can be found using following SQL command −SELECT * from USERS;

Advertisements