I_PersonFormOfAddress

DDL: I_PERSONFORMOFADDRESS SQL: IPFORMOFADDRESS Type: view BASIC Package: VDM_SHCM_EMPLOYEE

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. Part of development package VDM_SHCM_EMPLOYEE.

Data Sources (1)

SourceAliasJoin Type
tsad3 tsad3 from

Annotations (8)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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'