Deprecated SAP_INTERNAL_API
This CDS view is deprecated in S/4HANA. Use I_DocumentInfoRecordAttchSts instead. View all deprecated CDS views →

I_DocInfoRecdStatusOfOriginal

DDL: I_DOCINFORECDSTATUSOFORIGINAL SQL: ICVDOCORIGSTATUS Type: view BASIC

Original Status Values

I_DocInfoRecdStatusOfOriginal is a Basic CDS View (Dimension) that provides data about "Original Status Values" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 1 field. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l OrigStatus from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DocInfoRecdStatusOfOrigText _OriginalStatusText $projection.OriginalStatus = _OriginalStatusText.OriginalStatus

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ICVDOCORIGSTATUS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey OriginalStatus view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Original Status Values view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_DocumentInfoRecordAttchSts view

Fields (1)

KeyFieldSource TableSource FieldDescription
Associations_OriginalStatusText

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_DocInfoRecdStatusOfOriginal.
-- 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: ICVDOCORIGSTATUS

CREATE VIEW I_DocInfoRecdStatusOfOriginal AS
SELECT *  -- field list not available in parsed metadata
FROM dd07l AS OrigStatus
LEFT OUTER JOIN I_DocInfoRecdStatusOfOrigText AS _OriginalStatusText ON OriginalStatus = _OriginalStatusText.OriginalStatus  -- association [0..*]
;