... tion-screen then program RSDBRUNT is called which is manipulating the output of the selection screen and also the GUI status.
After some debugging I found interesting global variables there: CU ...
... rse it's better to use ABAPGit to install the program than to copy&paste it from here, especially that the screen and GUI status is included into Git repository. Also whole refactoring is not yet don ...
... m to display all that I have found on 7.50 SP2 NW system.
report zab_alv_symbols.
parameters: dummy as checkbox.
initialization.
data(grid) = new cl_gui_alv_grid( i_parent = new cl_gui_docking_containe ...
... rites view you can create two kind of folders and in Favorites Dev Objects view you can only create folders for Development Objects (programs, classes, interfaces, etc.). This distinguish is done becaus ...
If you follow my blog, then you probably noticed that I'm not keen of SALV class, as it's not editable and you cannot handle all events that you can in cl_gui_alv_grid class. With a small trick ...
... source codes open at the same time – no limits ( at least I haven’t found any ) for opening tabs for code. When you imagine your 5-7 gui screens and navigation between the objects in code then ...
... from CL_GUI_ALV_GRID, which is normally not possible. When you look into the class definition you'll notice that there is only one global friend - interface IF_ALV_RM_GRID_FRIEND which has no ...
... NICEdit and this tread on SCN I found the way to make HTML WYSIWYG editor for ABAP. My editor use CL_GUI_HTML_VIEWER to display NICEdit in container, and then thanks to POST method I put changes ...
... is based on article about Dynamic GUI Status & Tittle but was included directly into FALV and updated to keep the logic of it. in ZDEMO_FALV03 and ZDEMO_FALV04 you can find example of usage ...
... sp;).
"show default grid toolbar
falv->layout->set_no_toolbar( abap_false ).
"Add mass replace function to grid toolbar (can be also added to GUI STATUS as wel ...
... fully dynamic GUI Status in case of full screen FALV. When you use full dynamic GUI status then you're allowed to use up to 35 button slots. Default buttons like SAVE, BACK, UP, EXIT, PRINT,... are alread ...
... adding custom buttons to GUI status (in case of full screen display). Screen contains default grid buttons + 19 empty slots for custom buttons.
"! This is demo for FALV full screen with partly dynamic GUI STATUS ...
... lways worked with cl_gui_alv_grid class so then whenever users decided that they need one of the field to be editable then I can do it in few seconds/minutes.
But there is a way to make SALV edi ...
... but, many doesn't mean everything. Especially that I really like CL_GUI_ALV_GRID class and this that without any tricks I can make it editable in easy way. My class in not yet finished ...
... guides? Well I don't know the answer to all this questions but my experience in teaching ABAP gives me possibility to share with you what and how to do with your "apprentice". Before ...
... indicator in ABAP. I've said also that it's better to cl_progress_indicator instead of FM SAPGUI_PROGRESS_INDICATOR because of built-in function to show progress only once per 10 seconds. But sometimes ...
When you're used to create buttons in ALV Grid dynamically then you think why SAP doesn't allow create dynamically buttons on GUI STATUS. You can change icon or text if you defined that function ...
Many people still asks how to create field catalog for CL_GUI_ALV_GRID or REUSE_ALV_GRID_DISPLAY on a base of internal table. This is very easy since we have SALV classes, you could see it in ...
... I remember I was always using SAPGUI_PROGRESS_INDICATOR FM to display such messages on the screen. When used inside loops I often was manually dividing current tabix by selected variable (for ...
I was playing a bit with CL_GUI_TIMER some time ago and I thought that this would be good to use it somewhere to have idea how it works. So I've created then a small game Battleships, which you for ...
... such FM or in fact Function Group which will allow you to call mass replace function from any program using cl_gui_alv_gird. Result of the work will be like that:
1) You'll have to ...