I_Matlqualityauthgrouptext

DDL: I_MATLQUALITYAUTHGROUPTEXT Type: view_entity BASIC Package: VDM_QM_PLANNING

Material Authzn Group for Qlty Mgmt - Text

I_Matlqualityauthgrouptext (Basic)

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

Manufacturing

I_Matlqualityauthgrouptext is a Basic CDS View that provides data about "Material Authzn Group for Qlty Mgmt - Text" in SAP S/4HANA. It reads from 1 data source (tq01c) and exposes 5 fields with key fields Language, MatlQualityAuthorizationGroup. It has 2 associations to related views. It is exposed through 1 OData service (ASQL_F2361). Part of development package VDM_QM_PLANNING.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessManufacturing
Application ComponentQM-PT-2CL
CapabilitiesData Source in SQL Select,Association Target for Defining CDS Entities,Data Source for Search,Data Source for Defining CDS Entities,Language-Dependent Text
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageManufacturing for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view provides access to material authorization groups to restrict user access to material-related data in Quality Management.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
tq01c tq01c from

Associations (2)

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

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Authzn Group for Qlty Mgmt - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey MatlQualityAuthorizationGroup view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Analytics.technicalName IMATLQLTYAUTHGRT view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F2361 ASQL_F2361 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language sprache Language Key
KEY MatlQualityAuthorizationGroup Material Authorization Group for Activities in QM
MatlQltyAuthorizationGrpText Material Authorization Group Text for Activities in QM
_MatlQualityAuthGroup _MatlQualityAuthGroup
_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_Matlqualityauthgrouptext.
-- 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_Matlqualityauthgrouptext AS
SELECT
  sprache AS Language,
  cast( qmatauth as vdm_qmatauth preserving type ) AS MatlQualityAuthorizationGroup,
  cast( kurztext as vdm_qmatauth_text preserving type ) AS MatlQltyAuthorizationGrpText
FROM tq01c
LEFT OUTER JOIN I_MatlQualityAuthGroup AS _MatlQualityAuthGroup ON MatlQualityAuthorizationGroup = _MatlQualityAuthGroup.MatlQualityAuthorizationGroup  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;