/AIF/C_CustomHint

DDL: /AIF/C_CUSTOMHINT SQL: /AIF/CCUSTHINT Type: view CONSUMPTION

Custom Hint

/AIF/C_CustomHint is a Consumption CDS View that provides data about "Custom Hint" in SAP S/4HANA. It reads from 1 data source (/AIF/I_CustomHint) and exposes 11 fields with key fields Namespace, InterfaceName, InterfaceVersion, HintId, AuthorizedUser.

Data Sources (1)

SourceAliasJoin Type
/AIF/I_CustomHint /AIF/I_CustomHint from

Parameters (2)

NameTypeDefault
p_messageid msgid
p_messageno msgno

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName /AIF/CCUSTHINT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Custom Hint view
VDM.viewType #CONSUMPTION view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY Namespace ns Namespace
KEY InterfaceName ifname Interface Name
KEY InterfaceVersion ifver Interface Version
KEY HintId hintid Hint ID
KEY AuthorizedUser authuser User
MessageId msgid Message ID
MessageNo msgno Message Number
RecordedCreateUser createuser User Name
ScreenNumber dypno Number
Visibility visibility Visibility
Scope scope Visibility

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_CustomHint.
-- 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/CCUSTHINT
-- Parameters: p_messageid : msgid, p_messageno : msgno

CREATE VIEW /AIF/C_CustomHint AS
SELECT
  ns AS Namespace,
  ifname AS InterfaceName,
  ifver AS InterfaceVersion,
  HintId,
  authuser AS AuthorizedUser,
  msgid AS MessageId,
  msgno AS MessageNo,
  createuser AS RecordedCreateUser,
  dypno AS ScreenNumber,
  Visibility,
  Scope
FROM /AIF/I_CustomHint
;