Hi Anitha,
Answer to your 2nd requirements:
- For OV page
In your parties involved AB impl class there is a method called SET_VIEW_GROUP_CONTEXT. you have to redefine it. Do not call super code for this method as if you call it will take parent instance.
CALL METHOD super->set_view_group_context
EXPORTING
iv_parent_context = iv_parent_context
iv_first_time = iv_first_time.
Above code should not be called, comment it.
Now, try this code in the same method:
create object me->view_group_context type cl_bsp_wd_view_group_context.
me->view_group_context->set_view_editable( me ).
Also, use IV_FIRST_TIME parameter judiciously as per your requirement.
All the best
Thanks,
Bhushan