I_AcademicTitleText

DDL: I_ACADEMICTITLETEXT Type: view_entity BASIC Package: S_ADDRESS_VDM

Text for Academic Title

I_AcademicTitleText (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_AcademicTitleText is a Basic CDS View that provides data about "Text for Academic Title" in SAP S/4HANA. It reads from 1 data source (tsad2t) and exposes 4 fields with key fields AcademicTitle, Language. It has 1 association to related views. It is exposed through 14 OData services (ASQL_F1426, ASQL_F1611A, ASQL_F2545, ...). Part of development package S_ADDRESS_VDM.

SAP API Hub

CategoryBasic
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
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

Documentation

Data Sources (1)

SourceAliasJoin Type
tsad2t tsad2t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language tsad2t.langu = _Language.Language

Annotations (9)

NameValueLevelField
EndUserText.label Text for Academic Title view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey AcademicTitle view
VDM.viewType #BASIC view
Search.searchable true view

OData Services (14)

ServiceBindingVersionContractRelease
ASQL_F1426 ASQL_F1426 C2 NOT_RELEASED
ASQL_F1611A ASQL_F1611A C2 NOT_RELEASED
ASQL_F2545 ASQL_F2545 C2 NOT_RELEASED
ASQL_F3966 ASQL_F3966 C2 NOT_RELEASED
ASQL_F4182 ASQL_F4182 C2 NOT_RELEASED
ASQL_F4423 ASQL_F4423 C2 NOT_RELEASED
ASQL_F4424 ASQL_F4424 C2 NOT_RELEASED
ASQL_F4537 ASQL_F4537 C2 NOT_RELEASED
ASQL_F5407 ASQL_F5407 C2 NOT_RELEASED
ASQL_F5523 ASQL_F5523 C2 NOT_RELEASED
ASQL_F5524 ASQL_F5524 C2 NOT_RELEASED
ASQL_F6109 ASQL_F6109 C2 NOT_RELEASED
ASQL_F7335 ASQL_F7335 C2 NOT_RELEASED
ASQL_F7448 ASQL_F7448 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AcademicTitle title_key Academic Title: Key
KEY Language langu Primary lang.
AcademicTitleName title_dscr Academic Title Description
_Language _Language

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_AcademicTitleText.
-- 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_AcademicTitleText AS
SELECT
  title_key AS AcademicTitle,
  langu AS Language,
  title_dscr AS AcademicTitleName
FROM tsad2t
LEFT OUTER JOIN I_Language AS _Language ON tsad2t.langu = _Language.Language  -- association [0..1]
;