There is a phase in development cycle when the programmer needs to optimize his final product. This post focuses on those transactions which help developers to analyse, debug and optimize already finished reports and programs.
Category: ABAP
Various blog posts around the ABAP World.
Transaction codes for Database and Table handling
In this part of series, I am going to describe several original SAP transaction codes (reports and utilities) for handling tables and database.
How to modify and extend SAP applications – Different approaches + Transaction codes
This part of series is focused on transactions that allow an ABAP developer enhance the original SAP reports with his own modifications. You will find here the list of transactions – possibilities how to extend SAP reports, internal logic within function modules, classes or dictionary objects.
7 Essential SAP transactions (t-codes) for development that every ABAP developer should know
All SAP users, including ABAP developers, has to struggle with remembering short t-codes that has their special purpose. There is no surprise when a developer comes across new interesting transaction that was a missing piece in his ABAP development tools. That’s why I put together these series of various SAP transactions for ABAP developers.
What is XSTRING data type and how to convert it to various formats
XSTRING is predefined byte-like ABAP type with variable length. This type ensures dynamic allocation of memory. Its value is a sequence of bytes that equals its hexadecimal value as shows screenshot from ABAP debugger.
Encode and decode URL in ABAP
There are static methods both for encoding and decoding URL in class CL_HTTP_UTILITY. For encoding, ABAP predefined function encode( ) can be used as well.
Escape HTML / XML / JS content or URI / URL in ABAP
ABAP offers predefined function called escape( ) which is available as of SAP_BASIS >= 731.
Whenever you need to convert your data from unescaped to escaped string, you can use this escape function. There are several options which escaped function provides. You can escape HTML, XML, JS, JSON content or its combination, URL and URI links. You can also use escape function for Cross-site scripting as you can see in this link.