Articles on Trending Technologies

Technical articles with clear explanations and examples

Creating User roles and profiles in SAP system

Manikanth Mani
Manikanth Mani
Updated on 13-Mar-2026 413 Views

This can be done using Legacy Systems Migration Workbench (LSMW) transaction. This workbench works like a sort of macro recorder and allows you to record the steps in a transaction and you can replay that record multiple times as per the requirement. This also allows you to replace the values you used in your recorded transaction with new values. A more complex option would be to write ABAP code and this is more flexible to add different privileges to different roles. Methods for Creating User Roles and Profiles Method 1: Using LSMW (Legacy Systems Migration Workbench) ...

Read More

Limit number of rows in Webi report in SAP BusinessObjects

Ayyan
Ayyan
Updated on 13-Mar-2026 2K+ Views

When working with SAP BusinessObjects Web Intelligence (WebI) reports, you may need to limit the number of rows returned to improve performance and manage data volume effectively. There are several methods to control row limits depending on your data source and requirements. Universe-Level Row Limits If you are using a Universe as the data source, you can define row limits at the Universe level using the Universe Design Tool (UDT). Navigate to Universe Parameters → Controls to set the maximum size of the result set. This approach provides centralized ...

Read More

Aggregating rows in SAP ABAP with the same name

Alankritha Ammu
Alankritha Ammu
Updated on 13-Mar-2026 724 Views

You can use the COLLECT keyword or some aggregate functions to achieve the result of aggregating rows with the same name in SAP ABAP. You should define appropriate data types to match your specific scenario. The COLLECT statement is particularly useful for accumulating numeric values while grouping rows by key fields. It automatically sums up non-key fields for records that have identical key field values. Example Here's a complete example showing how to aggregate rows using the COLLECT statement − TYPES: BEGIN OF t_my_type, key_a TYPE ...

Read More

Finding and modifying Service File for SAP system in root directory

Jai Janardhan
Jai Janardhan
Updated on 13-Mar-2026 797 Views

You can find the SAP system service file in %SystemRoot%\system32\drivers\etc where %SystemRoot% is generally your C:\ drive. This file is commonly known as the hosts file or services file, which contains network service definitions and host mappings for SAP system connections. Modifying the Service File To modify this file, you can right-click and open this file in Edit mode using Notepad. To perform this operation, you must have Administrator rights in the system, as this file is protected by Windows security settings. ...

Read More

Using “SPELL AMOUNT” function to convert amounts in ABAP

George John
George John
Updated on 13-Mar-2026 922 Views

You can use the standard function module SPELL_AMOUNT in ABAP to convert numeric amounts into their corresponding word representations. This is particularly useful for financial documents, checks, and reports where amounts need to be displayed in written form. To access and explore this function module, use Transaction code SE37 (Function Builder) − Click on the Search icon and select Function module SPELL_AMOUNT − Key Parameters The SPELL_AMOUNT function module accepts several important parameters − ...

Read More

Explanation about SAP ABAP Stack and JAVA Stack and role of Java Stack during ECC upgrade

Ayyan
Ayyan
Updated on 13-Mar-2026 2K+ Views

Note that all SAP ERP modules run on SAP ABAP stack. SAP NetWeaver Application Server (ABAP Stack) is part of the SAP NetWeaver portfolio and represents the ABAP-based technical basis for many SAP products. It delivers technical frameworks, tools, repositories, and much more. When to Install Java Stack If you are planning to use SAP PI module then you should install Java Stack. Whenever you need something like Adobe Interactive Forms or NetWeaver Portal functionality that requires the Java Stack, it becomes necessary. You can go for an upgrade ...

Read More

Using SAP BAPI API’s to extract information from client system

Arushi
Arushi
Updated on 13-Mar-2026 796 Views

BAPI is an abbreviation for Business Application Programming Interface. BAPI's are proprietary interfaces of SAP. These provide standard access to SAP solution with all the semantic checks already present. Using BAPI interfaces, we can perform both synchronous and asynchronous processing of data. What are BAPIs? BAPIs are standardized programming interfaces that allow external applications to access SAP business objects and processes. They act as a bridge between SAP systems and external applications, enabling secure and controlled data exchange. Key Features of BAPIs BAPIs offer several important characteristics − Standardized Interface: ...

Read More

How to load external website into an <iframe> using jQuery?

Amit D
Amit D
Updated on 13-Mar-2026 39 Views

To load an external website into an using jQuery, use the attr() method to dynamically set the src attribute of the iframe element. This approach allows you to change the iframe content programmatically after the page loads. Basic Implementation The attr() method in jQuery allows you to get or set any HTML attribute. For iframes, setting the src attribute will load the specified URL into the frame. Example You can try to run the following code to learn how to load an external website into an iframe − ...

Read More

How to change the background image using jQuery?

Amit D
Amit D
Updated on 13-Mar-2026 3K+ Views

To change the background image using jQuery, use the jQuery css() method. The background-image CSS property is used to change background image. Syntax The basic syntax to change background image using jQuery is − $(selector).css("background-image", "url('path/to/image.jpg')"); Example You can try to run the following code to learn how to change background image using jQuery − body { height: ...

Read More

How to disable a particular jQuery event on a page?

Amit D
Amit D
Updated on 13-Mar-2026 641 Views

To disable a particular jQuery event, use the jQuery off() method. The off() method removes event handlers that were attached with the on() method. This is particularly useful when you need to dynamically control event behavior based on user interactions or application state. Syntax The basic syntax for the off() method is − $(selector).off(event, selector, function) Where: event − Specifies the event type to remove (e.g., "click", "mouseover") selector − Optional. Specifies which event handler to remove for delegated events function ...

Read More
Showing 1–10 of 61,259 articles
« Prev 1 2 3 4 5 6126 Next »
Advertisements