... to show the details of the clicked object, or to move to a transaction in which the object can be modified.
As you can imagine, setting column as a HOTSPOT is very easy, you need to pass only the ABAP_TRUE ...
Have you received someday an error from your ABAP object saying that "The statement SELECTION-SCREEN is not allowed within FORM routines and function modules." and you wondered why it is blocked to manipulat ...
... nbsp;
3.What are the features of the plugin?
a.Available views
The plugin contains two separate views Favorites and Favorties Dev Objects. The difference between then is that in Fav ...
... you can make your SALV editable and you can handle all the events you want from underlying cl_gui_alv_grid object. What you need to do, is to set handler for event after_refresh for all instances ...
... 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 ...
... it would work as you expected but once you've displayed results and you modify fcat table then you need to use method set_frontend_fieldcatalog to affect grid object. That's why if you'll use ...
... to adapt fieldcatalog the we can use standard old technique of getting frontend field catalog and then manipulating the entries or we can use column method which returns zcl_falv_column object and then ...
... want to change some layout settings - like zebra, then you can use layout object which contains setters for all layout fields. Additionally in this object we have "Mark field" which changes behaviur o ...
... in small steps: procedural programming, selection-screens, screens, dictionary objects, object oriented programming, alv grid, FM, FG, and so on. After person is familiar with all of ...
... creation of custom container and ALV object will take place and user command will be handled. PBO / PAI code belllow: module pbo_0501 output.
set pf-status 'STATUS_0501'. ...
... will be called directly from ALV. As import parameter we need cl_gui_alv_grid object and as a changing parameter we need out output table to be able to update it directly. Firstly after calling this ...
... this time. It's because business documents needs to have specified an object to which it is linked and in case of GOS for standard transactions it's always called without object id (in creation ...
... after the PO is save with your some background job or you can try to insert the object directly to the GOS of purchase order. I didn't do direct attachment to GOS of PO but as I mention in the ...
... always last. To be sure you get last document you have to select data from ESRUO table directly, sort it by timestamp and get last object. Then update setting of default document for transaction, ...
... ESDUS table. ACTION is responsible for the identification of program or transaction or object for which the settings are stored. ELEMENT keeps the setting key (name) and ACTIVE keeps the value. ...
... this cases you'll want to look at tables: ESRUO (MM: Recently Used Objects) ESDUS (MM: Dynamic User Settings) and to function group MLSO which provides you few nice FM to handle entries ...
... by checking EBAN table. You have to use OO PR objects to be able to do so. Bellow you can find a method how to check if you can reset the rejection of the requisition done in the WF. Importing: ...