At the moment we do nothing in the event.
It's only
METHOD eh_onsetflags
***Nothing in here
END METHOD.
We have implemented a P-Getter like that:
CASE IV_PROPERTY.
WHEN IF_BSP_WD_MODEL_SETTER_GETTER=>FP_FIELDTYPE.
" making the field as DROPDOWN
RV_VALUE = CL_BSP_DLC_VIEW_DESCRIPTOR=>FIELD_TYPE_PICKLIST.
* Event after selection of value from dropdown
WHEN IF_BSP_WD_MODEL_SETTER_GETTER=>FP_SERVER_EVENT.
rv_value = 'setflags'.
ENDCASE.
If we comment this lines it works but of course we haven't the choice to call an event:
* WHEN IF_BSP_WD_MODEL_SETTER_GETTER=>FP_SERVER_EVENT.
* rv_value = 'setflags'.