/AIF/C_InfChgFlds

DDL: /AIF/C_INFCHGFLDS SQL: /AIF/CINFCHGFLDS Type: view CONSUMPTION Package: /AIF/MONITORING_CDS

Interface Level Changeable Fields

/AIF/C_InfChgFlds is a Consumption CDS View that provides data about "Interface Level Changeable Fields" in SAP S/4HANA. It reads from 1 data source (/AIF/I_InfChgFlds) and exposes 5 fields with key fields ns, ifname, ifversion, counter. It is exposed through 1 OData service (/AIF/MESSAGEMONITOR). Part of development package /AIF/MONITORING_CDS.

Data Sources (1)

SourceAliasJoin Type
/AIF/I_InfChgFlds /AIF/I_InfChgFlds from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName /AIF/CINFCHGFLDS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Interface Level Changeable Fields view
VDM.viewType #CONSUMPTION view

OData Services (1)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ns ns Namespace
KEY ifname ifname Interface Name
KEY ifversion ifversion Interface Version
KEY counter counter Version
field_path field_path Field Path

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_InfChgFlds.
-- 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/CINFCHGFLDS

CREATE VIEW /AIF/C_InfChgFlds AS
SELECT
  ns,
  ifname,
  ifversion,
  counter,
  field_path
FROM /AIF/I_InfChgFlds
;