ACE_ACEDSASSGMTC

DDL: ACE_ACEDSASSGMTC SQL: ACEV_DSASSGMTC Type: view

Compatibility view for ACEDSASSGMT

ACE_ACEDSASSGMTC is a CDS View that provides data about "Compatibility view for ACEDSASSGMT" in SAP S/4HANA. It reads from 3 data sources (acesobj, acesobj_assgmt, prps) and exposes 23 fields with key fields comp, bukrs, objid, subid, date_to.

Data Sources (3)

SourceAliasJoin Type
acesobj acesobj inner
acesobj_assgmt acesobj_assgmt from
prps prps left_outer

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ACEV_DSASSGMTC 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 ACEDSASSGMT view
AbapCatalog.preserveKey true view

Fields (23)

KeyFieldSource TableSource FieldDescription
KEY comp acesobj_assgmt comp Legal competence
KEY bukrs acesobj_assgmt bukrs Value
KEY objid acesobj objid Work Center
KEY subid acesobj subid Topic ID
KEY date_to acesobj_assgmt date_to Validity End Date
date_from acesobj_assgmt date_from Validity Start Date
bus_area acesobj_assgmt gsber Business Area
profit_ctr acesobj_assgmt prctr Profit Centers
segment acesobj_assgmt segment Segment number
fund acesobj_assgmt geber Fund
funds_ctr acesobj_assgmt fistl Funds Center
cmmt_item acesobj_assgmt fipos Commitment item
grant_nbr acesobj_assgmt grant_nbr Receiver Grant
measure acesobj_assgmt measure obsolete
costcenter acesobj_assgmt kostl Substitute CC
orderid acesobj_assgmt aufnr SettlementOrder
costobject acesobj_assgmt kstrg Cost Objects
acttype acesobj_assgmt lstar Activity Type
network acesobj_assgmt nplnr Network
routing_no acesobj_assgmt aufpl TaskList No.Ops
co_busproc acesobj_assgmt prznr Sender BProc
sales_ord acesobj_assgmt kdauf SD Document
s_ord_item acesobj_assgmt kdpos Sales Ord. Item

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_ACEDSASSGMTC.
-- 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_DSASSGMTC

CREATE VIEW ACE_ACEDSASSGMTC AS
SELECT
  acesobj_assgmt.comp AS comp,
  acesobj_assgmt.bukrs AS bukrs,
  acesobj.objid AS objid,
  acesobj.subid AS subid,
  acesobj_assgmt.date_to AS date_to,
  acesobj_assgmt.date_from AS date_from,
  acesobj_assgmt.gsber AS bus_area,
  acesobj_assgmt.prctr AS profit_ctr,
  acesobj_assgmt.segment AS segment,
  acesobj_assgmt.geber AS fund,
  acesobj_assgmt.fistl AS funds_ctr,
  acesobj_assgmt.fipos AS cmmt_item,
  acesobj_assgmt.grant_nbr AS grant_nbr,
  acesobj_assgmt.measure AS measure,
  acesobj_assgmt.kostl AS costcenter,
  acesobj_assgmt.aufnr AS orderid,
  acesobj_assgmt.kstrg AS costobject,
  acesobj_assgmt.lstar AS acttype,
  acesobj_assgmt.nplnr AS network,
  acesobj_assgmt.aufpl AS routing_no,
  acesobj_assgmt.prznr AS co_busproc,
  acesobj_assgmt.kdauf AS sales_ord,
  acesobj_assgmt.kdpos AS s_ord_item
FROM acesobj_assgmt
INNER JOIN acesobj ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN prps ON /* join condition not captured in parsed metadata */
;