P_BPNextDefaultAddress_2
XXDEFAULT Addr Valid in Nearest Future
P_BPNextDefaultAddress_2 is a Composite CDS View that provides data about "XXDEFAULT Addr Valid in Nearest Future" in SAP S/4HANA. It reads from 1 data source (I_Businesspartneraddressusage) and exposes 2 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Businesspartneraddressusage | I_Businesspartneraddressusage | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PBPNEXTDFLTADDR2 | view | |
| EndUserText.label | XXDEFAULT Addr Valid in Nearest Future | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.preserveKey | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| BusinessPartner | BusinessPartner | |||
| ValidityEndDateTime |
@AbapCatalog.sqlViewName: 'PBPNEXTDFLTADDR2'
@EndUserText.label: 'XXDEFAULT Addr Valid in Nearest Future'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@VDM.private: true
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey:true
define view P_BPNextDefaultAddress_2
as select from I_Businesspartneraddressusage
{
BusinessPartner,
min(ValidityEndDate) as ValidityEndDateTime
}
where AddressUsage = 'XXDEFAULT'
and ValidityEndDate > tstmp_current_utctimestamp()
group by BusinessPartner
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