I_BillingDocumentPartner
Billing Document Partner
I_BillingDocumentPartner is a Composite CDS View that provides data about "Billing Document Partner" in SAP S/4HANA. It reads from 1 data source (I_BillingDocumentPartnerBasic) and exposes 20 fields with key fields BillingDocument, PartnerFunction. It has 1 association to related views. Part of development package VDM_SD_BIL_BD.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BillingDocumentPartnerBasic | Partner | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_BillingDocument | _BillingDocument | $projection.BillingDocument = _BillingDocument.BillingDocument |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | ISDBILDOCPT | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Billing Document Partner | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | PartnerFunction | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (20)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BillingDocument | I_BillingDocumentPartnerBasic | BillingDocument | |
| KEY | PartnerFunction | I_BillingDocumentPartnerBasic | PartnerFunction | |
| Customer | I_BillingDocumentPartnerBasic | Customer | ||
| Supplier | I_BillingDocumentPartnerBasic | Supplier | ||
| Personnel | I_BillingDocumentPartnerBasic | Personnel | ||
| AddressID | I_BillingDocumentPartnerBasic | AddressID | ||
| AddressObjectType | I_BillingDocumentPartnerBasic | AddressObjectType | ||
| ContactPerson | I_BillingDocumentPartnerBasic | ContactPerson | ||
| AddressPersonID | I_BillingDocumentPartnerBasic | AddressPersonID | ||
| ReferenceBusinessPartner | I_BillingDocumentPartnerBasic | ReferenceBusinessPartner | ||
| SDDocPartnerAddressRefType | I_BillingDocumentPartnerBasic | SDDocPartnerAddressRefType | ||
| VATRegistration | I_BillingDocumentPartnerBasic | VATRegistration | ||
| UnloadingPointName | I_BillingDocumentPartnerBasic | UnloadingPointName | ||
| BPRefAddressIDForDocSpcfcAddr | I_BillingDocumentPartnerBasic | BPRefAddressIDForDocSpcfcAddr | ||
| _BillingDocument | _BillingDocument | |||
| _PartnerFunction | I_BillingDocumentPartnerBasic | _PartnerFunction | ||
| _Address | I_BillingDocumentPartnerBasic | _Address | ||
| _BusinessPartnerAddress | I_BillingDocumentPartnerBasic | _BusinessPartnerAddress | ||
| _DfltAddrRprstn | I_BillingDocumentPartnerBasic | _DfltAddrRprstn | ||
| _BPRefAddressForDocSpcfcAddr | I_BillingDocumentPartnerBasic | _BPRefAddressForDocSpcfcAddr |
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'ISDBILDOCPT'
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED
@AccessControl.privilegedAssociations: [ '_Address', '_DfltAddrRprstn' ]
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Billing Document Partner'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.representativeKey: 'PartnerFunction'
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel.usageType: { dataClass: #TRANSACTIONAL, serviceQuality: #B, sizeCategory: #XL }
@VDM.viewType: #COMPOSITE
define view I_BillingDocumentPartner
as select from I_BillingDocumentPartnerBasic as Partner
association [1..1] to I_BillingDocument as _BillingDocument on $projection.BillingDocument = _BillingDocument.BillingDocument
{
// --[ GENERATED:012:GlBfhyJl7kY4v5RWfCiSf0
@Consumption.valueHelpDefinition: [ { entity: { name: 'I_BillingDocumentStdVH', element: 'BillingDocument' } } ]
// ]--GENERATED
@ObjectModel.foreignKey.association: '_BillingDocument'
key Partner.BillingDocument,
@ObjectModel.foreignKey.association: '_PartnerFunction'
key Partner.PartnerFunction,
Partner.Customer,
Partner.Supplier,
Partner.Personnel,
@ObjectModel.foreignKey.association: '_Address'
Partner.AddressID,
Partner.AddressObjectType,
Partner.ContactPerson,
Partner.AddressPersonID,
Partner.ReferenceBusinessPartner,
Partner.SDDocPartnerAddressRefType,
Partner.VATRegistration,
Partner.UnloadingPointName,
Partner.BPRefAddressIDForDocSpcfcAddr,
// Association
@ObjectModel.association.type: [ #TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT ]
_BillingDocument,
Partner._PartnerFunction,
Partner._Address,
Partner._BusinessPartnerAddress,
Partner._DfltAddrRprstn,
Partner._BPRefAddressForDocSpcfcAddr
}
where _BillingDocument.SDDocumentCategory = 'M' // Invoice
or _BillingDocument.SDDocumentCategory = 'N' // Invoice Canceled
or _BillingDocument.SDDocumentCategory = 'O' // Credit Memo
or _BillingDocument.SDDocumentCategory = 'P' // Debit Memo
or _BillingDocument.SDDocumentCategory = 'S' // Credit Memo Canceled
or _BillingDocument.SDDocumentCategory = 'U' // Pro Forma Invoice
or _BillingDocument.SDDocumentCategory = '5' // Intercompany Invoice
or _BillingDocument.SDDocumentCategory = '6' // Intercompany Credit Memo
or _BillingDocument.SDDocumentCategory = 'DPRQ' // Down Payment Request
or _BillingDocument.SDDocumentCategory = 'DPCC' // Down Payment Cancellation
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA