I_BankAcctContrTypeText

DDL: I_BANKACCTCONTRTYPETEXT SQL: ICONTRTYPETXT Type: view BASIC

Bank Account Contract Type - Text

I_BankAcctContrTypeText is a Basic CDS View that provides data about "Bank Account Contract Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields BankAccountContractType, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICONTRTYPETXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Bank Account Contract Type - Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BankAccountContractType
KEY Language ddlanguage Bank Account Contract Type Language
BankAccountContractTypeName Contract Type Description
_Language _Language
@AbapCatalog.sqlViewName: 'ICONTRTYPETXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Bank Account Contract Type - Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_BankAcctContrTypeText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key cast ( domvalue_l as fclm_bam_contract_type ) as BankAccountContractType,
      @Semantics.language: true
      @EndUserText.label: 'Bank Account Contract Type Language'
  key ddlanguage                                    as Language,
      @Semantics.text: true
      @EndUserText.label: 'Contract Type Description'
      @EndUserText.quickInfo:'Contract Type Description'
      cast ( ddtext as fclm_bam_contracttypetext )  as BankAccountContractTypeName,
      _Language
}
where
  domname = 'FCLM_BAM_CONTRACT_TYPE';