SAP Articles

Page 23 of 91

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

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

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

SAP Authorization concept and Authorization Objects, Object Class

Abhinanda Shri
Abhinanda Shri
Updated on 13-Mar-2026 2K+ Views

To clear the air all at once, SAP Authorization Objects and Object Class have nothing much in common with Object Oriented classes and objects and differ vastly from them. Authorization objects detail the current user's privileges which are used to authorize user activities and data availability. The Authorization Object is the place where configurations pertaining to permissions are set up and initialized against fields. An object class, on the other hand, is a grouping of Authorization objects. It may contain one or more authorization objects. Understanding Authorization Objects Authorization objects contain authorization fields that define what ...

Read More

Distinguish SAP ABAP code between clients

radhakrishna
radhakrishna
Updated on 13-Mar-2026 355 Views

In SAP ABAP, you can distinguish code execution between different clients by using the system field sy-mandt. This field contains the current client (mandant) number and allows you to implement client-specific logic in your programs. Using sy-mandt for Client Identification The sy-mandt system field is automatically populated with the current client number when a user logs into the system. You can use this field in conditional statements to execute different code blocks based on the client − IF sy-mandt = '002'. * do ...

Read More

Entering a condition to perform SELECT in an existing report in SAP system

mkotla
mkotla
Updated on 13-Mar-2026 158 Views

When working with SAP ABAP SELECT statements, you need to be careful with spacing and syntax, especially when adding complex conditions. One of the most common mistakes is improper spacing around brackets and logical operators in WHERE clauses. Adding Complex Conditions to SELECT Statements In ABAP, proper spacing is crucial for the parser to correctly interpret your code. When combining multiple conditions with logical operators like AND, OR, and NOT, ensure you have adequate spaces before and after brackets and operators. Example ...

Read More
Showing 221–230 of 902 articles
« Prev 1 21 22 23 24 25 91 Next »
Advertisements