R_ConAcctPrtnInvcgChrgDscTP

DDL: R_CONACCTPRTNINVCGCHRGDSCTP Type: view_entity TRANSACTIONAL

Contr Acct Prtn Invcg Chrg and Disc - TP

R_ConAcctPrtnInvcgChrgDscTP is a Transactional CDS View that provides data about "Contr Acct Prtn Invcg Chrg and Disc - TP" in SAP S/4HANA. It reads from 1 data source (I_ConAcctPrtnInvcgChrgAndDisc) and exposes 11 fields with key fields ContractAccount, BusinessPartner, CAInvcgChargeAndDiscountKey, CAInvcgChrgAndDiscKeyStartDate. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ConAcctPrtnInvcgChrgAndDisc I_ConAcctPrtnInvcgChrgAndDisc from

Associations (1)

CardinalityTargetAliasCondition
[1..1] R_ContractAccountTP _ContractAccount _ContractAccount.ContractAccount = $projection.ContractAccount

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Contr Acct Prtn Invcg Chrg and Disc - TP view
ObjectModel.modelingPattern #NONE view
ObjectModel.representativeKey CAInvcgChargeAndDiscountKey view
ObjectModel.sapObjectNodeType.name ContrAcctPrtnInvcgChrgAndDisc view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY ContractAccount ContractAccount Contract Acct
KEY BusinessPartner BusinessPartner Issuing Authority
KEY CAInvcgChargeAndDiscountKey CAInvcgChargeAndDiscountKey Chrge/Disc. Key
KEY CAInvcgChrgAndDiscKeyStartDate CAInvcgChrgAndDiscKeyStartDate Valid From
CAInvcgChrgAndDiscKeyEndDate CAInvcgChrgAndDiscKeyEndDate Valid To
CAApplicationArea CAApplicationArea ApplicationArea
_ContractAccount _ContractAccount
_ContractAccountPartner _ContractAccountPartner
_BusinessPartner _BusinessPartner
_CAApplicationArea _CAApplicationArea
_CAInvcgChrgAndDiscKey _CAInvcgChrgAndDiscKey

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 R_ConAcctPrtnInvcgChrgDscTP.
-- 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 R_ConAcctPrtnInvcgChrgDscTP AS
SELECT
  ContractAccount,
  BusinessPartner,
  CAInvcgChargeAndDiscountKey,
  CAInvcgChrgAndDiscKeyStartDate,
  CAInvcgChrgAndDiscKeyEndDate,
  CAApplicationArea
FROM I_ConAcctPrtnInvcgChrgAndDisc
LEFT OUTER JOIN R_ContractAccountTP AS _ContractAccount ON _ContractAccount.ContractAccount = ContractAccount  -- association [1..1]
;