I_CAMasterDataDistrRecord

DDL: I_CAMASTERDATADISTRRECORD SQL: ICAMDDISTRRECDS Type: view BASIC

Distribution Records

I_CAMasterDataDistrRecord is a Basic CDS View that provides data about "Distribution Records" in SAP S/4HANA. It reads from 1 data source (dfkk_cc_md) and exposes 23 fields.

Data Sources (1)

SourceAliasJoin Type
dfkk_cc_md dfkk_cc_md from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICAMDDISTRRECDS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
EndUserText.label Distribution Records view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view

Fields (23)

KeyFieldSource TableSource FieldDescription
CAMasterDataDistrRecdObjType objtype Translation OType
CAMasterDataDistrObjectRef objky Relation (Key)
CAMasterDataDistrRecord trigid Target Syst. ID
CAMasterDataDistrRecordType trityp Distrib. Type
CAMasterDataDistrIsObsolete xobsl Obsolete Ind.
CreationDate erdat Entered On
CreationTime ertim Time
CAMstrDataDistrRecdExectdActn triact Executed Action
CAMasterDataParentDistrObjType parent_objtype Object Type
CAMasterDataParentDistrObjRef parent_objky Key
SystemMessageType msgty Msg.Type (E,I,W..)
SystemMessageClass msgid Message ID
SystemMessageNumber msgno Message Number
SystemMessageVariable1 msgv1 Message variable 1
SystemMessageVariable2 msgv2 Message variable 2
SystemMessageVariable3 msgv3 Message variable 3
SystemMessageVariable4 msgv4 Message variable 4
SystemMessageText message_string Long Text
SystemMsgsAreStoredSeparately xmsgs Separate Messages
CAMasterDataDistrHasRatingArea xtag Rating Area
CAMasterDataDepdntDistrObjType depndt_objtype Dependent Obj. Type
CAMasterDataDepdntDistrObj depndt_objid Dependent ID
CAMasterDataDistrRatingArea rating_area_info Rating Area

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_CAMasterDataDistrRecord.
-- 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: ICAMDDISTRRECDS

CREATE VIEW I_CAMasterDataDistrRecord AS
SELECT
  objtype AS CAMasterDataDistrRecdObjType,
  objky AS CAMasterDataDistrObjectRef,
  trigid AS CAMasterDataDistrRecord,
  trityp AS CAMasterDataDistrRecordType,
  xobsl AS CAMasterDataDistrIsObsolete,
  erdat AS CreationDate,
  ertim AS CreationTime,
  triact AS CAMstrDataDistrRecdExectdActn,
  parent_objtype AS CAMasterDataParentDistrObjType,
  parent_objky AS CAMasterDataParentDistrObjRef,
  msgty AS SystemMessageType,
  msgid AS SystemMessageClass,
  msgno AS SystemMessageNumber,
  msgv1 AS SystemMessageVariable1,
  msgv2 AS SystemMessageVariable2,
  msgv3 AS SystemMessageVariable3,
  msgv4 AS SystemMessageVariable4,
  message_string AS SystemMessageText,
  xmsgs AS SystemMsgsAreStoredSeparately,
  xtag AS CAMasterDataDistrHasRatingArea,
  depndt_objtype AS CAMasterDataDepdntDistrObjType,
  depndt_objid AS CAMasterDataDepdntDistrObj,
  rating_area_info AS CAMasterDataDistrRatingArea
FROM dfkk_cc_md
;