E_ContractAccountPartner

DDL: E_CONTRACTACCOUNTPARTNER Type: view_entity EXTENSION Package: FKKV

Contract Account Partner Extension

E_ContractAccountPartner is a Extension CDS View that provides data about "Contract Account Partner Extension" in SAP S/4HANA. It reads from 1 data source (fkkvkp) and exposes 2 fields with key fields ContractAccount, BusinessPartner. Part of development package FKKV.

Data Sources (1)

SourceAliasJoin Type
fkkvkp Persistence from

Annotations (8)

NameValueLevelField
EndUserText.label Contract Account Partner Extension view
VDM.viewType #EXTENSION view
ObjectModel.usageType.serviceQuality #P view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.elementSuffix VKP view
AbapCatalog.extensibility.quota.maximumFields 170 view
AbapCatalog.extensibility.quota.maximumBytes 3400 view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ContractAccount fkkvkp vkont Tech. CtrAcct
KEY BusinessPartner fkkvkp gpart Tech. BPartner

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 E_ContractAccountPartner.
-- 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 E_ContractAccountPartner AS
SELECT
  Persistence.vkont AS ContractAccount,
  Persistence.gpart AS BusinessPartner
FROM fkkvkp AS Persistence
;