C_FormOfAddressVHTemp
Form Of Address Value Help
C_FormOfAddressVHTemp is a Consumption CDS View that provides data about "Form Of Address Value Help" in SAP S/4HANA. It reads from 1 data source (tsad3) and exposes 2 fields with key field FormOfAddress. It has 1 association to related views. Part of development package VDM_MD_BP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tsad3 | tsad3 | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | C_FormOfAddressTextVHTemp | _Text | $projection.FormOfAddress = _Text.FormOfAddress |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CFORMOFADDRVH | view | |
| ClientDependent | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.representativeKey | FormOfAddress | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FormOfAddress | tsad3 | title | |
| _Text | _Text |
@AbapCatalog.sqlViewName: 'CFORMOFADDRVH'
@ClientDependent: true
@AbapCatalog.compiler.compareFilter: true
//@Analytics : {dataCategory: #TEXT, dataExtraction.enabled : true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@ObjectModel.representativeKey: 'FormOfAddress'
//@EndUserText.label: 'Form of Address Value Help'
@Search.searchable: true
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
define view C_FormOfAddressVHTemp as select from tsad3
association [0..*] to C_FormOfAddressTextVHTemp as _Text on $projection.FormOfAddress = _Text.FormOfAddress
{
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
key tsad3.title as FormOfAddress,
@EndUserText.label: 'Category'
case
when tsad3.person = 'X' then '1'
when tsad3.organizatn = 'X' then '2'
else '3'
end as BusinessPartnerCategory,
_Text
}
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