HI
I am facing following issue.
1. i want to change the pricing attribute. for this i am using below code. Its showing calculated value upto save after save in the place of calculated value it is showing 0.00.
CALL METHOD lr_entity->set_property
EXPORTING
iv_attr_name = 'KBETR_PRT'
iv_value = fm_value.
2. i modified the code as below.
lr_core = cl_crm_bol_core=>get_instance( ).
CALL METHOD lr_entity->set_property
EXPORTING
iv_attr_name = 'KBETR_PRT'
iv_value = fm_value.
* endif.
lr_core->MODIFY( ).
Now it is not showing the calculated value initially also. it is showing 0.00 all time.
Please advise.....
Thanks
Babu