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 Lang.
KEY OriginalStatus
OriginalStatusText ddtext Document Structure Original Status
Associations_DocumentInfoRecordAttchSts
_Language _Language

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_DocumentInfoRecordAttchStsT.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ICVDOCATTCHSTST

CREATE VIEW I_DocumentInfoRecordAttchStsT AS
SELECT
  ddlanguage AS Language,
  substring( domvalue_l, 1, 1 ) AS OriginalStatus,
  ddtext AS OriginalStatusText
FROM dd07t AS Value
LEFT OUTER JOIN I_DocumentInfoRecordAttchSts AS _DocumentInfoRecordAttchSts ON OriginalStatus = _DocumentInfoRecordAttchSts.OriginalStatus  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;