ACE_ACEDSOH_VIEW_01

DDL: ACE_ACEDSOH_VIEW_01 SQL: ACEV_ACEDSOH1 Type: view

Compatibility view for ACEDSOH 1

ACE_ACEDSOH_VIEW_01 is a CDS View that provides data about "Compatibility view for ACEDSOH 1" in SAP S/4HANA. It reads from 4 data sources (acesobj, acesobj, acesobj_item, acesobj_item) and exposes 24 fields with key fields comp, bukrs, objid, subid, date_to.

Data Sources (4)

SourceAliasJoin Type
acesobj acesobj left_outer
acesobj acesobj left_outer
acesobj_item acesobj_item from
acesobj_item acesobj_item union_all

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ACEV_ACEDSOH1 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Compatibility view for ACEDSOH 1 view
AbapCatalog.preserveKey true view

Fields (24)

KeyFieldSource TableSource FieldDescription
KEY comp acesobj_item comp Legal competence
KEY bukrs acesobj_item bukrs Value
KEY objid acesobj objid Work Center
KEY subid acesobj subid Topic ID
KEY date_to acesobj_item date_to Validity End Date
ref_subkey acesobj_item ref_subkey Ext Ref of Subobject
date_from acesobj_item date_from Validity Start Date
vality_from acesobj_item life_start_date Start of Life
vality_to acesobj_item life_end_date End of Life
uname acesobj uname User Name
clientNULLascpudt
clientNULLascputm
comp Legal competence
KEY bukrs acesobj_item bukrs Value
KEY objid acesobj objid Work Center
KEY subid acesobj subid Topic ID
KEY date_to acesobj_item date_to Validity End Date
ref_subkey acesobj_item ref_subkey Ext Ref of Subobject
date_from acesobj_item date_from Validity Start Date
vality_from acesobj_item life_start_date Start of Life
vality_to acesobj_item life_end_date End of Life
uname acesobj uname User Name
clientNULLascpudt
clientNULLascputm

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 ACE_ACEDSOH_VIEW_01.
-- 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: ACEV_ACEDSOH1

CREATE VIEW ACE_ACEDSOH_VIEW_01 AS
SELECT
  acesobj_item.comp AS comp,
  acesobj_item.bukrs AS bukrs,
  acesobj.objid AS objid,
  acesobj.subid AS subid,
  acesobj_item.date_to AS date_to,
  acesobj_item.ref_subkey AS ref_subkey,
  acesobj_item.date_from AS date_from,
  acesobj_item.life_start_date AS vality_from,
  acesobj_item.life_end_date AS vality_to,
  acesobj.uname AS uname,
  tstmp_to_dats( acesobj.timestmp, abap_system_timezone( $session.client,'NULL' ), $session.client, 'NULL' ) as cpudt AS clientNULLascpudt,
  tstmp_to_tims( acesobj.timestmp, abap_system_timezone( $session.client,'NULL' ), $session.client, 'NULL' ) as cputm AS clientNULLascputm
FROM acesobj_item
LEFT OUTER JOIN acesobj ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): acesobj_item
;