Jaehoon

EXT201_3.2.5

Feb 10th, 2020
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 0.93 KB | None | 0 0
  1. @EndUserText.label : 'Database table for travel data XXX'
  2. @AbapCatalog.enhancementCategory : #NOT_EXTENSIBLE
  3. @AbapCatalog.tableCategory : #TRANSPARENT
  4. @AbapCatalog.deliveryClass : #A
  5. @AbapCatalog.dataMaintenance : #LIMITED
  6. define table ztravel_xxx
  7. {
  8.   key client      : abap.clnt not null;
  9.   key travel_id   : /dmo/travel_id not null;
  10.   agency_id       : /dmo/agency_id;
  11.   customer_id     : /dmo/customer_id;
  12.   begin_date      : /dmo/begin_date;
  13.   end_date        : /dmo/end_date;
  14.   @Semantics.amount.currencyCode : 'ztravel_xxx.currency_code'
  15.   booking_fee     : /dmo/booking_fee;
  16.   @Semantics.amount.currencyCode : 'ztravel_xxx.currency_code'
  17.   total_price     : /dmo/total_price;
  18.   currency_code   : /dmo/currency_code;
  19.   description     : /dmo/description;
  20.   overall_status  : /dmo/overall_status;
  21.   created_by      : syuname;
  22.   created_at      : timestampl;
  23.   last_changed_by : syuname;
  24.   last_changed_at : timestampl;
  25. }
Add Comment
Please, Sign In to add comment