Adding draft functionality in RAP
Refer - Sample example for managed scenario Refer - Validations in Rap Step 1: Adding new fields in main table. @EndUserText.label : 'Student interview details' @AbapCatalog.enhancement.category : #NOT_EXTENSIBLE @AbapCatalog.tableCategory : #TRANSPARENT @AbapCatalog.deliveryClass : #A @AbapCatalog.dataMaintenance : #RESTRICTED define table ztl_ab_rap_stus { key client : abap . clnt not null; key student_id : zde_ab_rap_studen not null; student_name : abap . char ( 30 ); student_i_loc : abap . char ( 20 ); student_i_date : abap . datn ; student_status : abap_boolean ; student_gender : abap . char ( 1 ); description : abap . char ( 6 ); last_chdate : timestampl ; loc_last_chdate : timestampl ; } * Check and a...