I_PhoneNumberTypeText

DDL: I_PHONENUMBERTYPETEXT Type: view_entity BASIC

Text for Phone Number Type

I_PhoneNumberTypeText (Basic)

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

Cross Applications

I_PhoneNumberTypeText is a Basic CDS View that provides data about "Text for Phone Number Type" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields PhoneNumberType, Language.

SAP API Hub

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

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text for Phone Number Type view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IPHNMBRTYPETXT view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PhoneNumberType Indicator: Telephone is a Mobile Telephone
KEY Language ddlanguage Language Key
PhoneNumberTypeText ddtext Short Text for Fixed Values

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_PhoneNumberTypeText.
-- 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_PhoneNumberTypeText AS
SELECT
  cast ( domvalue_l as ad_flgmob) AS PhoneNumberType,
  ddlanguage AS Language,
  ddtext AS PhoneNumberTypeText
FROM dd07t
;