... 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 ...
In previous article ( Classifications - Part 2 - Get Object Details ) I've created a method to get characteristics values for an object to our dynamic structure, in this part I will show how to use ...
In the first part I show how to create a structure on a base of class characteristics, now I will describe how to get the characteristics values for a object and how to fill the structure we've created ...
... 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 ...
As you can imagine, INTTYPE is just a presentation of DATATYPE in internal SAP format in most of cases. I wrote most of cases because it can also say if the field in internal table is a reference to other ...
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 manipulate ...
... object not entered in table TOBJ
AUTH_OBJ_OK
CL_CI_TEST_EXTENDED_CHECK
302
W
Wrong number of authorization fields
AUTH_FLD_NO
CL_CI_TEST_EXTENDED_CHECK ...
...
a.Available views
The plugin contains two separate views Favorites and Favorties Dev Objects. The difference between then is that in Favorites view you can create two kind of folders and in Favorites ...
... 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 of ...
... the objects in code then you’re in heaven. In eclipse once you want to jump to method or function definition or implementation, you don’t have to save your current work and move to other, you just Ctrl ...
... 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 Column object ...
...
BUILT_IN_SCREEN
APPLICATION_LOG_EMBEDDED
SUBCLASS_TYPE
CREATE
This is a factory method which you need to use to create FALV object.
I_PARENT
If ...
... 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 using this object we ...
... 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 of standard select ...
... selection-screens, screens, dictionary objects, object oriented programming, alv grid, FM, FG, and so on. After person is familiar with all of this then you can start to share some info about basic ...
...
assign (gos_path) to .
if is assigned and is not initial.
data(object) = value borident( objkey = i_viqmel-qmnum ).
select single qmtyp into data(qmtyp)
from tq80
where qmart eq i_viqmel-qmart. ...
...
i_processed = sy-index " Number of Objects Already Processed
i_total = p_times1 " Total Number of Objects to Be Processed
i_output_immediately = abap_true " X = Display Progress Immediately ...
... In fact we need only PBO and PAI, in which 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'. ...
... 4) Last needed FM is the one which 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. ...
... 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 comments ...
...
append fs_mbm_matnr to fs_mbm_sel_type-matnr.
concatenate 'I' 'EQ' i_werks into fs_mbm_werks.
append fs_mbm_werks to fs_mbm_sel_type-werks.
* objects for loading ...
... 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, in my example for ...
... 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. Usage and names ...
... 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 in this tables: ...
...
select-options matnr for mseg-matnr memory id mat
matchcode object mat1.
select-options werks for mseg-werks memory id wrk obligatory.
select-options lgort for mseg-lgort memory id lag.
select-options charg for mseg-charg memory id cha. ...
... 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: I_BANFN TYPE ...