I_ACMCancMigrationTargetData

DDL: I_ACMCANCMIGRATIONTARGETDATA Type: view_entity BASIC

Cancellation Migration Target Data

I_ACMCancMigrationTargetData is a Basic CDS View that provides data about "Cancellation Migration Target Data" in SAP S/4HANA. It reads from 3 data sources (/accgo/t_cc_canc, cpe_prcfixgrp, cpe_prcfixgrp_op) and exposes 1 field with key field ACMContractNumber.

Data Sources (3)

SourceAliasJoin Type
/accgo/t_cc_canc _CCCanc from
cpe_prcfixgrp _CPEGrp inner
cpe_prcfixgrp_op _CPEGrpOpr inner

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Cancellation Migration Target Data view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY ACMContractNumber /accgo/t_cc_canc tkonn Trading Contract

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_ACMCancMigrationTargetData.
-- 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_ACMCancMigrationTargetData AS
SELECT
  _CCCanc.tkonn AS ACMContractNumber
FROM /accgo/t_cc_canc AS _CCCanc
INNER JOIN cpe_prcfixgrp AS _CPEGrp ON /* join condition not captured in parsed metadata */
INNER JOIN cpe_prcfixgrp_op AS _CPEGrpOpr ON /* join condition not captured in parsed metadata */
;