Articles on Trending Technologies

Technical articles with clear explanations and examples

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 186 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 584 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 305 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

Comparing SAP ABAP Field symbols and data reference with Pointers in C

Sai Subramanyam
Sai Subramanyam
Updated on 13-Mar-2026 1K+ Views

Field symbols resemble pointers in C but there is one main difference: you can use field symbols only to access the values present in them but not the memory address. Similar to a pointer in actual implementation, a field symbol stores the memory address of the variable that was assigned to it. You can see the data held by the variable but you cannot fetch the memory address. Similar to a pointer, if you make changes to data referenced by field symbol, it changes the value at the original location too. ...

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