If you need to extend your Material Master view tabs then this article will show how you can do it in few simple steps. Continue reading
Category Archives: Dynpro
ABAP – Return to Selection screen after error in START-OF-SELECTION
Sometimes you need to do some data processing and in case of error you’d like to return user back to selection screen and display the error message. Continue reading
ABAP – Problems with combo box in ALV
In this article I’ll show you how to implement a “combo box” with key-value structure as one of ALV columns. Continue reading
ABAP – ComboBox on Selection-Screen
In this article I’ll show you how to create a combo box as one of selection-screen parameters Continue reading
ABAP – List of all colors available in WebDynpro
This is a demo webdynpro application to show you a list of all available colors you can use in your WebDynpros.
ABAP – Using dynamic variables in program selection screen variants
I believe you once had to solve a requirement (if not, you’ll definitely receive one in future) where you had to design a SELECTION-SCREEN parameters which value has to be dynamically updated according to results of the program – eg. last processed IDOC number, Purchase/Sales Order number or just the last date when the report was executed. Continue reading
ABAP – How to search across Web Dynpro methods
There’s no direct way how to search for a string across all methods of a Web Dynpro, it is always possible to search in just one method only. Using the approach I’m going to present it is possible to find the SAP internal name of the impementing class and then search across the whole class in classic SE24 transaction for editing classes. Continue reading
ABAP – Advanced debugging
I believe that most of you know how to debug the basic report or class methods etc.
But things can become complicated when debugging is needed for a backround job, RFC function module or even some user-exit which is being triggered in an update task. E.g. when you update material master in ECC using MM02, you can’t easily debug all user-exits because they’re triggered in separate process independent on session you are currently running.
In this article I’d like to present several useful debugging tricks you can use in your more complex scenarios. Continue reading
ALV tutorial 11 – Edit & Save changes
In this tutorial I’ll show how to enable only the specific cells of a grid to be editable. Continue reading
Dynpro – How to disable functions instead of hiding them in a screen
If you need to manipulate with a screen dynamically, sometimes you need to enable/disable some functions/buttons in the toolbar. Standard exclusion of function when setting PF-STATUS will by default hide the excluded functions. But what if you want to display them, but just in disabled state ? Continue reading