I_WrntyClmControllingItemType

DDL: I_WRNTYCLMCONTROLLINGITEMTYPE SQL: IWRNTYCTRLITMTP Type: view BASIC

Warranty Claim Controlling item type

I_WrntyClmControllingItemType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Warranty Claim · Warranty Management

I_WrntyClmControllingItemType is a Basic CDS View (Dimension) that provides data about "Warranty Claim Controlling item type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field WrntyControllingItemType. It has 1 association to related views.

SAP Help Documentation

CategoryWarranty Management
Data CategoryDimension
Purpose
This CDS view provides the prerequisites for answering questions about all relevant aspects of warranty claim controlling item type.

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Important Fields Important fields in this view include the following: Field Name Description WrntyControllingItemType Warranty controlling item type at the line item level

Data Extraction
Data Extraction Type This CDS view is enabled for data extraction in full mode.

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessWarranty Management
Application ComponentLO-WTY-FIO
CapabilitiesAssociation Target for Defining CDS Entities, Analytical Dimension, Data Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Data Extraction
PackageWarranty Management for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering questions about all relevant aspects of warranty claim controlling item type. </p>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_WrntyClaimCtrlgItemTypeText _Text $projection.WrntyControllingItemType = _Text.WrntyControllingItemType

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IWRNTYCTRLITMTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Warranty Claim Controlling item type view
ObjectModel.representativeKey WrntyControllingItemType view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name WarrantyClaim view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY WrntyControllingItemType Controlling Item Type
_Text _Text

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_WrntyClmControllingItemType.
-- 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: IWRNTYCTRLITMTP

CREATE VIEW I_WrntyClmControllingItemType AS
SELECT
  cast( domvalue_l as wty_poskt ) AS WrntyControllingItemType
FROM dd07l
LEFT OUTER JOIN I_WrntyClaimCtrlgItemTypeText AS _Text ON WrntyControllingItemType = _Text.WrntyControllingItemType  -- association [1..*]
;