I_RAContractStatusText

DDL: I_RACONTRACTSTATUSTEXT SQL: IRACSTSTEXT Type: view BASIC

Revenue Accounting Contract Status - Text

I_RAContractStatusText is a Basic CDS View that provides data about "Revenue Accounting Contract Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, RevnAcctgContractStatus. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IRACSTSTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Revenue Accounting Contract Status - Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RevnAcctgContractStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage
KEY RevnAcctgContractStatus dd07t domvalue_l
RevnAcctgContractStatusName
_RAContractStatus _RAContractStatus
_Language _Language
@AbapCatalog.sqlViewName: 'IRACSTSTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true

@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@EndUserText.label: 'Revenue Accounting Contract Status - Text'

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'RevnAcctgContractStatus'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #META}
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ]
@Metadata.ignorePropagatedAnnotations: true 

@VDM.viewType: #BASIC

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view I_RAContractStatusText 
as select from dd07t 
  association [1..1] to I_RAContractStatus as _RAContractStatus on $projection.RevnAcctgContractStatus = _RAContractStatus.RevnAcctgContractStatus
  association [0..1] to I_Language         as _Language         on $projection.Language = _Language.Language
 {
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key dd07t.ddlanguage                                  as Language,
      
      @ObjectModel.foreignKey.association: '_RAContractStatus'
  key dd07t.domvalue_l                                  as RevnAcctgContractStatus,
    
      @Semantics.text: true
      cast( ddtext as farr_cds_contr_status_text )      as RevnAcctgContractStatusName,
        
      _RAContractStatus,
      _Language
}
where dd07t.domname  = 'FARR_CONTRACT_STATUS' 
  and dd07t.as4local = 'A' 
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RACONTRACTSTATUS"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/