I_QltyMstrDataAuthznGroupTxt

DDL: I_QLTYMSTRDATAAUTHZNGROUPTXT Type: view BASIC

Authzn Group for Qlty Master Data - Text

I_QltyMstrDataAuthznGroupTxt (Basic)

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

Manufacturing

I_QltyMstrDataAuthznGroupTxt is a Basic CDS View that provides data about "Authzn Group for Qlty Master Data - Text" in SAP S/4HANA. It reads from 1 data source (tq01e) and exposes 5 fields with key fields QltyMstrDataAuthorizationGroup, Language. 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 the authorization group for QM basic data.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
tq01e tq01e from

Associations (2)

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

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IQMDAUTHGRPT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Authzn Group for Qlty Master Data - Text view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey QltyMstrDataAuthorizationGroup view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY QltyMstrDataAuthorizationGroup tq01e qmastauth Authorization Group QM Master Data
KEY Language tq01e spras Off. Language
QltyMstrDataAuthznGroupTxt Authorization Group Text
_QltyMstrDataAuthorizationGrp _QltyMstrDataAuthorizationGrp
_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_QltyMstrDataAuthznGroupTxt.
-- 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_QltyMstrDataAuthznGroupTxt AS
SELECT
  tq01e.qmastauth AS QltyMstrDataAuthorizationGroup,
  tq01e.spras AS Language,
  cast( tq01e.kurztext as vdm_qmastauth_text preserving type ) AS QltyMstrDataAuthznGroupTxt
FROM tq01e
LEFT OUTER JOIN I_QltyMstrDataAuthorizationGrp AS _QltyMstrDataAuthorizationGrp ON QltyMstrDataAuthorizationGroup = _QltyMstrDataAuthorizationGrp.QltyMstrDataAuthorizationGroup  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;