C_IHBAccountChangeDocument

DDL: C_IHBACCOUNTCHANGEDOCUMENT Type: view_entity CONSUMPTION

IHB Account Change Document

C_IHBAccountChangeDocument is a Consumption CDS View that provides data about "IHB Account Change Document" in SAP S/4HANA. It reads from 1 data source (I_IHBAccountChangeDocument) and exposes 18 fields with key fields IHBAccountUUID, ChangeDocObject, ChangeDocObjectClass, ChangeDocument, DatabaseTable.

Data Sources (1)

SourceAliasJoin Type
I_IHBAccountChangeDocument I_IHBAccountChangeDocument from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label IHB Account Change Document view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.allowExtensions true view
OData.publish true view

Fields (18)

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 Field Name
KEY ChangeDocItemChangeType ChangeDocItemChangeType
CreatedByUser CreatedByUser Modified by
CreationDate CreationDate Date Modified
CreationTime CreationTime Time Modified
ABAPDataElementDescription _IHBAccountFieldLabel ABAPDataElementDescription
ChangeDocPreviousFieldValue ChangeDocPreviousFieldValue
ChangeDocNewFieldValue ChangeDocNewFieldValue
ChangeDocPrevFieldValueText
ChangeDocNewFieldValueText
_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 C_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 C_IHBAccountChangeDocument AS
SELECT
  IHBAccountUUID,
  ChangeDocObject,
  ChangeDocObjectClass,
  ChangeDocument,
  DatabaseTable,
  ChangeDocTableKey,
  ChangeDocDatabaseTableField,
  ChangeDocItemChangeType,
  CreatedByUser,
  CreationDate,
  CreationTime,
  _IHBAccountFieldLabel.ABAPDataElementDescription AS ABAPDataElementDescription,
  ChangeDocPreviousFieldValue,
  ChangeDocNewFieldValue,
  cast( '' as cdfldvaln ) AS ChangeDocPrevFieldValueText,
  cast( '' as cdfldvaln ) AS ChangeDocNewFieldValueText
FROM I_IHBAccountChangeDocument
;