Hi,
I've put code and a breakpoint in the FIELDSELECTION_ITEM method of ME_PROCESS_REQ_CUST, but it does'nt seem to be called...
method IF_EX_ME_PROCESS_REQ_CUST~FIELDSELECTION_ITEM.
FIELD-SYMBOLS: <fs> LIKE LINE OF ch_fieldselection.
READ TABLE ch_fieldselection ASSIGNING <fs> WITH TABLE KEY
metafield = 'MENGE'.
IF sy-subrc IS INITIAL.
<fs>-fieldstatus = '*'. " Display <-- this one was as per the sample code given.
ENDIF.
endmethod.
Do I have to implement something else?
Thanks!
Edited by: Emanuel Champagne on Oct 22, 2009 4:42 PM