Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

Srf_UsHelpMailAddr

DDL: SRF_USHELPMAILADDR SQL: SRFUSHLPMAILADDR Type: view

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.

Data Sources (1)

SourceAliasJoin Type
I_SAPClient I_SAPClient from

Parameters (4)

NameTypeDefault
P_HouseNo abap.char( 10 )
P_Street abap.char( 60 )
P_HouseSuppliment abap.char( 10 )
P_PoBox abap.char( 10 )

Annotations (9)

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

KeyFieldSource TableSource FieldDescription
P_PoBoxendasPayeeMailingAddress

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view Srf_UsHelpMailAddr.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: SRFUSHLPMAILADDR
-- Parameters: P_HouseNo : abap.char( 10 ), P_Street : abap.char( 60 ), P_HouseSuppliment : abap.char( 10 ), P_PoBox : abap.char( 10 )

CREATE VIEW Srf_UsHelpMailAddr AS
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 AS P_PoBoxendasPayeeMailingAddress
FROM I_SAPClient
;