Unmanaged scenario-CREATE BY ASSOCIATION- basic example in RAP
Step 1: Create a table for Header details. @EndUserText.label : 'Student header table' @AbapCatalog.enhancement.category : #NOT_EXTENSIBLE @AbapCatalog.tableCategory : #TRANSPARENT @AbapCatalog.deliveryClass : #A @AbapCatalog.dataMaintenance : #RESTRICTED define table ztl_ab_stuh_13 { key client : abap . clnt not null; key id : sysuuid_x16 not null; stu_id : abap . dec ( 10 , 0 ); stu_name : abap . char ( 25 ); stu_age : abap . numc ( 2 ); stu_course : abap . char ( 30 ); stu_cour_dur : abap . numc ( 2 ); stu_status : abap_boolean ; stu_gender : zde_ab_gender ; stu_gen_desc : abap . char ( 10 ); stu_dob : abap . dats ; last_ch_time : timestampl ; last_ch_date : timestampl ; } Step 2: Create domains, data elements for gender, course, semester and semester results. Refer:- Create domains and data elements in RAP Step 3: Create a table...