I_ACMContractCancMigrationSts

DDL: I_ACMCONTRACTCANCMIGRATIONSTS Type: view_entity BASIC

Contract Cancellation Mig Status

I_ACMContractCancMigrationSts is a Basic CDS View that provides data about "Contract Cancellation Mig Status" in SAP S/4HANA. It reads from 2 data sources (/accgo/t_canc_cc, /accgo/t_cc_canc) and exposes 2 fields with key field ACMContractNumber.

Data Sources (2)

SourceAliasJoin Type
/accgo/t_canc_cc _LegacyCanc from
/accgo/t_cc_canc _NewCanc inner

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Contract Cancellation Mig Status 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 (2)

KeyFieldSource TableSource FieldDescription
KEY ACMContractNumber /accgo/t_canc_cc tkonn Trading Contract
ACMPrcgIsCancelledWthCmmdtyOrd

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_ACMContractCancMigrationSts.
-- 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_ACMContractCancMigrationSts AS
SELECT
  _LegacyCanc.tkonn AS ACMContractNumber,
  cast( 'X' as boole_d ) AS ACMPrcgIsCancelledWthCmmdtyOrd
FROM /accgo/t_canc_cc AS _LegacyCanc
INNER JOIN /accgo/t_cc_canc AS _NewCanc ON /* join condition not captured in parsed metadata */
;