I_TechObjCustWrntyAssgmt

DDL: I_TECHOBJCUSTWRNTYASSGMT SQL: ICUSTWRNTYASSGMT Type: view BASIC

Customer Warranty Assignment

I_TechObjCustWrntyAssgmt is a Basic CDS View that provides data about "Customer Warranty Assignment" in SAP S/4HANA. It reads from 1 data source (I_MasterWrntyObjectAssgmt) and exposes 11 fields with key field ObjectInternalID.

Data Sources (1)

SourceAliasJoin Type
I_MasterWrntyObjectAssgmt I_MasterWrntyObjectAssgmt from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICUSTWRNTYASSGMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Customer Warranty Assignment view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY ObjectInternalID ObjectInternalID Object number
WarrantyType WarrantyType Warranty type
TechObjCustomerMasterWarranty MasterWarranty Master warranty
TechObjCustWarrantyStartDate WarrantyStartDate Warranty Start
TechObjCustWarrantyEndDate WarrantyEndDate Warranty end
CreationDate CreationDate Time Stamp
AuthorizationGroup AuthorizationGroup AuthorizGroup
TechObjIsCustWarrantyPassedOn WrntyIsPassedOnToChildObject Pass on warrnty
TechObjIsCustWarrantyInherited WrntyIsInhtdFromSuperiorObject InheritWarranty
_MasterWarranty _MasterWarranty
_WarrantyType _WarrantyType

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_TechObjCustWrntyAssgmt.
-- 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: ICUSTWRNTYASSGMT

CREATE VIEW I_TechObjCustWrntyAssgmt AS
SELECT
  ObjectInternalID,
  WarrantyType,
  MasterWarranty AS TechObjCustomerMasterWarranty,
  WarrantyStartDate AS TechObjCustWarrantyStartDate,
  WarrantyEndDate AS TechObjCustWarrantyEndDate,
  CreationDate,
  AuthorizationGroup,
  WrntyIsPassedOnToChildObject AS TechObjIsCustWarrantyPassedOn,
  WrntyIsInhtdFromSuperiorObject AS TechObjIsCustWarrantyInherited
FROM I_MasterWrntyObjectAssgmt
;