I_DocumentInfoRecordDeltnSts

DDL: I_DOCUMENTINFORECORDDELTNSTS SQL: ICVDOCDELTNSTS Type: view COMPOSITE

Document Info Record Delete Status

I_DocumentInfoRecordDeltnSts (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

R&D Engineering

I_DocumentInfoRecordDeltnSts is a Composite CDS View (Dimension) that provides data about "Document Info Record Delete Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field DocInfoRecdIsMarkedForDeletion. It has 1 association to related views.

SAP Help Documentation

CategoryInterface Views
Data CategoryDimension
StatusReleased
Purpose
This CDS view retrieves the document info records that are marked for deletion. This CDS view provides the data to answer the following business question: Is the document info record marked for deletion? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations One of the following business catalogs needs to be assigned to a user to be able to use this CDS view: SAP_PLM_BC_DIR_EXTD_PC SAP_PLM_BC_DIR_EXTD_MC

Structure
Important fields Important fields in this view include the following: Field Name Description DocInfoRecdIsMarkedForDeletion Indicates if the document info record is marked for deletion.

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessR&D Engineering
Application ComponentCA-DMS
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageR&D Engineering for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l Domval from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DocumentInfoRecordDeltnStsT _Text $projection.DocInfoRecdIsMarkedForDeletion = _Text.DocInfoRecdIsMarkedForDeletion

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICVDOCDELTNSTS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #DIMENSION view
Metadata.allowExtensions true view
ObjectModel.representativeKey DocInfoRecdIsMarkedForDeletion view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #META view
EndUserText.label Document Info Record Delete Status view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DocInfoRecdIsMarkedForDeletion Deletion Indicator
Association_Text

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_DocumentInfoRecordDeltnSts.
-- 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: ICVDOCDELTNSTS

CREATE VIEW I_DocumentInfoRecordDeltnSts AS
SELECT
  substring( Domval.domvalue_l, 1, 1 ) AS DocInfoRecdIsMarkedForDeletion
FROM dd07l AS Domval
LEFT OUTER JOIN I_DocumentInfoRecordDeltnStsT AS _Text ON DocInfoRecdIsMarkedForDeletion = _Text.DocInfoRecdIsMarkedForDeletion  -- association [0..*]
;