SAP ABAP Expert

SAP ABAP Expert

115 Articles Published

Articles by SAP ABAP Expert

Page 3 of 12

Handling String localization hardcoding issue in ERP like SAP, Dynamic, etc.

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2026 322 Views

String localization hardcoding is a common challenge in ERP systems like SAP, Microsoft Dynamics, and Oracle ERP. The key to handling this issue is to maintain consistent internal values while adapting the display text for different languages and regions. Solution Approach This can be handled by keeping the value same and just changing the meaning as below − 'Y'(Yes) or 'N'(No) Should be like this for German − 'Y'(Ja) or 'N'(Nein) Implementation Example In practice, you would maintain a localization table or resource file that maps the same key ...

Read More

Managing password policy in SAP HANA system

SAP ABAP Expert
SAP ABAP Expert
Updated on 22-Jun-2020 566 Views

The last folder in SAP HANA Studio system navigation is Security and it has 3 subfolders inside it that define the system security policy and user management activities −SecurityUserRolesSecurity tab is used to manage Password Policy in HANA system −

Read More

Defining user lock settings in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 22-Jun-2020 570 Views

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

Read More

Configuring Password policy and Blacklist in SAP HANA Studio

SAP ABAP Expert
SAP ABAP Expert
Updated on 22-Jun-2020 639 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).

Read More

Create View SQL in SAP HANA database

SAP ABAP Expert
SAP ABAP Expert
Updated on 22-Jun-2020 5K+ 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. 

Read More

Benefits of using SAP HANA database views

SAP ABAP Expert
SAP ABAP Expert
Updated on 22-Jun-2020 486 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.

Read More

Performing different SAP logon check while connecting to HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 22-Jun-2020 336 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

Setting detailed error notification about failed login in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 22-Jun-2020 514 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

Read More

Finding a database view in SAP HANA database

SAP ABAP Expert
SAP ABAP Expert
Updated on 22-Jun-2020 938 Views

This is created under the Current schema in your SQL editor. You can check schema name at the top −In the above snapshot, you can see the current schema name where the view is created. You need to find this schema under the Catalog folder in HANA Studio.

Read More

Example of creating a database view in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 22-Jun-2020 1K+ Views

Let us see the below table ARTICLE_LOOKUP, we will create a database view with first 4 columns and will hide Family_NAME and FAMILY_CODE.SQL statement- To create a view on the above table, write down the below SQL statementcreate view view_Articlelookup as select ARTICLE_ID,ARTICLE_LABEL,CATEGORY,SALE_PRICE from "AA_HANA11"."ARTICLE_LOOKUP";This will create a database view in the mentioned schema and you can check it in Views folder (schema name here-AA_HANA11). You can see a view with the name- view_Articlelookup and only 4 data columns are there.

Read More
Showing 21–30 of 115 articles
« Prev 1 2 3 4 5 12 Next »
Advertisements