I_MDSubstnStsText

DDL: I_MDSUBSTNSTSTEXT Type: view_entity BASIC Package: VDM_MD_SUBSTN_COMMON

Master Data Substitution Status - Text

I_MDSubstnStsText (Basic)

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

Manufacturing

I_MDSubstnStsText is a Basic CDS View that provides data about "Master Data Substitution Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, MDSubstnStatus. It has 1 association to related views. It is exposed through 5 OData services (ASQL_F4785, ASQL_F4786, ASQL_F4788, ...). Part of development package VDM_MD_SUBSTN_COMMON.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessManufacturing
Application ComponentCA-EPT-SUB-2CL
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Language-Dependent Text,Association Target for Defining CDS Entities,Data Source in SQL Select,Data Source for Search
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageManufacturing for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
EndUserText.label Master Data Substitution Status - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey MDSubStnStatus view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.viewType #BASIC view

OData Services (5)

ServiceBindingVersionContractRelease
ASQL_F4785 ASQL_F4785 C2 NOT_RELEASED
ASQL_F4786 ASQL_F4786 C2 NOT_RELEASED
ASQL_F4788 ASQL_F4788 C2 NOT_RELEASED
ASQL_F5311 ASQL_F5311 C2 NOT_RELEASED
ASQL_F5314 ASQL_F5314 C2 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language Language Key
KEY MDSubstnStatus Substitution Status
DomainValue domvalue_l Values for Domains: Single Value/Lower Limit
MDSubstnStatusDescription Status Text
_Language _Language
_Status _Status

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_MDSubstnStsText.
-- 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.

CREATE VIEW I_MDSubstnStsText AS
SELECT
  cast(ddlanguage as spras preserving type ) AS Language,
  cast ( domvalue_l as md_substn_status ) AS MDSubstnStatus,
  domvalue_l AS DomainValue,
  cast( ddtext as md_substn_status_text preserving type ) AS MDSubstnStatusDescription
FROM dd07t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;