Articles on Trending Technologies

Technical articles with clear explanations and examples

Inserting new line to the output using WS_Download in ABAP

Nitya Raut
Nitya Raut
Updated on 13-Mar-2026 1K+ Views

First of all, don't use WS_DOWNLOAD as this function module is obsolete and deprecated in modern ABAP development. Using cl_abap_char_utilities for Line Breaks You can use a character type field and set it to cl_abap_char_utilities=>cr_lf. This utility class provides constants for various character operations, including carriage return and line feed combinations. Now use this field at places where you want to insert the new line. Example Here's how to implement line breaks when downloading data using modern ABAP approaches − ...

Read More

Deleting subsequent heading from report in SAP system

Jennifer Nicholas
Jennifer Nicholas
Updated on 13-Mar-2026 158 Views

You need to add NO STANDARD PAGE HEADING to suppress the default heading that SAP automatically generates for reports. This statement must be included in the report declaration section as follows − Syntax REPORT report_name MESSAGE-ID message_class NO STANDARD PAGE HEADING. Example Here's a complete example showing how to implement a report without the standard page heading − REPORT z_custom_report MESSAGE-ID z_custom_messages NO STANDARD PAGE HEADING. DATA: lv_text TYPE string VALUE 'Custom Report Output'. START-OF-SELECTION. WRITE: / 'This report has no standard SAP heading', ...

Read More

Using combination of "AND" and "OR" in SELECT in ABAP

Vrundesha Joshi
Vrundesha Joshi
Updated on 13-Mar-2026 11K+ Views

You can combine AND and OR operators in ABAP SELECT statements to create complex filtering conditions. This allows you to specify multiple criteria that must be met simultaneously while also providing alternative options for certain fields. Using AND with OR in Parentheses You can use the following query to combine conditions − SELECT * FROM my_table WHERE condition_1 AND condition_2 AND ( id EQ '2' OR id EQ '3' ). Note: There should be space after and before the bracket for proper syntax formatting. In this example, both condition_1 and condition_2 must be ...

Read More

Getting class of given method using T-code SE80 in SAP

Rishi Rathor
Rishi Rathor
Updated on 13-Mar-2026 3K+ Views

To find the class of a given method in SAP, you need to use transaction code SE80 and navigate through the Repository Information System. This allows you to search for methods and identify which class they belong to. Steps to Find Class of a Method Follow these steps to locate the class containing a specific method − Step 1: Call transaction SE80 in the SAP system. Step 2: Navigate to the Repository Info System from the main ...

Read More

Adapter properties dropdown not updated with list even after installation (SAP 7.2 adapter)

mkotla
mkotla
Updated on 13-Mar-2026 192 Views

When working with SAP 7.2 adapters in BizTalk Server, you may encounter an issue where the adapter properties dropdown remains empty even after successful installation. This is a common problem that occurs when specific assembly files are not properly deployed to the BizTalk group. Root Cause The issue typically occurs because the BizTalkPropertySchema assembly, which is responsible for Microsoft adapter properties, is not deployed correctly during the installation process. This assembly contains the property schema definitions that populate the dropdown options in the adapter configuration. Solution Steps To resolve this issue, follow these manual deployment steps ...

Read More

Identify the qualification and Employee relationship table in SAP system

radhakrishna
radhakrishna
Updated on 13-Mar-2026 490 Views

In SAP systems, qualification and employee relationship data is distributed across multiple tables rather than stored in a single location. Understanding these table relationships is crucial for HR data management and reporting. Primary Tables for Qualifications Qualifications in SAP are stored as object type 'Q' in the Personnel Development (PD) tables. The main tables involved are − HRP1000 − Stores qualification master data with object type 'Q' HRP1001 − Captures the relationship between qualifications and employees HRPAD31 − Contains qualification ratings and assessment data ...

Read More

Getting day of the year from DD/MM/YYYY using function in SAP system

Nancy Den
Nancy Den
Updated on 13-Mar-2026 748 Views

In SAP systems, you can calculate the day of the year from a DD/MM/YYYY date using a simple function. The day of the year represents which day number it is within that specific year (1-366). You can achieve this with the following line of code − DATA(l_day) = m_date - CONV d(m_date(4) && '0101' ) + 1. Where m_date is the input date that needs to be of type d. Note that the format of type d is YYYYMMDD. This code works by: Extracting the year from the input ...

Read More

Missing SAP Java Connector libraries JCo- librfc32.dll, com.sap.utils and com.sap.mw

Abhinaya
Abhinaya
Updated on 13-Mar-2026 318 Views

Please note that all these library files − librfc32.dll, com.sap.utils and com.sap.mw come under JCo 2.1. With release of JCo 3.0, its classes were also relocated from packages com.sap.mw.jco.* to com.sap.conn.jco.* For running with SAP JCo 3.0, you need these files at runtime − sapjco3.jar and sapjco3.dll (on Windows). You can follow below procedure for installation of JCo files: Installing JCo on Windows Platform In Windows OS, you have to copy sapjco3.jar file into ITDI_HOME/jars/3rdparty/others. Copy the ...

Read More

Calling external programs using SAP connector

Daniol Thomas
Daniol Thomas
Updated on 13-Mar-2026 364 Views

Yes, it is possible to address or call an external program using SAP connector SDK. From ABAP, you can reference external programs by SAP's RFC (Remote Function Call) protocol. RFC protocol enables communication between SAP systems and external applications, allowing seamless integration and data exchange across different platforms and programming languages. There are various SAP connectors available for different programming languages. Few of them are − JCo is the SAP Java connector NCo is the .NET SAP connector NW RFC SDK is the SAP ...

Read More

IMPORTING, EXPORTING and CHANGING Keywords in ABAP

Krantik Chavan
Krantik Chavan
Updated on 13-Mar-2026 5K+ Views

IMPORTING transfers a value from the caller to the called method by passing an actual parameter. EXPORTING is just opposite to what IMPORTING does. It passes value from the method to caller. CHANGING is transferring the value from caller to method by a variable which is processed or changed and the changed value is passed back to the caller. Thus it combines both IMPORTING and EXPORTING function. CHANGING Parameter Syntax There are a couple of ways in which CHANGING can be used − CHANGING myvar CHANGING VALUE(myvar) By using CHANGING myvar, the ...

Read More
Showing 24361–24370 of 61,297 articles
Advertisements