Update multiple records/ Pass default values to Dialog box in RAP using Unmanaged scenario
Refer:- Custom entity/Action dialog in RAP using Unmanaged scenario ******************* pass default values to dialog box ******************************** Step 1: Change the abstract entity and add annotation . @EndUserText.label: 'Abstart entity for status field' @Metadata.allowExtensions: true define abstract entity ZA_AB_STUH_13 //with parameters parameter_name : parameter_type { @UI.defaultValue: 'X' // Passing always true to dialog box. stu_status : abap_boolean ; } Testing: * Preview the application. * Click on go to see all records. * Select record and click on update status. * Dialog box appears with default value Yes. **********...