APS_BP_DDL
Business Partner
APS_BP_DDL is a CDS View that provides data about "Business Partner" in SAP S/4HANA. It reads from 1 data source (but000) and exposes 6 fields with key field BusinessPartner. Part of development package SR_APS_IAM_COMMON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| but000 | but000 | from |
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientDependent | true | view | |
| AbapCatalog.sqlViewName | APS_BP | view | |
| EndUserText.label | Business Partner | view |
@ClientDependent: true
@AbapCatalog.sqlViewName: 'APS_BP'
@EndUserText.label: 'Business Partner'
// SAP_BASIS representation of the VDM CDS view "I_BusinessPartner".
define view APS_BP_DDL as select from but000
{
// Fields valid for all types of business partner
key but000.partner as BusinessPartner
, but000.type as BusinessPartnerCategory
, but000.partner_guid as BusinessPartnerUUID
, but000.name1_text as BusinessPartnerName
// Fields valid only for but000.type = '1' -- Person
, but000.name_first as FirstName
, but000.name_last as LastName
}
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