A_MaintNotifDetectionGroupCode

DDL: A_MAINTNOTIFDETECTIONGROUPCODE Type: view_entity COMPOSITE

Assign Method to Group

A_MaintNotifDetectionGroupCode is a Composite CDS View that provides data about "Assign Method to Group" in SAP S/4HANA. It reads from 1 data source (R_MaintNotifDetectionGrpCodeTP) and exposes 4 fields with key fields MaintNotifDetectionGroup, MaintNotifDetectionMethod.

Data Sources (1)

SourceAliasJoin Type
R_MaintNotifDetectionGrpCodeTP R_MaintNotifDetectionGrpCodeTP from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Assign Method to Group view
OData.entityType.name MaintNotifDetGroupCode_Type view
OData.entitySet.name MaintNotifDetGroupCode view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaintNotifDetectionGroup MaintNotifDetectionGroup Detection Meth Grp
KEY MaintNotifDetectionMethod MaintNotifDetectionMethod Detection Meth
MaintNotifDetectionGroupText MaintNotifDetectionGroupText
MaintNotifDetectionMethodText MaintNotifDetectionMethodText

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 A_MaintNotifDetectionGroupCode.
-- 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 A_MaintNotifDetectionGroupCode AS
SELECT
  MaintNotifDetectionGroup,
  MaintNotifDetectionMethod,
  MaintNotifDetectionGroupText,
  MaintNotifDetectionMethodText
FROM R_MaintNotifDetectionGrpCodeTP
;