I_BillingDocReqPartner
Billing Document Request Partner
I_BillingDocReqPartner is a Composite CDS View that provides data about "Billing Document Request Partner" in SAP S/4HANA. It reads from 1 data source (I_BillingDocumentPartnerBasic) and exposes 17 fields with key fields BillingDocumentRequest, PartnerFunction. Part of development package VDM_SD_BIL_BDR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BillingDocumentPartnerBasic | Partner | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Billing Document Request Partner | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.sqlViewName | ISDBDRQPT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | 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 | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (17)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BillingDocumentRequest | |||
| KEY | PartnerFunction | |||
| Customer | I_BillingDocumentPartnerBasic | Customer | ||
| Supplier | I_BillingDocumentPartnerBasic | Supplier | ||
| Personnel | I_BillingDocumentPartnerBasic | Personnel | ||
| AddressID | I_BillingDocumentPartnerBasic | AddressID | ||
| ContactPerson | I_BillingDocumentPartnerBasic | ContactPerson | ||
| AddressPersonID | I_BillingDocumentPartnerBasic | AddressPersonID | ||
| ReferenceBusinessPartner | I_BillingDocumentPartnerBasic | ReferenceBusinessPartner | ||
| SDDocPartnerAddressRefType | I_BillingDocumentPartnerBasic | SDDocPartnerAddressRefType | ||
| BPRefAddressIDForDocSpcfcAddr | I_BillingDocumentPartnerBasic | BPRefAddressIDForDocSpcfcAddr | ||
| _BillingDocumentRequest | _BillingDocumentRequest | |||
| _PartnerFunction | I_BillingDocumentPartnerBasic | _PartnerFunction | ||
| _Address | I_BillingDocumentPartnerBasic | _Address | ||
| _BusinessPartnerAddress | I_BillingDocumentPartnerBasic | _BusinessPartnerAddress | ||
| _BPRefAddressForDocSpcfcAddr | I_BillingDocumentPartnerBasic | _BPRefAddressForDocSpcfcAddr | ||
| _DfltAddrRprstn | I_BillingDocumentPartnerBasic | _DfltAddrRprstn |
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Billing Document Request Partner'
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA'),
privilegedAssociations: [ '_Address', '_DfltAddrRprstn' ]
}
@AbapCatalog: {
sqlViewName: 'ISDBDRQPT',
compiler.compareFilter: true,
preserveKey: true
}
@ObjectModel: {
representativeKey: 'PartnerFunction',
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #B,
sizeCategory: #XL
},
supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
}
@VDM.viewType: #COMPOSITE
@Metadata.ignorePropagatedAnnotations: true
define view I_BillingDocReqPartner as select from I_BillingDocumentPartnerBasic as Partner
association[1..1] to I_BillingDocumentRequest as _BillingDocumentRequest on $projection.BillingDocumentRequest = _BillingDocumentRequest.BillingDocumentRequest
{
@Consumption.valueHelpDefinition: [
{ entity: { name: 'I_BillingDocumentRequestStdVH',
element: 'BillingDocumentRequest' }
}]
@ObjectModel.foreignKey.association: '_BillingDocumentRequest'
key cast( Partner.BillingDocument as vbeln_bdr preserving type ) as BillingDocumentRequest,
@ObjectModel.foreignKey.association: '_PartnerFunction'
key cast(Partner.PartnerFunction as parvw_unv preserving type ) as PartnerFunction,
Partner.Customer,
Partner.Supplier,
Partner.Personnel,
@ObjectModel.foreignKey.association: '_Address'
Partner.AddressID,
Partner.ContactPerson,
Partner.AddressPersonID,
Partner.ReferenceBusinessPartner,
Partner.SDDocPartnerAddressRefType,
Partner.BPRefAddressIDForDocSpcfcAddr,
//Association
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
_BillingDocumentRequest,
Partner._PartnerFunction,
Partner._Address,
Partner._BusinessPartnerAddress,
Partner._BPRefAddressForDocSpcfcAddr,
Partner._DfltAddrRprstn
}
where _BillingDocumentRequest.SDDocumentCategory = 'EBDR'
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