I_BPAddressCheckStatusText
Address Check Status - Text
I_BPAddressCheckStatusText is a Basic CDS View that provides data about "Address Check Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields CityFileTestStatus, Language. Part of development package MDC_BUPA_GOV_BO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | CityFileTestStatus | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| EndUserText.label | Address Check Status - Text | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CityFileTestStatus | |||
| KEY | Language | ddlanguage | ||
| CityFileTestStatusName | ddtext | Description | ||
| DomainValue | domvalue_l |
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@Search.searchable: true
@ObjectModel.representativeKey: 'CityFileTestStatus'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@EndUserText.label: 'Address Check Status - Text'
define view entity I_BPAddressCheckStatusText
as select from dd07t
{
key cast ( substring( domvalue_l, 1, 1 ) as ad_checkst ) as CityFileTestStatus,
@Semantics.language: true
key ddlanguage as Language,
@Semantics.text: true
@EndUserText.label: 'Description'
ddtext as CityFileTestStatusName,
@Search.defaultSearchElement: true
@Consumption.hidden: true
domvalue_l as DomainValue
}
where
domname = 'ADDRESS_VALIDATION_STATUS'
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