I_IHBAccountChangeDocument

DDL: I_IHBACCOUNTCHANGEDOCUMENT Type: view_entity BASIC

IHB Account Change Document

I_IHBAccountChangeDocument is a Basic CDS View that provides data about "IHB Account Change Document" in SAP S/4HANA. It reads from 1 data source (P_IHBAccountChangeDocument) and exposes 15 fields with key fields IHBAccountUUID, ChangeDocObject, ChangeDocObjectClass, ChangeDocument, DatabaseTable. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
P_IHBAccountChangeDocument _IHBAccountChangeDocument from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_IHBAccountFieldLabel _IHBAccountFieldLabel $projection.DatabaseTable = _IHBAccountFieldLabel.DatabaseTable and $projection.ChangeDocDatabaseTableField = _IHBAccountFieldLabel.DatabaseTableFieldName
[0..1] I_IHBAccount _IHBAccount $projection.IHBAccountUUID = _IHBAccount.IHBAccountUUID

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label IHB Account Change Document view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY IHBAccountUUID IHBAccountUUID Account ID
KEY ChangeDocObject ChangeDocObject Object Value
KEY ChangeDocObjectClass ChangeDocObjectClass Change Doc. Object
KEY ChangeDocument ChangeDocument Document Number
KEY DatabaseTable DatabaseTable Table Name
KEY ChangeDocTableKey ChangeDocTableKey
KEY ChangeDocDatabaseTableField ChangeDocDatabaseTableField
KEY ChangeDocItemChangeType ChangeDocItemChangeType
CreatedByUser CreatedByUser User Name
CreationDate CreationDate Time Stamp
CreationTime CreationTime Time of Change
ChangeDocPreviousFieldValue ChangeDocPreviousFieldValue
ChangeDocNewFieldValue ChangeDocNewFieldValue
_IHBAccountFieldLabel _IHBAccountFieldLabel
_IHBAccount _IHBAccount

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_IHBAccountChangeDocument.
-- 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_IHBAccountChangeDocument AS
SELECT
  IHBAccountUUID,
  ChangeDocObject,
  ChangeDocObjectClass,
  ChangeDocument,
  DatabaseTable,
  ChangeDocTableKey,
  ChangeDocDatabaseTableField,
  ChangeDocItemChangeType,
  CreatedByUser,
  CreationDate,
  CreationTime,
  ChangeDocPreviousFieldValue,
  ChangeDocNewFieldValue
FROM P_IHBAccountChangeDocument AS _IHBAccountChangeDocument
LEFT OUTER JOIN I_IHBAccountFieldLabel AS _IHBAccountFieldLabel ON DatabaseTable = _IHBAccountFieldLabel.DatabaseTable AND ChangeDocDatabaseTableField = _IHBAccountFieldLabel.DatabaseTableFieldName  -- association [0..1]
LEFT OUTER JOIN I_IHBAccount AS _IHBAccount ON IHBAccountUUID = _IHBAccount.IHBAccountUUID  -- association [0..1]
;