P_STRPFxdAssetFormCompanyCode
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)
| Source | Alias | Join Type |
|---|---|---|
| I_CompanyCode | FxdCompanyCode | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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