This tutorial will save you some headaches in the future. This technique is very useful when you need to debug a function module call. In our example we will use custom function module to present this functionality but FBGENMAC include Read More …
Category: ABAP
How to catch and store function module input parameters using FBGENDAT and FBGENMAC?
How to create ABAP Function Module in SAP using transaction SE37?
The function modules are very common used artefact in SAP. Despite the fact that most of the new development in classic ABAP is carried out with the object-oriented approach, there are still areas that cannot be implemented without the use Read More …
How to create ABAP Function Group in SAP using transaction SE37?
In this tutorial you will learn how to create Function Group in ABAP. In short, function groups are containers for Function Modules. PREREQUISITES: Access to any SAP system based on either SAP Netweaver or ABAP Platform SAPGUI installed on your Read More …
How to transfer Data Variants of Function Module (SE37) from one client (or system) to another?
In this SAP tutorial you will learn how to copy saved Data Variants from test data catalog from one client or system to another. PREREQUISITES: Access to SAP System (ECC or S/4HANA) Authorization to transaction SE37 RFC Connection between source Read More …
How to add trailing zeros in SAP ABAP?
If you find yourself in a situation where you need to add trailing zeros you can use one of the following methods: Method 1. Using a while loop: [cce lang=”abap”] DATA variable TYPE c LENGTH 16 VALUE ‘123’. DATA string_length Read More …
How to debug XSLT or Simple Transformation in XSLT_TOOL?
In this step by step SAP tutorial, you will learn how to debug XSLT (eXtensible Stylesheet Language) and/or ST (Simple Transformation) using XSLT_TOOL. I assume you know what XSLT/ST is but if not you can go to tutorial and articles Read More …
How to transform ABAP table into XML using XSLT?
In this step by step SAP tutorial, you will learn how to transform the ABAP table into XML using XSLT? If you don’t have a clue what XSLT is, I recommend you read the following article before starting the tutorial Read More …
How to create append into Standard SAP Table in transaction SE11?
In this step by step SAP tutorial, you will learn how to create append structure for standard SAP table using transaction SE11. Step 1. Go transaction SE11 (ABAP Dictionary Maintenance). Put “se11” in the command field and hit Enter: Read More …
How to compare two ABAP programs on two systems in transaction SE39?
In this step by step SAP tutorial, you will learn how to compare two ABAP program on two system using transaction SE39. Step 1. Go transaction SE39 (ABAP Split Screen Editor). Put “se39” in the command field and hit Enter: Read More …
How to create first ABAP global class (simple calculator) in transaction SE24 (part II)?
This tutorial is the second part of How to create first ABAP global class (simple calculator) in transaction SE24 (part I)? Step 12. Click on ADD method: Step 13. Click on Parameters button: Step 14. Add parameters Read More …