Articles on Trending Technologies

Technical articles with clear explanations and examples

Changing Parameters on the screen in SAP

SAP
Arjun Thakur
Arjun Thakur
Updated on 13-Mar-2026 537 Views

You can change parameters displayed on the screen in SAP by customizing the selection text. This allows you to modify how parameter labels appear to users in selection screens. Steps to Change Parameters on Screen You can do this by going to Menu. Navigate to Goto→Text Elements→Selection Text Detailed Process Follow these steps to modify parameter display text − Step 1: Open your ABAP program in the SAP development environment Step 2: From the menu bar, select Goto Step 3: Choose Text Elements from the dropdown menu Step 4: Select Selection ...

Read More

Handling errors in SAP GUI Scripting code

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

You can take reference from the GUI Scripting help section, and it can explain things in detail for error handling in SAP GUI Scripting. SAP GUI provides default property types for handling different message scenarios. If you want to perform the next step, stop, or abort a user step, you can use the following message type properties − ...

Read More

Changing Data Element of a column and showing description in Transaction SE16N

Anjana
Anjana
Updated on 13-Mar-2026 645 Views

When working with transaction SE16N in SAP, you may need to change the data element of a column to display proper descriptions. This process involves updating the Data Dictionary (DDIC) element and ensuring the system recognizes the changes. Methods to Update Data Element Descriptions Method 1: Activate the Change The primary approach is to activate the change after modifying the data element. This ensures the system properly updates the column description in SE16N. Method 2: Force System Recognition An alternative method involves temporarily creating an error to force the system to refresh the element description ...

Read More

Incrementing an integer inside loop in an ABAP program

Fendadis John
Fendadis John
Updated on 13-Mar-2026 967 Views

To increment an integer inside a loop in an ABAP program, you have several methods available. The most common approaches involve using the ADD statement or direct assignment operations. Methods for Incrementing Integers Using ADD Statement The most straightforward way to increment an integer is using the ADD statement − DATA: ls_id TYPE i VALUE 0. DO 5 TIMES. ADD 1 TO ls_id. WRITE: / 'Current value:', ls_id. ENDDO. Using Assignment Operation You can also increment using direct assignment. Note that proper spacing is required between the ...

Read More

I am getting GUID Key columns truncated while using proxy ERP tables to query SAP tables

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

When working with proxy ERP tables to query SAP tables, you may encounter an issue where GUID key columns get truncated. This is a common limitation that occurs due to SAP's default restrictions. The Problem There is a restriction in SAP where the default functional module only displays 16 characters for GUID key columns. This truncation can cause data integrity issues and prevent proper record identification when querying through proxy tables. Solution To overcome this limitation, you need to install a Z ...

Read More

Handling Exception and use of CX_ROOT directly and subclasses

Sai Nath
Sai Nath
Updated on 13-Mar-2026 582 Views

It is not advisable to use CX_ROOT directly and you would require using one of its direct subclasses. The CX_ROOT is the root class for all exception classes in SAP ABAP, but working with its subclasses provides better control and handling mechanisms. Also, the propagation depends upon the exception subclass hierarchy. Exception Subclass Types There are three main types of exception subclasses, each with different propagation and handling behaviors − Subclasses ...

Read More

How to check all objects belong to list of TR's in SAP system

SAP
varma
varma
Updated on 13-Mar-2026 7K+ Views

SAP provides standard tables that you can use to get details about transport objects in the Change and Transport System (CTS). These tables contain comprehensive information about transport requests and their associated objects. Standard SAP Transport Tables The following tables are essential for tracking transport objects − E070 − Change & Transport System: Header of Requests/Tasks E070T − Change & Transport System: Short Texts for Requests/Tasks E071 − Change & Transport System: Object Entries of Requests/Tasks (provides details of transport objects) E070A − Change ...

Read More

Using Breakpoint in SAP system

SAP
Jai Janardhan
Jai Janardhan
Updated on 13-Mar-2026 374 Views

In SAP systems, breakpoints are used to pause program execution at specific points during debugging. There are two main ways to implement breakpoints in your ABAP code. Syntax For user-specific breakpoints, use the following syntax − BREAK username. If you want to implement it for all users, you can use − BREAK-POINT. User-Specific Breakpoint The BREAK username statement creates a breakpoint that only activates when the ...

Read More

Checking active process in SAP system and which code is running

George John
George John
Updated on 13-Mar-2026 4K+ Views

There are a couple of transactions − SM66 and SM50 that can be used to check active processes in the SAP system and monitor which code is currently running. Transaction SM66 - Global Process Overview The transaction SM66 is used to see all the active processes across the entire SAP system landscape. This provides a comprehensive view of all work processes running on all application servers in your SAP environment. To monitor a specific process using SM66 − Select the particular process you want to monitor by clicking on the process entry ...

Read More

Concatenate 2 strings in ABAP without using CONCATENATE function

Moumita
Moumita
Updated on 13-Mar-2026 3K+ Views

In ABAP you can use && sign to concatenate variables as below − Variable Declaration and Assignment First, declare the variables and assign values to them − DATA: hello TYPE string, world TYPE string, helloworld TYPE string. hello = 'hello'. world = 'world'. helloworld = hello && world. The output of the above code is − helloworld Direct String Concatenation If you want to concatenate strings directly without using variables, you can use − ...

Read More
Showing 24231–24240 of 61,298 articles
Advertisements