I_SADL_DRAFTROOTCORE

DDL: I_SADL_DRAFTROOTCORE SQL: SADL_DRFT_ROOT_C Type: view Package: SADL_GW_DT_SB_UI_TEST

...

I_SADL_DRAFTROOTCORE is a CDS View that provides data about "..." in SAP S/4HANA. It reads from 1 data source (snwd_so) and exposes 3 fields with key field SalesOrder. Part of development package SADL_GW_DT_SB_UI_TEST.

Data Sources (1)

SourceAliasJoin Type
snwd_so header from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SADL_DRFT_ROOT_C view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ... view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesOrder snwd_so node_key
CurrencyCode snwd_so currency_code
GrossAmount snwd_so gross_amount
@AbapCatalog.sqlViewName: 'SADL_DRFT_ROOT_C'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: '...'
@Metadata.ignorePropagatedAnnotations: true
define view I_SADL_DRAFTROOTCORE as select from snwd_so as header
{
  key header.node_key          as SalesOrder,
    
    @Semantics.currencyCode: true
    header.currency_code       as CurrencyCode,
    
    @Semantics.amount.currencyCode: 'CurrencyCode'
    header.gross_amount        as GrossAmount
}