I_CmplncRqmtAuthznFields

DDL: I_CMPLNCRQMTAUTHZNFIELDS SQL: ICPLRQAUTHFLDS Type: view COMPOSITE

Cmplnc Requirement Authorization Fields

I_CmplncRqmtAuthznFields (Composite)

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

Cross Applications

I_CmplncRqmtAuthznFields is a Composite CDS View that provides data about "Cmplnc Requirement Authorization Fields" in SAP S/4HANA. It reads from 2 data sources (I_CmplRqVersEnhanced, P_CmplncRqmtRelevantRev) and exposes 5 fields with key field CmplRqUUID.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentEHS-SUS-CI
CapabilitiesAssociation Target for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (2)

SourceAliasJoin Type
I_CmplRqVersEnhanced I_CmplRqVersEnhanced inner
P_CmplncRqmtRelevantRev P_CmplncRqmtRelevantRev from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICPLRQAUTHFLDS view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Cmplnc Requirement Authorization Fields view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #NONE view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CmplRqUUID I_CmplRqVersEnhanced CmplRqUUID Compliance Requirement
EHSTaskHostObjectInstance Instance Ident. in BOR Compat. Persistent Object References
CmplRqVersUUID I_CmplRqVersEnhanced CmplRqVersUUID Compliance Requirement UUID
CmplRqDomain Compliance Requirement Domain
_CmplRqVersAppltyArea I_CmplRqVersEnhanced _CmplRqVersAppltyArea

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_CmplncRqmtAuthznFields.
-- 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: ICPLRQAUTHFLDS

CREATE VIEW I_CmplncRqmtAuthznFields AS
SELECT
  I_CmplRqVersEnhanced.CmplRqUUID AS CmplRqUUID,
  cast(bintohex(I_CmplRqVersEnhanced.CmplRqUUID) as sibfboriid) AS EHSTaskHostObjectInstance,
  I_CmplRqVersEnhanced.CmplRqVersUUID AS CmplRqVersUUID,
  cast( I_CmplRqVersEnhanced.CmplRqDomain as ehfnd_req_domain_nce preserving type ) AS CmplRqDomain,
  I_CmplRqVersEnhanced._CmplRqVersAppltyArea AS _CmplRqVersAppltyArea
FROM P_CmplncRqmtRelevantRev
INNER JOIN I_CmplRqVersEnhanced ON /* join condition not captured in parsed metadata */
;