Srf_UsHelpMailAddr
Helper view for mailing address
Srf_UsHelpMailAddr is a CDS View that provides data about "Helper view for mailing address" in SAP S/4HANA. It reads from 1 data source (I_SAPClient) and exposes 1 field. Part of development package ID-OBS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SAPClient | I_SAPClient | from |
Parameters (4)
| Name | Type | Default |
|---|---|---|
| P_HouseNo | abap.char( 10 ) | |
| P_Street | abap.char( 60 ) | |
| P_HouseSuppliment | abap.char( 10 ) | |
| P_PoBox | abap.char( 10 ) |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | SRFUSHLPMAILADDR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Helper view for mailing address | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.lifecycle.status | #DEPRECATED | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| P_PoBoxendasPayeeMailingAddress |
@AbapCatalog.sqlViewName: 'SRFUSHLPMAILADDR'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Helper view for mailing address'
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MIXED
@VDM.lifecycle.status: #DEPRECATED
define view Srf_UsHelpMailAddr
with parameters
P_HouseNo : abap.char( 10 ),
P_Street : abap.char( 60 ),
P_HouseSuppliment : abap.char( 10 ),
P_PoBox : abap.char( 10 )
as select from I_SAPClient //dummy select
{
case $parameters.P_PoBox
when '' then
concat_with_space ( concat_with_space($parameters.P_HouseNo,$parameters.P_Street,1 ), $parameters.P_HouseSuppliment,1 )
else
concat('PO BOX',$parameters.P_PoBox)
end as PayeeMailingAddress
}
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