A_VarCnfHistlConstraint

DDL: A_VARCNFHISTLCONSTRAINT Type: view_entity CONSUMPTION Package: VCH_RAP_MD_CNET

Historical Constraints

A_VarCnfHistlConstraint is a Consumption CDS View that provides data about "Historical Constraints" in SAP S/4HANA. It reads from 1 data source (R_VarCnfHistlConstraintTP) and exposes 15 fields with key fields VarCnfConstraintNetName, VarCnfConstraintName, ChangeNumber. It is exposed through 1 OData service (API_VARCONFIGNCONSTRAINTNET). Part of development package VCH_RAP_MD_CNET.

Data Sources (1)

SourceAliasJoin Type
R_VarCnfHistlConstraintTP R_VarCnfHistlConstraintTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Historical Constraints view
AccessControl.authorizationCheck #MANDATORY view
OData.entityType.name VarCnfHistlConstraint_Type view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

OData Services (1)

ServiceBindingVersionContractRelease
API_VARCONFIGNCONSTRAINTNET API_VARCONFIGNCONSTRAINTNET V4 C2 C1

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY VarCnfConstraintNetName VarCnfConstraintNetName
KEY VarCnfConstraintName VarCnfConstraintName
KEY ChangeNumber ChangeNumber Change Number
ObjectDependencyStatus ObjectDependencyStatus
ObjectDependencyStatusNamelocalized
ObjectDependencyGroup ObjectDependencyGroup
ObjectDependencyGroupNamelocalized
CreationDate CreationDate Time Stamp
CreatedByUser CreatedByUser User Name
LastChangeDate LastChangeDate Time Stamp
LastChangedByUser LastChangedByUser User Name
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
IsDeleted IsDeleted TRUE
LocalLastChangeDateTime LocalLastChangeDateTime Time Stamp

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 A_VarCnfHistlConstraint.
-- 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 A_VarCnfHistlConstraint AS
SELECT
  VarCnfConstraintNetName,
  VarCnfConstraintName,
  ChangeNumber,
  ObjectDependencyStatus,
  _StatusText.ObjectDependencyStatusName : localized AS ObjectDependencyStatusNamelocalized,
  ObjectDependencyGroup,
  _GroupText.ObjectDependencyGroupName : localized AS ObjectDependencyGroupNamelocalized,
  CreationDate,
  CreatedByUser,
  LastChangeDate,
  LastChangedByUser,
  ValidityStartDate,
  ValidityEndDate,
  IsDeleted,
  LocalLastChangeDateTime
FROM R_VarCnfHistlConstraintTP
;