I_FMEAAuthorizationGroupT

DDL: I_FMEAAUTHORIZATIONGROUPT SQL: IFMEAAUTHGT Type: view BASIC

Text for FMEA Auth. Group

I_FMEAAuthorizationGroupT is a Basic CDS View that provides data about "Text for FMEA Auth. Group" in SAP S/4HANA. It reads from 1 data source (plmc_autht) and exposes 4 fields with key fields FMEAAuthorizationGroup, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
plmc_autht plmc_autht from

Associations (1)

CardinalityTargetAliasCondition
[1] I_FMEAAuthorizationGroup _FMEAAuthorizationGroup $projection.FMEAAuthorizationGroup = _FMEAAuthorizationGroup.FMEAAuthorizationGroup

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IFMEAAUTHGT view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text for FMEA Auth. Group view
ObjectModel.representativeKey FMEAAuthorizationGroup view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FMEAAuthorizationGroup auth_group AuthorizGroup
KEY Language langu Primary lang.
FMEAAuthorizationGroupText auth_group_text Authoriz. Group
_FMEAAuthorizationGroup _FMEAAuthorizationGroup

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_FMEAAuthorizationGroupT.
-- 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: IFMEAAUTHGT

CREATE VIEW I_FMEAAuthorizationGroupT AS
SELECT
  auth_group AS FMEAAuthorizationGroup,
  langu AS Language,
  auth_group_text AS FMEAAuthorizationGroupText
FROM plmc_autht
LEFT OUTER JOIN I_FMEAAuthorizationGroup AS _FMEAAuthorizationGroup ON FMEAAuthorizationGroup = _FMEAAuthorizationGroup.FMEAAuthorizationGroup  -- association [1]
;