Hi ,
I am trying to do some operation based on button click.
I am able to get which button is clicked in WDDOBEFOREACTION with following code,
lo_api_controller = wd_this->wd_get_api( ).
lo_action = lo_api_controller->get_current_action( ).
IF lo_action IS BOUND.
CASE lo_action->name.
where 'CREATE_BUTN'
....
.....
.....
but the thing is how to perform an operation after that button click in WDDOAFTERACTION method.
any help will be greatly appreciated.
Thanks ...