I_CmplRqRsltSubLiChkExmpTP

DDL: I_CMPLRQRSLTSUBLICHKEXMPTP Type: view TRANSACTIONAL

CmplRqRslt Exemption Assignment

I_CmplRqRsltSubLiChkExmpTP is a Transactional CDS View that provides data about "CmplRqRslt Exemption Assignment" in SAP S/4HANA. It reads from 1 data source (I_CmplRqRsltExemption) and exposes 8 fields with key field CmplRqRsltExmpAssgmtUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CmplRqRsltExemption I_CmplRqRsltExemption from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_CmplRqRsltSubstListChkTP _CmplRqRslt $projection.CmplRqRsltUUID = _CmplRqRslt.CmplRqRsltUUID

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName ICRRSUBCHKEXTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label CmplRqRslt Exemption Assignment view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.modelCategory #BUSINESS_OBJECT view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.writeDraftPersistence ehpmaw_crr_slc_e view
ObjectModel.writeActivePersistence ehfndv_crr_exm view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.entityChangeStateId LastChangeDateTime view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY CmplRqRsltExmpAssgmtUUID CmplRqRsltExmpAssgmtUUID Exemption Assignment UUID
CmplRqRsltUUID CmplRqRsltUUID SDS Assessment
CmplRqVersExemption CmplRqVersExemption Exemption
CreationDateTime CreationDateTime Timestamp
CreatedByUser CreatedByUser User Name
LastChangeDateTime LastChangeDateTime Timestamp
LastChangedByUser LastChangedByUser User Name
_CmplRqRslt _CmplRqRslt

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_CmplRqRsltSubLiChkExmpTP.
-- 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_CmplRqRsltSubLiChkExmpTP AS
SELECT
  CmplRqRsltExmpAssgmtUUID,
  CmplRqRsltUUID,
  CmplRqVersExemption,
  CreationDateTime,
  CreatedByUser,
  LastChangeDateTime,
  LastChangedByUser
FROM I_CmplRqRsltExemption
LEFT OUTER JOIN I_CmplRqRsltSubstListChkTP AS _CmplRqRslt ON CmplRqRsltUUID = _CmplRqRslt.CmplRqRsltUUID  -- association [1..1]
;