I_PhoneNumberType

DDL: I_PHONENUMBERTYPE Type: view_entity BASIC

Phone Number Type

I_PhoneNumberType (Basic)

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

PhoneNumberType · Cross Applications

I_PhoneNumberType is a Basic CDS View (Dimension) that provides data about "Phone Number Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field PhoneNumberType. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Business Address Service
Purpose
This view provides supported values for PhoneNumberType . The values and their meanings are: Value Meaning Telephone is Landline Telephone 2 Telephone is Mobile Telephone but Not Default Mobile Phone 1 Telephone is Default Under Landline Telephones 3 Telephone is Default Mobile Telephone X Obsolete - No Longer Valid

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentBC-SRV-ADR
CapabilitiesAssociation Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source in SQL Select
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PhoneNumberTypeText _Text $projection.PhoneNumberType = _Text.PhoneNumberType

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
EndUserText.label Phone Number Type view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey PhoneNumberType view
Analytics.technicalName IPHONENMBRTYPE view
ObjectModel.sapObjectNodeType.name PhoneNumberType view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PhoneNumberType Indicator: Telephone is a Mobile Telephone
_Text _Text

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_PhoneNumberType.
-- 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_PhoneNumberType AS
SELECT
  cast ( domvalue_l as ad_flgmob ) AS PhoneNumberType
FROM dd07l
LEFT OUTER JOIN I_PhoneNumberTypeText AS _Text ON PhoneNumberType = _Text.PhoneNumberType  -- association [0..*]
;