R_FuncnlLocWrntyAssgmtTP

DDL: R_FUNCNLLOCWRNTYASSGMTTP Type: view_entity TRANSACTIONAL

Functional Location Warranty

R_FuncnlLocWrntyAssgmtTP is a Transactional CDS View that provides data about "Functional Location Warranty" in SAP S/4HANA. It reads from 1 data source (I_FunctionalLocation) and exposes 9 fields with key fields FunctionalLocation, WarrantyType.

Data Sources (1)

SourceAliasJoin Type
I_FunctionalLocation I_FunctionalLocation from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Functional Location Warranty view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY FunctionalLocation
KEY WarrantyType I_MasterWrntyObjectAssgmt WarrantyType
FunctionalLocationLabelName _FunctionalLocation FunctionalLocationLabelName Functional Loc.
MasterWarranty I_MasterWrntyObjectAssgmt MasterWarranty
WarrantyStartDate I_MasterWrntyObjectAssgmt WarrantyStartDate
WarrantyEndDate I_MasterWrntyObjectAssgmt WarrantyEndDate
WrntyIsInhtdFromSuperiorObject I_MasterWrntyObjectAssgmt WrntyIsInhtdFromSuperiorObject
WrntyIsPassedOnToChildObject I_MasterWrntyObjectAssgmt WrntyIsPassedOnToChildObject
_FunctionalLocation _FunctionalLocation

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 R_FuncnlLocWrntyAssgmtTP.
-- 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 R_FuncnlLocWrntyAssgmtTP AS
SELECT
  cast(I_FunctionalLocation.FunctionalLocation as tplnr_unconverted preserving type) AS FunctionalLocation,
  I_MasterWrntyObjectAssgmt.WarrantyType AS WarrantyType,
  _FunctionalLocation.FunctionalLocationLabelName AS FunctionalLocationLabelName,
  I_MasterWrntyObjectAssgmt.MasterWarranty AS MasterWarranty,
  I_MasterWrntyObjectAssgmt.WarrantyStartDate AS WarrantyStartDate,
  I_MasterWrntyObjectAssgmt.WarrantyEndDate AS WarrantyEndDate,
  I_MasterWrntyObjectAssgmt.WrntyIsInhtdFromSuperiorObject AS WrntyIsInhtdFromSuperiorObject,
  I_MasterWrntyObjectAssgmt.WrntyIsPassedOnToChildObject AS WrntyIsPassedOnToChildObject
FROM I_FunctionalLocation
;