I_Matlqualityauthgrouptext

DDL: I_MATLQUALITYAUTHGROUPTEXT Type: view BASIC

Material Authzn Group for Qlty Mgmt - Text

I_Matlqualityauthgrouptext (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private 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.

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentQM-PT
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Language-Dependent Text
PackageManufacturing for SAP S/4HANA Cloud Private 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 (15)

NameValueLevelField
AbapCatalog.sqlViewName IMATLQLTYAUTHGRT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
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
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view

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]
;