I_AddressManagementURIType

DDL: I_ADDRESSMANAGEMENTURITYPE Type: view_entity BASIC

Address Management URI Type

I_AddressManagementURIType (Basic)

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

AddressManagementURIType · Cross Applications

I_AddressManagementURIType is a Basic CDS View (Dimension) that provides data about "Address Management URI Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field AddressManagementURIType. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Business Address Service
Purpose
This view provides supported values for AddressManagementURIType . The values and their meanings are: Value Meaning HPG Homepage (WWW) FTP FTP Address STK Callup Share Prices ACC Bank Statement Request INT Intranet Page LOG Company Logo PFB Published Free/Busy information (calendar) ROU Link to Route Planner SIP Session Initiation Protocol

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_AddressManagementURITypeText _Text $projection.AddressManagementURIType = _Text.AddressManagementURIType

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Address Management URI Type view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey AddressManagementURIType view
Analytics.technicalName IADMANAGEURITYPE view
ObjectModel.sapObjectNodeType.name AddressManagementURIType view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AddressManagementURIType URI type flag
DomainValue domvalue_l Values for Domains: Single Value/Lower Limit
_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_AddressManagementURIType.
-- 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_AddressManagementURIType AS
SELECT
  cast ( domvalue_l as ad_uritype ) AS AddressManagementURIType,
  domvalue_l AS DomainValue
FROM dd07l
LEFT OUTER JOIN I_AddressManagementURITypeText AS _Text ON AddressManagementURIType = _Text.AddressManagementURIType  -- association [0..*]
;