I_SuplrEvalUsrDfndCriteriaTP
User Defined Criteria
I_SuplrEvalUsrDfndCriteriaTP is a Transactional CDS View that provides data about "User Defined Criteria" in SAP S/4HANA. It reads from 1 data source (I_SuplrEvalUserDfndCriteriaCt) and exposes 22 fields with key field SuplrEvalUsrDfndCritraUUID. It has 7 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SuplrEvalUserDfndCriteriaCt | _userDefCriteriaScore | from |
Associations (7)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SuplrEvalUserDefinedCriteria | _SuplrEvalUserDfndCriteria | $projection.SuplrEvalUserDefinedCriteria = _userDefCriteriaScore.SuplrEvalUserDefinedCriteria |
| [1..1] | I_Supplier | _Supplier | $projection.Supplier = _Supplier.Supplier |
| [1..1] | I_SuplrEvalUsrDfndCritraStatus | _StatusVH | $projection.IsDeleted = _StatusVH.SuplrEvalUsrDfndCritraIsDeltd and _StatusVH.Language = $session.system_language |
| [1..1] | I_User | _CreatedBy | $projection.SuplrEvalUsrDfndCritraCrtedBy = _CreatedBy.UserID |
| [1..1] | I_User | _LastChangedBy | $projection.SuplrEvalUsrDfndCritraChgdBy = _LastChangedBy.UserID |
| [1..1] | I_MaterialGroup | _MatGroup | $projection.MaterialGroup != '' and $projection.MaterialGroup = _MatGroup.MaterialGroup |
| [1..1] | I_PurchasingCategory | _PurchasingCategory | $projection.PurchasingCategory != '' and $projection.PurchasingCategory = _PurchasingCategory.PurchasingCategory |
Annotations (21)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMMPURUSRCRTTX | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | User Defined Criteria | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.modelCategory | #BUSINESS_OBJECT | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.transactionalProcessingEnabled | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.writeActivePersistence | MMPUR_ANA_CRTSCR | view | |
| ObjectModel.writeDraftPersistence | MMPURANA_CRTSCRD | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.deleteEnabled | true | view | |
| ObjectModel.updateEnabled | EXTERNAL_CALCULATION | view | |
| ObjectModel.draftEnabled | true | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| ObjectModel.sapObjectNodeType.name | SuplrEvalUserDefinedCriterion | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view |
Fields (22)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SuplrEvalUsrDfndCritraUUID | SuplrEvalUsrDfndCritraUUID | Unique Idenitifier | |
| Supplier | Supplier | Supplier | ||
| MaterialGroup | MaterialGroup | Product Group | ||
| PurchasingCategory | PurchasingCategory | Purchasing Category | ||
| SuplrEvalUserDefinedCriteria | SuplrEvalUserDefinedCriteria | Criteria Identifier | ||
| ValidFrom | ValidFrom | Vers.Valid From | ||
| ValidTo | ValidTo | Vers.Valid To | ||
| SuplrEvalUsrDfndCritraCrtedBy | SuplrEvalUsrDfndCritraCrtedBy | Created By | ||
| SuplrEvalUserDfndCritraCrtnDte | SuplrEvalUserDfndCritraCrtnDte | Created On | ||
| SuplrEvalUsrDfndCritraChgdBy | SuplrEvalUsrDfndCritraChgdBy | Last Updated By | ||
| SuplrEvalUserDfndCritraChgDate | SuplrEvalUserDfndCritraChgDate | Last Updated On | ||
| TotNmbrOfSuplrUsrDfndCritra | TotNmbrOfSuplrUsrDfndCritra | Supplier Count | ||
| IsDeleted | IsDeleted | TRUE | ||
| Comments | Comments | User Notes | ||
| SupplierAccountGroup | SupplierAccountGroup | Account group | ||
| _SuplrEvalUserDfndCriteria | _SuplrEvalUserDfndCriteria | |||
| _StatusVH | _StatusVH | |||
| _CreatedBy | _CreatedBy | |||
| _LastChangedBy | _LastChangedBy | |||
| _MatGroup | _MatGroup | |||
| _PurchasingCategory | _PurchasingCategory | |||
| _Supplier | _Supplier |
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_SuplrEvalUsrDfndCriteriaTP.
-- 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: IMMPURUSRCRTTX
CREATE VIEW I_SuplrEvalUsrDfndCriteriaTP AS
SELECT
SuplrEvalUsrDfndCritraUUID,
Supplier,
MaterialGroup,
PurchasingCategory,
SuplrEvalUserDefinedCriteria,
ValidFrom,
ValidTo,
SuplrEvalUsrDfndCritraCrtedBy,
SuplrEvalUserDfndCritraCrtnDte,
SuplrEvalUsrDfndCritraChgdBy,
SuplrEvalUserDfndCritraChgDate,
TotNmbrOfSuplrUsrDfndCritra,
IsDeleted,
Comments,
SupplierAccountGroup
FROM I_SuplrEvalUserDfndCriteriaCt AS _userDefCriteriaScore
LEFT OUTER JOIN I_SuplrEvalUserDefinedCriteria AS _SuplrEvalUserDfndCriteria ON SuplrEvalUserDefinedCriteria = _userDefCriteriaScore.SuplrEvalUserDefinedCriteria -- association [0..1]
LEFT OUTER JOIN I_Supplier AS _Supplier ON Supplier = _Supplier.Supplier -- association [1..1]
LEFT OUTER JOIN I_SuplrEvalUsrDfndCritraStatus AS _StatusVH ON IsDeleted = _StatusVH.SuplrEvalUsrDfndCritraIsDeltd AND _StatusVH.Language = $session.system_language -- association [1..1]
LEFT OUTER JOIN I_User AS _CreatedBy ON SuplrEvalUsrDfndCritraCrtedBy = _CreatedBy.UserID -- association [1..1]
LEFT OUTER JOIN I_User AS _LastChangedBy ON SuplrEvalUsrDfndCritraChgdBy = _LastChangedBy.UserID -- association [1..1]
LEFT OUTER JOIN I_MaterialGroup AS _MatGroup ON MaterialGroup != '' AND MaterialGroup = _MatGroup.MaterialGroup -- association [1..1]
LEFT OUTER JOIN I_PurchasingCategory AS _PurchasingCategory ON PurchasingCategory != '' AND PurchasingCategory = _PurchasingCategory.PurchasingCategory -- association [1..1]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA