I_StockTransportOrderPartnerTP

DDL: I_STOCKTRANSPORTORDERPARTNERTP Type: view_entity TRANSACTIONAL Package: RAP_MM_STO_API

Partner for Stock Transport Order - TP

I_StockTransportOrderPartnerTP is a Transactional CDS View that provides data about "Partner for Stock Transport Order - TP" in SAP S/4HANA. It reads from 1 data source (R_StockTransportOrderPartnerTP) and exposes 20 fields with key fields StockTransportOrder, PartnerFunction. Part of development package RAP_MM_STO_API.

Data Sources (1)

SourceAliasJoin Type
R_StockTransportOrderPartnerTP R_StockTransportOrderPartnerTP projection

Annotations (10)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Partner for Stock Transport Order - TP view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY StockTransportOrder StockTransportOrder STO Number
KEY PartnerFunction PartnerFunction Partner Functn
SupplierSubrange SupplierSubrange Suppl. Subrange
Plant Plant Valuation Area
PurchasingOrganization PurchasingOrganization Purchasing Organization
PartnerCounter PartnerCounter Partner counter
CreatedByUser CreatedByUser User Name
CreationDate CreationDate Time Stamp
PurchasingDocumentPartnerType PurchasingDocumentPartnerType Partner Type
Supplier Supplier Supplier
SupplierHierarchyCategory SupplierHierarchyCategory Hierarchy Cat.
SupplierContact SupplierContact Contact Person
PersonWorkAgreement PersonWorkAgreement Personnel No.
_PartnerFunction _PartnerFunction
_PartnerFunctionText _PartnerFunctionText
_PersonWorkAgreement _PersonWorkAgreement
_Plant _Plant
_PurchasingOrganization _PurchasingOrganization
_Supplier _Supplier
_SupplierContact _SupplierContact

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_StockTransportOrderPartnerTP.
-- 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_StockTransportOrderPartnerTP AS
SELECT
  StockTransportOrder,
  PartnerFunction,
  SupplierSubrange,
  Plant,
  PurchasingOrganization,
  PartnerCounter,
  CreatedByUser,
  CreationDate,
  PurchasingDocumentPartnerType,
  Supplier,
  SupplierHierarchyCategory,
  SupplierContact,
  PersonWorkAgreement
FROM R_StockTransportOrderPartnerTP
;