I_BusinessPartnerFormOfAddress

DDL: I_BUSINESSPARTNERFORMOFADDRESS SQL: IBPFORMOFADDR Type: view BASIC

Business Partner Form Of Address

I_BusinessPartnerFormOfAddress is a Basic CDS View that provides data about "Business Partner Form Of Address" 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.

Data Sources (1)

SourceAliasJoin Type
tsad3 tsad3 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BusinessPartnerFormOfAddrTxt _Text $projection.FormOfAddress = _Text.FormOfAddress

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IBPFORMOFADDR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Business Partner Form Of Address view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY FormOfAddress title
_Text _Text
@AbapCatalog.sqlViewName: 'IBPFORMOFADDR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@EndUserText.label: 'Business Partner Form Of Address'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_BusinessPartnerFormOfAddress
  as select from tsad3
  association [0..*] to I_BusinessPartnerFormOfAddrTxt as _Text on $projection.FormOfAddress = _Text.FormOfAddress
{
      @ObjectModel.text.association: '_Text'
  key title as FormOfAddress,
      case
        when person = 'X' then '1'
        when organizatn = 'X' then '2'
        when xgroup = 'X' then '3'
        else '2'
      end   as BusinessPartnerCategory,
      _Text
}