I_DocumentInfoRecordAttchStsT

DDL: I_DOCUMENTINFORECORDATTCHSTST SQL: ICVDOCATTCHSTST Type: view COMPOSITE

Document Info Record Attach Status Text

I_DocumentInfoRecordAttchStsT is a Composite CDS View that provides data about "Document Info Record Attach Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, OriginalStatus. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t Value from

Associations (2)

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

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICVDOCATTCHSTST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey OriginalStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
EndUserText.label Document Info Record Attach Status Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY OriginalStatus
OriginalStatusText ddtext Document Structure Original Status
Associations_DocumentInfoRecordAttchSts
_Language _Language
@AbapCatalog.sqlViewName: 'ICVDOCATTCHSTST'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'OriginalStatus'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #L, dataClass: #META }
@EndUserText.label: 'Document Info Record Attach Status Text'

define view I_DocumentInfoRecordAttchStsT
  as select from dd07t as Value

  association [0..1] to I_DocumentInfoRecordAttchSts as _DocumentInfoRecordAttchSts on $projection.OriginalStatus = _DocumentInfoRecordAttchSts.OriginalStatus
  association [0..1] to I_Language                   as _Language                   on $projection.Language = _Language.Language

{

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage                        as Language,

      // @ObjectModel.foreignKey.association: '_DocumentInfoRecordOriglSts'

  key substring( domvalue_l, 1, 1 )     as OriginalStatus,


      @Semantics.text: true
      @EndUserText.label:'Document Structure Original Status'
      ddtext                            as OriginalStatusText,

      --Associations
      _DocumentInfoRecordAttchSts,
      _Language
}
where
      domname  = 'CV_VDM_DOC_ORIGINAL_STATUS'
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_DOCUMENTINFORECORDATTCHSTS",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/