SAP HANA Articles

Page 2 of 58

Finding where-used list of SAP standard programs

radhakrishna
radhakrishna
Updated on 13-Mar-2026 1K+ Views

You would need to run SAPRSEUB to enable the where-used functionality for standard SAP programs. This report generates comprehensive indices that help you track program dependencies and references throughout your SAP system. Please note that this program runs for a considerable amount of time and requires significant disk space. SAPRSEUB is a standard Executable ABAP Report available within your SAP system that creates where-used lists for all programs in the system. Related SAP Reports Several reports work together to maintain program references and object lists − SAPRSEUB − Generate Where-Used List (For ...

Read More

Benefits of Transaction SE83- SAP reuse library

mkotla
mkotla
Updated on 13-Mar-2026 616 Views

The Reuse Library is basically a repository for various functions and classes that can be used across SAP development projects. One of the main benefits is that it contains a number of source code examples for these functions. These examples are quite useful as they can be used as base code, so you don't have to start development from scratch. The library serves as a centralized location where developers can find pre-built, tested components that follow SAP best practices. While it may not be primarily used for documentation ...

Read More

Determining values of parameters of given type on a given selection screen in SAP

varma
varma
Updated on 13-Mar-2026 1K+ Views

The function module RS_SELSCREEN_INFO will provide you with the list of parameters and selection options once the report name is input. You can see full details about this FM by entering the name RS_SELSCREEN_INFO into the relevant SAP T-code like SE37 or SE80. Using RS_SELSCREEN_INFO Function Module You can call this FM RS_SELSCREEN_INFO as below − CALL FUNCTION 'RS_SELSCREEN_INFO' EXPORTING report = 'REPORT_NAME' ...

Read More

Getting age of tracefiles in SAP HANA database

usharani
usharani
Updated on 13-Mar-2026 378 Views

In SAP HANA database, you have diagnosis files that include log and trace files, along with a mixture of other diagnosis, error, and information files. These files can be checked for diagnosis to find errors in SAP HANA database. In HANA database, trace files are stored separately per host, so to get access to the trace files of a multi-node system you have to check for each host individually. Finding Trace File Location To find the location of trace files in SAP HANA, ...

Read More

Getting month name instead of numeric month number in report in SAP

Sreemaha
Sreemaha
Updated on 13-Mar-2026 4K+ Views

There are various methods to convert numeric month numbers to month names in SAP reports. Each approach has its own advantages depending on your specific requirements. Method 1: Using Function Module MONTH_NAME_GET Use the Function module MONTH_NAME_GET − This function module is used to return all the month names in the respective language. This is the most recommended approach as it supports internationalization. Example Here's how to implement this function module − DATA: lv_month TYPE i VALUE 3, ...

Read More

Use of String.compare for a varchar field in SAP

usharani
usharani
Updated on 13-Mar-2026 147 Views

The article you've provided appears to be mismatched with the topic. The existing content discusses SqlFunctions.DateDiff for date operations in Entity Framework, but the topic is about String.compare for varchar fields in SAP. Using String.compare for Varchar Fields in SAP In SAP development, comparing varchar fields requires careful handling to ensure accurate results. The String.compare method provides a reliable way to perform string comparisons in SAP systems, particularly when working with database varchar columns. Basic String Comparison Syntax The basic syntax for string comparison in SAP ABAP is as follows − ...

Read More

Generate excel from a report in SAP system

Giri Raju
Giri Raju
Updated on 13-Mar-2026 394 Views

When working with SAP reports, generating Excel files can be challenging, especially when the report runs in the background. The main issue is that background processes cannot determine where to save files locally on user machines. Understanding the Challenge If your report is running in the background, the system has no way of knowing where the file should be saved locally. This is a common limitation when dealing with background job processing in SAP systems. Recommended Approach Here's a practical solution assuming you have the necessary permissions and requirements − Step 1: Generate Excel File ...

Read More

Query MDG tables via SAP Studio

Sreemaha
Sreemaha
Updated on 13-Mar-2026 440 Views

An answer to your question is a big "YES". You can execute queries against the MDG (Master Data Governance) tables either if you are using an ABAP program or also you can execute these queries from native SQL environment. Querying MDG Tables with ABAP You can use standard ABAP SELECT statements to query MDG tables just like any other SAP table. The following example demonstrates how to retrieve data from the KNA1 table (Customer Master) − DATA: lt_TBL LIKE TABLE OF KNA1. SELECT * ...

Read More

Best option for locking bulk user accounts in SAP

radhakrishna
radhakrishna
Updated on 13-Mar-2026 4K+ Views

As you need to do mass maintenance involving user locking and unlocking, you can opt for using SU10 transaction. This is the most efficient method for bulk user account management in SAP systems. You can also access this from SAP Menu by navigating to this path − Tools → Administration → User Maintenance → User mass maintenance In SAP system, you have different transactions under User Maintenance that you can use for different purposes. ...

Read More

Fetch unique records from table in SAP ABAP

mkotla
mkotla
Updated on 13-Mar-2026 1K+ Views

When working with ABAP and SQL, you typically use OpenSQL for your SQL activities. To fetch unique records from a table, you can eliminate duplicate rows using the DISTINCT operator. Using DISTINCT Operator The DISTINCT keyword ensures that only unique records are returned from your query. This is particularly useful when you have duplicate entries in your table and need to retrieve only distinct values − SELECT DISTINCT field1, field2 FROM table_name WHERE condition. Example Here's a practical example ...

Read More
Showing 11–20 of 573 articles
« Prev 1 2 3 4 5 58 Next »
Advertisements