I_SAPClient

DDL: I_SAPCLIENT SQL: ISAPCLIENT Type: view BASIC Package: ABLM

SAP Client

I_SAPClient is a Basic CDS View (Dimension) that provides data about "SAP Client" in SAP S/4HANA. It reads from 1 data source (t000) and exposes 7 fields with key field SAPClient. It has 2 associations to related views. Part of development package ABLM.

Data Sources (1)

SourceAliasJoin Type
t000 t000 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Currency _GroupCurrency $projection.GroupCurrency = _GroupCurrency.Currency
[0..1] I_LogicalSystem _LogicalSystem $projection.LogicalSystem = _LogicalSystem.LogicalSystem

Annotations (11)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey SAPClient view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
AbapCatalog.sqlViewName ISAPCLIENT view
EndUserText.label SAP Client view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY SAPClient mandt
SAPClientName mtext
GroupCurrency mwaer
SAPClientRole cccategory
LogicalSystem logsys
_GroupCurrency _GroupCurrency
_LogicalSystem _LogicalSystem
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin

@ObjectModel.representativeKey: 'SAPClient'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@AbapCatalog.sqlViewName: 'ISAPCLIENT'
@EndUserText.label: 'SAP Client'
@Analytics : {dataCategory: #DIMENSION, dataExtraction.enabled : true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC

define view I_SAPClient
  as select from t000
  association [0..1] to I_Currency      as _GroupCurrency on $projection.GroupCurrency = _GroupCurrency.Currency
  association [0..1] to I_LogicalSystem as _LogicalSystem on $projection.LogicalSystem = _LogicalSystem.LogicalSystem
{
      // Added for issue 1570150780

      @AbapCatalog.INTERNAL.ISMANDT
  key mandt      as SAPClient,
      mtext      as SAPClientName,
      @ObjectModel.foreignKey.association: '_GroupCurrency'
      mwaer      as GroupCurrency,
      cccategory as SAPClientRole,
      @ObjectModel.foreignKey.association: '_LogicalSystem'
      logsys     as LogicalSystem,
      _GroupCurrency,
      _LogicalSystem
}