Hi Santosh,
In EH_ONSAVE method you need to write the below code.
Data: wa type crmst_adminh_btil, (structure for adminh table)
current type if_bol_bo_property_access.
if wa-fieldname is not initial.
call method current->set_property_as_value
exporting
iv_attr_name = fieldname
iv_value= 'completed'.
endif.
try these code.
Thanks,
Narasimha