I_AddrCurDefaultFaxNumber

DDL: I_ADDRCURDEFAULTFAXNUMBER Type: view_entity BASIC Package: S_ADDRESS_VDM

Current Default Fax Number

I_AddrCurDefaultFaxNumber (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_AddrCurDefaultFaxNumber is a Basic CDS View that provides data about "Current Default Fax Number" in SAP S/4HANA. It reads from 1 data source (I_AddressFaxNumber_2) and exposes 10 fields with key fields AddressID, AddressPersonID. Part of development package S_ADDRESS_VDM.

SAP Help Documentation

CategoryCDS Views for Business Address Services
Purpose
This CDS view returns the current fax number that is linked to an address. This CDS view provides the data to answer the following business questions: Which is current fax number that is linked to an address? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view need to access it via another CDS view (privileged mode).

Structure
Important Fields Important fields in this view include the following: Field Name Description AddressID Address Number AddressPersonID Person Number CommMediumSequenceNumber Sequence Number FaxNumberCountry Country/Region for Fax Number FaxAreaCodeSubscriberNumber Fax Number: Dialing Code and Number FaxExtensionNumber Fax Number Extension InternationalFaxNumber Complete Fax Number: Dialing Code+Number+Extension

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessCross Applications
Application ComponentBC-SRV-ADR
CapabilitiesAssociation Target for Defining CDS Entities,Data Source in SQL Select,Data Source for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageCross Applications for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view returns the current fax number that is linked to an address.</p> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_AddressFaxNumber_2 I_AddressFaxNumber_2 from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Current Default Fax Number view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY AddressID AddressID Ship-to address
KEY AddressPersonID AddressPersonID Person Number
CommMediumSequenceNumber CommMediumSequenceNumber Sequence Number
FaxNumberCountry FaxNumberCountry Country/Region for Telephone/Fax Number
FaxAreaCodeSubscriberNumber FaxAreaCodeSubscriberNumber Fax Number: Dialing Code and Number
FaxExtensionNumber FaxExtensionNumber Fax no.: Extension
InternationalFaxNumber InternationalFaxNumber Complete Number: Dialing Code+Number+Extension
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
_FaxNumberCountry _FaxNumberCountry

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 I_AddrCurDefaultFaxNumber.
-- 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 I_AddrCurDefaultFaxNumber AS
SELECT
  AddressID,
  AddressPersonID,
  CommMediumSequenceNumber,
  FaxNumberCountry,
  FaxAreaCodeSubscriberNumber,
  FaxExtensionNumber,
  InternationalFaxNumber,
  ValidityStartDate,
  ValidityEndDate
FROM I_AddressFaxNumber_2
;