I_MasterWarrantyTP

DDL: I_MASTERWARRANTYTP Type: view_entity TRANSACTIONAL Package: RAP_EAM_MASTERWARRANTY

Master Warranty Header - TP

I_MasterWarrantyTP is a Transactional CDS View that provides data about "Master Warranty Header - TP" in SAP S/4HANA. It reads from 1 data source (R_MasterWarrantyTP) and exposes 19 fields with key field MasterWarranty. Part of development package RAP_EAM_MASTERWARRANTY.

Data Sources (1)

SourceAliasJoin Type
R_MasterWarrantyTP R_MasterWarrantyTP projection

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Master Warranty Header - TP view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.sapObjectNodeType.name MasterWarranty view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY MasterWarranty MasterWarranty
WarrantyType WarrantyType
ExternalWarranty ExternalWarranty
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
WarrantySortField WarrantySortField
WarrantyGroup WarrantyGroup
CreationDate CreationDate Time Stamp
CreatedByUser CreatedByUser User Name
LastChangeDate LastChangeDate Time Stamp
LastChangedByUser LastChangedByUser User Name
AuthorizationGroup AuthorizationGroup AuthorizGroup
IsDeleted IsDeleted TRUE
ObjectInternalID ObjectInternalID Object number
PartnerSchema PartnerSchema
Language Language Report Text Language
MstrWrntyAttachmentIsEnabled MstrWrntyAttachmentIsEnabled
MasterWarrantyChangeDateTime MasterWarrantyChangeDateTime
MasterWarrantyIsPassedOn MasterWarrantyIsPassedOn

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_MasterWarrantyTP.
-- 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_MasterWarrantyTP AS
SELECT
  MasterWarranty,
  WarrantyType,
  ExternalWarranty,
  ValidityStartDate,
  ValidityEndDate,
  WarrantySortField,
  WarrantyGroup,
  CreationDate,
  CreatedByUser,
  LastChangeDate,
  LastChangedByUser,
  AuthorizationGroup,
  IsDeleted,
  ObjectInternalID,
  PartnerSchema,
  Language,
  MstrWrntyAttachmentIsEnabled,
  MasterWarrantyChangeDateTime,
  MasterWarrantyIsPassedOn
FROM R_MasterWarrantyTP
;