I_PurContrItmCndnValdtyTP_2

DDL: I_PURCONTRITMCNDNVALDTYTP_2 SQL: ICTRCONDVALTP Type: view TRANSACTIONAL

Transactional entity for condition validity

I_PurContrItmCndnValdtyTP_2 is a Transactional CDS View that provides data about "Transactional entity for condition validity" in SAP S/4HANA. It reads from 1 data source (I_PurContrItemCndnValdty) and exposes 13 fields with key fields PurchaseContract, PurchaseContractItem, ConditionRecord, ConditionValidityEndDate. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_PurContrItemCndnValdty I_PurContrItemCndnValdty from

Associations (3)

CardinalityTargetAliasCondition
[1..*] I_PurContrItmCndnAmountTP_2 _PurContrItmCndnAmountTP $projection.PurchaseContract = _PurContrItmCndnAmountTP.PurchaseContract and $projection.PurchaseContractItem = _PurContrItmCndnAmountTP.PurchaseContractItem and $projection.ConditionRecord = _PurContrItmCndnAmountTP.ConditionRecord and $projection.ConditionValidityEndDate = _PurContrItmCndnAmountTP.ConditionValidityEndDate
[1..1] I_PurchaseContractItemWD _PurchaseContractItemTP $projection.PurchaseContract = _PurchaseContractItemTP.PurchaseContract and $projection.PurchaseContractItem = _PurchaseContractItemTP.PurchaseContractItem
[1..1] I_PurchaseContractWD _PurchaseContractTP _PurchaseContractTP.PurchaseContract = $projection.PurchaseContract

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ICTRCONDVALTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.writeDraftPersistence CTRICNDVAL_D view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #TRANSACTIONAL view
EndUserText.label Transactional entity for condition validity view
AccessControl.personalData.blocking #REQUIRED view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY PurchaseContract PurchaseContract Purchasing Doc.
KEY PurchaseContractItem PurchaseContractItem Item
KEY ConditionRecord ConditionRecord Cond.Record No.
KEY ConditionValidityEndDate ConditionValidityEndDate Valid To
ConditionApplication ConditionApplication Application
ConditionType ConditionType Condition type
ConditionIsDeleted ConditionIsDeleted Deletion Indic.
Plant Plant Valuation Area
ConditionValidityStartDate ConditionValidityStartDate Valid From
PurchasingOrganization _PurchaseContractTP PurchasingOrganization Purchasing Organization
_PurContrItmCndnAmountTP _PurContrItmCndnAmountTP
_PurchaseContractItemTP _PurchaseContractItemTP
_PurchaseContractTP _PurchaseContractTP

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_PurContrItmCndnValdtyTP_2.
-- 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: ICTRCONDVALTP

CREATE VIEW I_PurContrItmCndnValdtyTP_2 AS
SELECT
  PurchaseContract,
  PurchaseContractItem,
  ConditionRecord,
  ConditionValidityEndDate,
  ConditionApplication,
  ConditionType,
  ConditionIsDeleted,
  Plant,
  ConditionValidityStartDate,
  _PurchaseContractTP.PurchasingOrganization AS PurchasingOrganization
FROM I_PurContrItemCndnValdty
LEFT OUTER JOIN I_PurContrItmCndnAmountTP_2 AS _PurContrItmCndnAmountTP ON PurchaseContract = _PurContrItmCndnAmountTP.PurchaseContract AND PurchaseContractItem = _PurContrItmCndnAmountTP.PurchaseContractItem AND ConditionRecord = _PurContrItmCndnAmountTP.ConditionRecord AND ConditionValidityEndDate = _PurContrItmCndnAmountTP.ConditionValidityEndDate  -- association [1..*]
LEFT OUTER JOIN I_PurchaseContractItemWD AS _PurchaseContractItemTP ON PurchaseContract = _PurchaseContractItemTP.PurchaseContract AND PurchaseContractItem = _PurchaseContractItemTP.PurchaseContractItem  -- association [1..1]
LEFT OUTER JOIN I_PurchaseContractWD AS _PurchaseContractTP ON _PurchaseContractTP.PurchaseContract = PurchaseContract  -- association [1..1]
;