I_BusPartAcademicTitle

DDL: I_BUSPARTACADEMICTITLE SQL: IBPACADEMICTITLE Type: view BASIC

Business Partner Academic Titles

I_BusPartAcademicTitle is a Basic CDS View that provides data about "Business Partner Academic Titles" in SAP S/4HANA.

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBPACADEMICTITLE view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey AcademicTitle view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.resultSet.sizeCategory #XS view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Business Partner Academic Titles view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AcademicTitle title_key Name Supplement
AcademicTitleName title_text Name Supplement
_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_BusPartAcademicTitle.
-- 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.
-- SQL view name: IBPACADEMICTITLE

CREATE VIEW I_BusPartAcademicTitle AS
SELECT
  title_key AS AcademicTitle,
  title_text AS AcademicTitleName
;