Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @EndUserText.label : 'Database table for travel data XXX'
- @AbapCatalog.enhancementCategory : #NOT_EXTENSIBLE
- @AbapCatalog.tableCategory : #TRANSPARENT
- @AbapCatalog.deliveryClass : #A
- @AbapCatalog.dataMaintenance : #LIMITED
- define table ztravel_xxx
- {
- key client : abap.clnt not null;
- key travel_id : /dmo/travel_id not null;
- agency_id : /dmo/agency_id;
- customer_id : /dmo/customer_id;
- begin_date : /dmo/begin_date;
- end_date : /dmo/end_date;
- @Semantics.amount.currencyCode : 'ztravel_xxx.currency_code'
- booking_fee : /dmo/booking_fee;
- @Semantics.amount.currencyCode : 'ztravel_xxx.currency_code'
- total_price : /dmo/total_price;
- currency_code : /dmo/currency_code;
- description : /dmo/description;
- overall_status : /dmo/overall_status;
- created_by : syuname;
- created_at : timestampl;
- last_changed_by : syuname;
- last_changed_at : timestampl;
- }
Add Comment
Please, Sign In to add comment