R_AddressFaxNumberTP

DDL: R_ADDRESSFAXNUMBERTP Type: view_entity Package: S_ADDRESS_RAP_BO

Fax Number - TP

R_AddressFaxNumberTP is a CDS View that provides data about "Fax Number - TP" in SAP S/4HANA. It reads from 1 data source (I_AddressFaxNumber_2) and exposes 16 fields with key fields AddressID, AddressPersonID, CommMediumSequenceNumber. Part of development package S_ADDRESS_RAP_BO.

Data Sources (1)

SourceAliasJoin Type
I_AddressFaxNumber_2 I_AddressFaxNumber_2 from

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Fax Number - TP view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY AddressID AddressID Ship-to address
KEY AddressPersonID AddressPersonID Person Number
KEY CommMediumSequenceNumber CommMediumSequenceNumber Sequence Number
FaxNumberCountry FaxNumberCountry Country/Region
CommLineNotForUnsolicitedCntct CommLineNotForUnsolicitedCntct Do not use
FaxAreaCodeSubscriberNumber FaxAreaCodeSubscriberNumber Fax
FaxExtensionNumber FaxExtensionNumber Extension
InternationalFaxNumber InternationalFaxNumber Fax Number
FaxNumberIsCurrentDefault FaxNumberIsCurrentDefault Fax is Cur Dflt
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
CommunicationRemarkText
_AddressCommunicationRemark _AddressCommunicationRemark
_AddressCommunicationUsage _AddressCommunicationUsage
_FaxNumberCountry _FaxNumberCountry
_OrganizationAddress _OrganizationAddress

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 R_AddressFaxNumberTP.
-- 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.

CREATE VIEW R_AddressFaxNumberTP AS
SELECT
  AddressID,
  AddressPersonID,
  CommMediumSequenceNumber,
  FaxNumberCountry,
  CommLineNotForUnsolicitedCntct,
  FaxAreaCodeSubscriberNumber,
  FaxExtensionNumber,
  InternationalFaxNumber,
  FaxNumberIsCurrentDefault,
  ValidityStartDate,
  ValidityEndDate,
  _AddressCommunicationRemark[ Language = $session.system_language ].CommunicationRemarkText AS CommunicationRemarkText
FROM I_AddressFaxNumber_2
;