P_STRPFxdAssetFormCompanyCode

DDL: P_STRPFXDASSETFORMCOMPANYCODE SQL: PSRFALCOMPCODE Type: view CONSUMPTION Package: GLO_FIN_IS_AA_GEN

View for using I_address_2 full name

P_STRPFxdAssetFormCompanyCode is a Consumption CDS View that provides data about "View for using I_address_2 full name" in SAP S/4HANA. It reads from 1 data source (I_CompanyCode) and exposes 2 fields. Part of development package GLO_FIN_IS_AA_GEN.

Data Sources (1)

SourceAliasJoin Type
I_CompanyCode FxdCompanyCode from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PSRFALCOMPCODE view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
VDM.private true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label View for using I_address_2 full name view

Fields (2)

KeyFieldSource TableSource FieldDescription
CompanyCode I_CompanyCode CompanyCode
FullName
@AbapCatalog.sqlViewName: 'PSRFALCOMPCODE'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@VDM.private:true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'View for using I_address_2 full name'
define view P_STRPFxdAssetFormCompanyCode as select from I_CompanyCode as FxdCompanyCode
left outer to one join I_AddrOrgNamePostalAddress as AddrPostal
           on FxdCompanyCode.AddressID  = AddrPostal.AddressID
          and AddrPostal.AddressRepresentationCode = ' '
{
  FxdCompanyCode.CompanyCode as CompanyCode,
  cast(substring(replace(concat(AddrPostal.AddresseeName1, concat(' &@', AddrPostal.AddresseeName2)), '&@', ''),1,80) as adfullname ) as FullName
}