C_PPSEntityProfileItemTP
Entity Profile Item - TP
C_PPSEntityProfileItemTP is a Consumption CDS View that provides data about "Entity Profile Item - TP" in SAP S/4HANA. It reads from 1 data source (R_PPSEntityProfileItemTP) and exposes 40 fields with key field PPSEntityProfileItemUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_PPSEntityProfileItemTP | R_PPSEntityProfileItemTP | projection |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| VDM.viewType | #CONSUMPTION | view | |
| EndUserText.label | Entity Profile Item - TP | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Metadata.allowExtensions | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| AbapCatalog.extensibility.extensible | true | view | |
| AbapCatalog.extensibility.allowNewDatasources | false | view | |
| AbapCatalog.extensibility.elementSuffix | PFI | view | |
| AbapCatalog.extensibility.quota.maximumFields | 170 | view | |
| AbapCatalog.extensibility.quota.maximumBytes | 1700 | view | |
| ObjectModel.sapObjectNodeType.name | PPSEntityProfileItem | view |
Fields (40)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PPSEntityProfileItemUUID | PPSEntityProfileItemUUID | ||
| PPSEntityProfileUUID | PPSEntityProfileUUID | |||
| Plant | Plant | Valuation Area | ||
| PlantName | _Plant | PlantName | Plant Name | |
| PurchasingOrganization | PurchasingOrganization | Purchasing Organization | ||
| PurchasingOrganizationName | _PurchasingOrganization | PurchasingOrganizationName | Purch. Org. Name | |
| PurchasingGroup | PurchasingGroup | Purchasing Group | ||
| PurchasingGroupName | _PurchasingGroup | PurchasingGroupName | Purchasing Grp. Name | |
| AccountAssignmentCategory | AccountAssignmentCategory | Acct Assgmt Cat | ||
| AcctAssignmentCategoryName | _AcctAssgmtCategory | AcctAssignmentCategoryName | Description | |
| MasterFixedAsset | MasterFixedAsset | Fixed Asset | ||
| FixedAsset | FixedAsset | Sub-number | ||
| CompanyCode | CompanyCode | Receiver Company Code | ||
| CompanyCodeName | _CompanyCode | CompanyCodeName | Company Name | |
| CostCenter | CostCenter | Cost Center | ||
| FundsCenter | FundsCenter | Funds Center | ||
| GrantID | GrantID | Sender Grant | ||
| GrantName | _Grant | GrantName | ||
| ProjectNetwork | ProjectNetwork | Order | ||
| ProjectNetworkDescription | _ProjectNetwork | ProjectNetworkDescription | Network Name | |
| Currency | Currency | Valuation Crcy | ||
| CurrencyName | _Currency | CurrencyName | ||
| GoodsMovementType | GoodsMovementType | Movement Type | ||
| GoodsMovementTypeName | _GoodsMovementType | GoodsMovementTypeName | ||
| PPSPricingArrangementType | PPSPricingArrangementType | |||
| PPSPricingArrangementTypeText | _PrcgArrgmtType | PPSPricingArrangementTypeText | ||
| PPSDeliveryToleranceKey | PPSDeliveryToleranceKey | Tolerance Key | ||
| PPSDeliveryToleranceKeyText | _ToleranceGroup | PPSDeliveryToleranceKeyText | ||
| WBSElement | WBSElement | WBS Internal ID | ||
| PPSWarrantLimit | PPSWarrantLimit | |||
| PPSWarrantLimitDescription | _WarrantLimit | PPSWarrantLimitDescription | ||
| PPSEntityProfileItemFieldName | PPSEntityProfileItemFieldName | |||
| PPSEntyProfItemFieldNameDesc | _ProfileItemFieldName | PPSEntyProfItemFieldNameDesc | ||
| PPSEntityProfileItemFieldValue | PPSEntityProfileItemFieldValue | Field_value | ||
| PPSEntityAttributeIsExcluded | PPSEntityAttributeIsExcluded | |||
| PPSEntityAttributeIsDefault | PPSEntityAttributeIsDefault | |||
| CreatedAtDateTime | CreatedAtDateTime | Created On | ||
| LastChangedAtDateTime | LastChangedAtDateTime | Changed On | ||
| CreatedByUser | CreatedByUser | User Name | ||
| ChangedBy | ChangedBy | User Name |
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 C_PPSEntityProfileItemTP.
-- 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 C_PPSEntityProfileItemTP AS
SELECT
PPSEntityProfileItemUUID,
PPSEntityProfileUUID,
Plant,
_Plant.PlantName AS PlantName,
PurchasingOrganization,
_PurchasingOrganization.PurchasingOrganizationName AS PurchasingOrganizationName,
PurchasingGroup,
_PurchasingGroup.PurchasingGroupName AS PurchasingGroupName,
AccountAssignmentCategory,
_AcctAssgmtCategory.AcctAssignmentCategoryName AS AcctAssignmentCategoryName,
MasterFixedAsset,
FixedAsset,
CompanyCode,
_CompanyCode.CompanyCodeName AS CompanyCodeName,
CostCenter,
FundsCenter,
GrantID,
_Grant.GrantName AS GrantName,
ProjectNetwork,
_ProjectNetwork.ProjectNetworkDescription AS ProjectNetworkDescription,
Currency,
_Currency.CurrencyName AS CurrencyName,
GoodsMovementType,
_GoodsMovementType.GoodsMovementTypeName AS GoodsMovementTypeName,
PPSPricingArrangementType,
_PrcgArrgmtType.PPSPricingArrangementTypeText AS PPSPricingArrangementTypeText,
PPSDeliveryToleranceKey,
_ToleranceGroup.PPSDeliveryToleranceKeyText AS PPSDeliveryToleranceKeyText,
WBSElement,
PPSWarrantLimit,
_WarrantLimit.PPSWarrantLimitDescription AS PPSWarrantLimitDescription,
PPSEntityProfileItemFieldName,
_ProfileItemFieldName.PPSEntyProfItemFieldNameDesc AS PPSEntyProfItemFieldNameDesc,
PPSEntityProfileItemFieldValue,
PPSEntityAttributeIsExcluded,
PPSEntityAttributeIsDefault,
CreatedAtDateTime,
LastChangedAtDateTime,
CreatedByUser,
ChangedBy
FROM R_PPSEntityProfileItemTP
;
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