I_PersonFormOfAddrT
Form of Address
I_PersonFormOfAddrT is a Basic CDS View that provides data about "Form of Address" in SAP S/4HANA. It reads from 1 data source (tsad3t) and exposes 4 fields with key fields FormOfAddress, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tsad3t | tsad3t | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPFORMOFADDRT | view | |
| EndUserText.label | Form of Address | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FormOfAddress | title | ||
| KEY | Language | langu | ||
| FormOfAddressName | title_medi | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IPFORMOFADDRT'
@EndUserText.label: 'Form of Address'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
define view I_PersonFormOfAddrT
as select from tsad3t
association[0..1] to I_Language as _Language
on langu = _Language.Language
{
// @EndUserText.label: 'Form of Address'
key title as FormOfAddress,
@Semantics.language
key langu as Language,
@Semantics.text
title_medi as FormOfAddressName,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TSAD3T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"VERSION":0
}
}*/
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