I_ServiceContractCanclnSts

DDL: I_SERVICECONTRACTCANCLNSTS SQL: ISRVCCNTCANCSTS Type: view BASIC

Service Contract Cancellation Status

I_ServiceContractCanclnSts is a Basic CDS View that provides data about "Service Contract Cancellation Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ServiceContractCanclnSts. It has 1 association to related views.

SAP Help Documentation

CategoryService Contract Management
Purpose
This CDS view displays the value of different cancellation statuses in service contract. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization. You can use the Display Restriction Types app to find out in which business catalogs these restriction types are included.

Structure
Important Fields Important fields in this view include the following: Field Name Description ServiceContractCanclnSts Service Contract Cancellation Status

View on SAP Help Portal →

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_ServiceContractCanclnStsTxt _ServiceContractCanclnStsTxt $projection.ServiceContractCanclnSts = _ServiceContractCanclnStsTxt.ServiceContractCanclnSts

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISRVCCNTCANCSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey ServiceContractCanclnSts view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Service Contract Cancellation Status view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ServiceContractCanclnSts domvalue_l Lower Value
_ServiceContractCanclnStsTxt _ServiceContractCanclnStsTxt

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_ServiceContractCanclnSts.
-- 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: ISRVCCNTCANCSTS

CREATE VIEW I_ServiceContractCanclnSts AS
SELECT
  domvalue_l AS ServiceContractCanclnSts
FROM dd07l
LEFT OUTER JOIN I_ServiceContractCanclnStsTxt AS _ServiceContractCanclnStsTxt ON ServiceContractCanclnSts = _ServiceContractCanclnStsTxt.ServiceContractCanclnSts  -- association [1..*]
;