A_CFinRpldSalesDocPartner

DDL: A_CFINRPLDSALESDOCPARTNER Type: view_entity CONSUMPTION

CFin Rpld Sales Document Partner (API)

A_CFinRpldSalesDocPartner is a Consumption CDS View that provides data about "CFin Rpld Sales Document Partner (API)" in SAP S/4HANA. It reads from 1 data source (cfin_avso_parte) and exposes 6 fields with key fields SourceSystemLogicalSystem, CFinReplicatedSalesDocument, PartnerFunction.

Data Sources (1)

SourceAliasJoin Type
cfin_avso_parte cfin_avso_parte from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label CFin Rpld Sales Document Partner (API) view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #CONSUMPTION view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.query.implementedBy ABAP:CL_FINS_CFIN_AV_EX_QRY_NO_IMPL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SourceSystemLogicalSystem sourcesystemlogicalsystem Sender Log Sys.
KEY CFinReplicatedSalesDocument cfinreplicatedsalesdocument Central Finance Repl. Sales Document
KEY PartnerFunction Partner Functn
LastChangeDateTime lastchangedatetime Timestamp
Customer customer Sold-to Party
_CFinRpldSalesDocument _CFinRpldSalesDocument

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 A_CFinRpldSalesDocPartner.
-- 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 A_CFinRpldSalesDocPartner AS
SELECT
  SourceSystemLogicalSystem,
  CFinReplicatedSalesDocument,
  cast( partnerfunction as parvw_unv preserving type ) AS PartnerFunction,
  LastChangeDateTime,
  Customer
FROM cfin_avso_parte
;