Here you can find a code snippet about how to enable specific fields of your ALV to be F4 responsive with a custom programmed search help. Continue reading
Category Archives: ALV
ABAP – Very simple ALV
It’s quite common request to show lines of an internal table in form of ALV popup – e.g. some custom log messages after a program execution. Continue reading
ABAP – POPUP_TO_CONFIRM with dynamic text
If you need to display dynamic text in an e.g. confirmation dialog, in which you need to place several variables (different for each popup) you can use function module POPUP_TO_CONFIRM and the parameter table. Continue reading
ABAP – Select ALV layout on the selection screen
If you want to offer your users to have a parameter on the selection screen where they can select layout of the ALV to be displayed, you can use the following code snippet Continue reading
ABAP – Dynamically show and hide ALV (as sidebar)
Quite frequently I’m getting requests to create an ALV report where only the “header data” is displayed…but after clicking on a hotspot area in that ALV, another grid (ALV) is to be displayed with detailed information (displayed as a sidebar on the screen, not as a new, modal screen). And of course, this sidebar should be possible to be closed/hidden. Continue reading
ABAP – SET PARAMETER ID and ME33L
I need to display a scheduling agreement after click on hotspot (containing SAG document number) in ALV.
ABAP – Grouping fields in field catalog
In some cases you find a report with ALV output where there are maybe hundreds of fields available to be displayed. This can be VERY confusing for the user when he tries to select just few fields he wants to display but all fields are listed in one HUGE list together.
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 – 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 – Treating different number formats
You might face a problem when users have number format set differently in their user profiles (TCode SU01, table USR01). By default there are 3 formats available and this can cause troubles when processing user entered data and converting it into internal SAP DB format. Continue reading