I_AddressManagementURIType

DDL: I_ADDRESSMANAGEMENTURITYPE Type: view_entity BASIC Package: S_ADDRESS_VDM

Address Management URI Type

I_AddressManagementURIType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public 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. Part of development package S_ADDRESS_VDM.

SAP Help Documentation

CategoryCDS Views for Business Address Services
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

CategoryBasic
StateC1
Line of BusinessCross Applications
Application ComponentBC-SRV-ADR
CapabilitiesData Source for Data Extraction,Association Target for Defining CDS Entities,Data Source for Defining CDS Entities,Data Source in SQL Select
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 view provides supported values for AddressManagementURIType.</p> <p>The values and their meanings are:</p> VALUE MEANING HPG Homepage (WWW) INT Intranet page LOG Company logo FTP FTP address STK Callup share prices ACC Bank statement request PFB Published Free/Busy information (calendar) ROU Link to Route Planner SIP Session Initiation Protocol <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
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..*]
;