Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles on Trending Technologies
Technical articles with clear explanations and examples
Accessing import parameters passed to a function module in SAP ABAP
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 MoreLearning about SAP ABAP CDS 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 MoreWhat is the difference between (window).load() and (document).ready() functions in jQuery?
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 MoreConverting a file into a byte array in SAP ABAP
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 MoreI don't want configuration information to be transferred with the database in SAP ABAP
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 MoreWhat is $(window).load() method in jQuery?
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 MoreHow should I initialize jQuery in a web page?
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 MoreImporting/Exporting ABAP packages to Presentation server
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 MoreProperties of SAP ABAP Development Objects
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 MoreComparing SAP ABAP Field symbols and data reference with Pointers in C
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