/AIF/C_Interface_Display

DDL: /AIF/C_INTERFACE_DISPLAY SQL: /AIF/CIFDISP Type: view CONSUMPTION

Interface Display Name

/AIF/C_Interface_Display is a Consumption CDS View that provides data about "Interface Display Name" in SAP S/4HANA. It reads from 1 data source (/AIF/I_Interface_Display) and exposes 5 fields with key fields Namespace, InterfaceName, InterfaceVersion, LanguageKey. It is exposed through 1 OData service (/AIF/MESSAGEMONITOR).

Data Sources (1)

SourceAliasJoin Type
/AIF/I_Interface_Display /AIF/I_Interface_Display from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName /AIF/CIFDISP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Interface Display Name view
VDM.viewType #CONSUMPTION view

OData Services (1)

ServiceBindingVersionContractRelease
/AIF/MESSAGEMONITOR /AIF/MSGMONITORING_CDS V4 C1 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Namespace ns Namespace
KEY InterfaceName ifname Interface Name
KEY InterfaceVersion ifversion Interface Version
KEY LanguageKey spras Off. Language
InterfaceDisplayName ifdisplay Interface Disp. Name

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 /AIF/C_Interface_Display.
-- 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: /AIF/CIFDISP

CREATE VIEW /AIF/C_Interface_Display AS
SELECT
  ns AS Namespace,
  ifname AS InterfaceName,
  ifversion AS InterfaceVersion,
  spras AS LanguageKey,
  ifdisplay AS InterfaceDisplayName
FROM /AIF/I_Interface_Display
;