R_InspectionLotStatusTP

DDL: R_INSPECTIONLOTSTATUSTP Type: view_entity TRANSACTIONAL

Inspection Lot Status - TP

R_InspectionLotStatusTP is a Transactional CDS View that provides data about "Inspection Lot Status - TP" in SAP S/4HANA. It reads from 1 data source (I_InspectionLotStatus1) and exposes 5 fields with key fields InspectionLot, StatusCode.

Data Sources (1)

SourceAliasJoin Type
I_InspectionLotStatus1 InspectionLotStatus from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Inspection Lot Status - TP view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot InspectionLot Inspection Lot
KEY StatusCode StatusCode Statuscode
StatusObject StatusObject Status Object
_InspectionLot _InspectionLot
_StatusObject _StatusObject

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_InspectionLotStatusTP.
-- 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_InspectionLotStatusTP AS
SELECT
  InspectionLot,
  StatusCode,
  StatusObject
FROM I_InspectionLotStatus1 AS InspectionLotStatus
;