I_PurchasingSourceListItemTP

DDL: I_PURCHASINGSOURCELISTITEMTP Type: view_entity TRANSACTIONAL

Source List Item - TP

I_PurchasingSourceListItemTP is a Transactional CDS View that provides data about "Source List Item - TP" in SAP S/4HANA. It reads from 1 data source (R_PurchasingSourceListItemTP) and exposes 48 fields with key fields SourceListRecord, Material, Plant.

Data Sources (1)

SourceAliasJoin Type
R_PurchasingSourceListItemTP R_PurchasingSourceListItemTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Source List Item - TP view
AccessControl.authorizationCheck #CHECK view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (48)

KeyFieldSource TableSource FieldDescription
KEY SourceListRecord SourceListRecord Number
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
MaterialForEdit MaterialForEdit Product
PlantForEdit PlantForEdit Plant ID
SourceListRecordForEdit SourceListRecordForEdit Number
CreationDate CreationDate Time Stamp
CreatedByUserName CreatedByUserName Person Resp.
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
Supplier Supplier Supplier
OutlineAgreement OutlineAgreement
PurchaseOutlineAgreement PurchaseOutlineAgreement Agreement
PurchaseOutlineAgreementItem PurchaseOutlineAgreementItem Item
PurchasingOrganization PurchasingOrganization Purchasing Organization
SupplyingPlant SupplyingPlant Supplying Plant
SupplierIsFixed SupplierIsFixed Fixed Supplier
PurOutlineAgreementIsFixed PurOutlineAgreementIsFixed Fixed Agmt Item
IssgPlantIsFixed IssgPlantIsFixed Fixed iss.plant
ManufacturerMaterial ManufacturerMaterial MPN: Material
SourceOfSupplyIsBlocked SourceOfSupplyIsBlocked Blocked
PurchasingDocumentCategory PurchasingDocumentCategory Doc. Category
SourceListRecordCategory SourceListRecordCategory Control
MRPSourcingControl MRPSourcingControl MRP
MRPArea MRPArea MRP Area
OrderQuantityUnit OrderQuantityUnit Sales Unit
OriginSystem OriginSystem LogSys: Formula
InventorySpecialStockType InventorySpecialStockType Special Stock Type
SourceOfSupplyIsFixed SourceOfSupplyIsFixed Indicator
SourceListStatus SourceListStatus Source List Status(Fixed/Blocked)
SourceListStatusCriticality SourceListStatusCriticality
_PurchaseContract _PurchaseContract
_PurchaseContractItem _PurchaseContractItem
_LogicalSystem _LogicalSystem
_PurchasingOrganization _PurchasingOrganization
_UnitOfMeasure _UnitOfMeasure
SupplierName SupplierName Supplier Name
PlantName PlantName Plant Name
MaterialName MaterialName Material Description
SupplyingPlantName SupplyingPlantName Plant Name
LastChangeDateTime LastChangeDateTime Timestamp
_MaterialPlanningUsage _MaterialPlanningUsage
_PurchasingSourceStatus _PurchasingSourceStatus
_MaterialText _MaterialText
_Supplier _Supplier
_Material _Material
_Plant _Plant
_SupplyingPlant _SupplyingPlant

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_PurchasingSourceListItemTP.
-- 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_PurchasingSourceListItemTP AS
SELECT
  SourceListRecord,
  Material,
  Plant,
  MaterialForEdit,
  PlantForEdit,
  SourceListRecordForEdit,
  CreationDate,
  CreatedByUserName,
  ValidityStartDate,
  ValidityEndDate,
  Supplier,
  OutlineAgreement,
  PurchaseOutlineAgreement,
  PurchaseOutlineAgreementItem,
  PurchasingOrganization,
  SupplyingPlant,
  SupplierIsFixed,
  PurOutlineAgreementIsFixed,
  IssgPlantIsFixed,
  ManufacturerMaterial,
  SourceOfSupplyIsBlocked,
  PurchasingDocumentCategory,
  SourceListRecordCategory,
  MRPSourcingControl,
  MRPArea,
  OrderQuantityUnit,
  OriginSystem,
  InventorySpecialStockType,
  SourceOfSupplyIsFixed,
  SourceListStatus,
  SourceListStatusCriticality,
  SupplierName,
  PlantName,
  MaterialName,
  SupplyingPlantName,
  LastChangeDateTime
FROM R_PurchasingSourceListItemTP
;