I_PersonFormOfAddress
Form of Address
I_PersonFormOfAddress is a Basic CDS View that provides data about "Form of Address" in SAP S/4HANA. It reads from 1 data source (tsad3) and exposes 3 fields with key field FormOfAddress.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tsad3 | tsad3 | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPFORMOFADDRESS | 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 | #M | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FormOfAddress | title | ||
| GenderCode | sex | |||
| _FormOfAddressName | _FormOfAddressName |
@AbapCatalog.sqlViewName: 'IPFORMOFADDRESS'
@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: #M
define view I_PersonFormOfAddress as
select from tsad3
association[0..*] to I_PersonFormOfAddrT as _FormOfAddressName
on $projection.FormOfAddress = _FormOfAddressName.FormOfAddress
{
key title as FormOfAddress,
// sex as Gender, //depricated
sex as GenderCode,
_FormOfAddressName
}
where person = 'X'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TSAD3"
],
"ASSOCIATED":
[
"I_PERSONFORMOFADDRT"
],
"BASE":
[],
"ANNO_REF":
[],
"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