Articles on Trending Technologies

Technical articles with clear explanations and examples

Tutorix - AI Tutor

Using constants in ABAP OO method

V Jyothi
V Jyothi
Updated on 13-Mar-2026 478 Views

When working with constants in ABAP Object-Oriented methods, it's important to organize your code properly. Your INCLUDE should only contain definitions of constants nothing else and then the answer is straightforward. An INCLUDE in ABAP is a way to modularize code by storing reusable components like constants, type definitions, or data declarations in separate files that can be included in multiple programs or classes. Steps to Include Constants in ABAP OO Method To expose constants from an INCLUDE in your ...

Read More

Accessing import parameters passed to a function module in SAP ABAP

Samual Sam
Samual Sam
Updated on 13-Mar-2026 1K+ Views

ABAP provides several approaches to access import parameters passed to a function module dynamically. This capability is essential when you need to inspect or process function module parameters at runtime without knowing their structure beforehand. Using RPY_FUNCTIONMODULE_READ Function Module ABAP has a function module named RPY_FUNCTIONMODULE_READ which lets you extract metadata about the function module. To be more precise, it lets you extract the parameter structure of function module and once you know the parameters then you can access them dynamically. But it comes at a cost − if ...

Read More

Learning about SAP ABAP CDS views

Sravani S
Sravani S
Updated on 13-Mar-2026 4K+ Views

SAP ABAP CDS Views (Core Data Services) are a powerful data modeling infrastructure that allows developers to define semantically rich data models directly in the database. CDS views enable advanced analytical processing and provide a foundation for SAP HANA and S/4HANA applications. Learning Resources Whether it is CDS or ABAP or anything pertaining to SAP, you can always find free courses on https://open.sap.com/ referred to as Open SAP. Besides this, there are lots of free resources available - just Google it ...

Read More

What is the difference between (window).load() and (document).ready() functions in jQuery?

David Meador
David Meador
Updated on 13-Mar-2026 4K+ Views

Both the methods are used in jQuery. Let's see what purpose they fulfill and understand the key differences between them. $(document).ready() The ready() method is used to make a function available after the document is loaded. Whatever code you write inside the $(document).ready() method will run once the page DOM is ready to execute JavaScript code, but before all images and other resources are fully loaded. Example You can try to run the following code to learn how to use $(document).ready() in jQuery − ...

Read More

Converting a file into a byte array in SAP ABAP

Ramu Prasad
Ramu Prasad
Updated on 13-Mar-2026 1K+ Views

Converting a file into a byte array in SAP ABAP is a common requirement when you need to process binary data or transfer files. The following approach reads a file in binary mode and stores its content as an xstring byte array. Method Using Dataset Operations Here is a code snippet that demonstrates how to convert a file into a byte array − data: f_line type xstring. " to get line by line content data: f_file type ...

Read More

I don't want configuration information to be transferred with the database in SAP ABAP

Abhinaya
Abhinaya
Updated on 13-Mar-2026 196 Views

The straight answer to this is a big NO. This is one of the most common places of error in the SAP environment. When you create a clone of your production in the form of QA with most of the things as it is from production, you need to make sure that any action in QA after cloning doesn't have any implication or effect on actual production. Why Configuration Transfer is Problematic Transferring configuration information directly with the database can lead to several critical issues − System interference − QA actions might accidentally ...

Read More

What is $(window).load() method in jQuery?

David Meador
David Meador
Updated on 13-Mar-2026 5K+ Views

The code which gets included inside $(window).on("load", function() { ... }) runs only once the entire page is ready (not only DOM). This method waits for all content including images, stylesheets, and other resources to fully load before executing the callback function. Note: The load() method was deprecated in jQuery version 1.8 and completely removed in version 3.0. To see its working, add jQuery version for CDN before 3.0. Difference Between $(document).ready() and $(window).load() The $(document).ready() method fires when the DOM is ready, ...

Read More

How should I initialize jQuery in a web page?

David Meador
David Meador
Updated on 13-Mar-2026 2K+ Views

To initialize jQuery in a web page is quite easy. You can try to run the following code to learn how to initialize jQuery in a web page. We're using Google CDN to add jQuery. Microsoft CDN is also available for the same purpose of adding jQuery library to HTML. Methods to Initialize jQuery There are several ways to initialize jQuery in your web page − Using Google CDN The most common method is to include jQuery from Google's CDN (Content Delivery Network). This ensures fast loading and caching benefits − ...

Read More

Importing/Exporting ABAP packages to Presentation server

Ankitha Reddy
Ankitha Reddy
Updated on 13-Mar-2026 599 Views

When working with ABAP packages, you often need to import or export them to your local presentation server for backup, sharing, or migration purposes. There are two main approaches to accomplish this task effectively. Using SAPlink Tool SAPlink is a popular open-source tool that allows you to export custom ABAP objects to your presentation server. This tool is particularly useful for exporting individual development objects or small collections of related objects. You can use SAPlink to export custom objects and package them as ...

Read More

Properties of SAP ABAP Development Objects

Nikitha N
Nikitha N
Updated on 13-Mar-2026 323 Views

Similar to reflection in JAVA we have RTTS in SAP. RTTS stands for Runtime Type Services. It provides you with ways to retrieve the definitions of variables and lets you create a new variable during program execution. RTTS comprises of two sub-components − RTTI − Run Time Type Identification RTTC − Run Time Type Creation As the name suggests, RTTI is responsible for retrieving the definitions of variables and types whereas RTTC is responsible for the creation of new variables with provided definition at run-time. RTTI − Run Time ...

Read More
Showing 24481–24490 of 61,297 articles
Advertisements