I_AddressObjectTypeText
Address Object Type - Text
I_AddressObjectTypeText is a Basic CDS View that provides data about "Address Object Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields AddressObjectType, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Address Object Type - Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.technicalName | IADDROBJTYPETXT | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AddressObjectType | |||
| KEY | Language | ddlanguage | ||
| AddressObjectTypeText | ddtext |
@AccessControl.authorizationCheck:#NOT_REQUIRED
@EndUserText.label: 'Address Object Type - Text'
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'IADDROBJTYPETXT'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE]
@Search.searchable: true
@VDM.viewType: #BASIC
define view entity I_AddressObjectTypeText
as select from dd07t
{
key cast ( domvalue_l as ad_adrtype ) as AddressObjectType,
@Semantics: { language: true }
key ddlanguage as Language,
@Semantics.text: true
@Search.defaultSearchElement: true
ddtext as AddressObjectTypeText
}
where
as4local = 'A'
and domname = 'AD_ADRTYPE'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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