R_SftyCertTechObjDraft

DDL: R_SFTYCERTTECHOBJDRAFT Type: view_entity BASIC

Safety Certificate Technical Object Draft

R_SftyCertTechObjDraft is a Basic CDS View that provides data about "Safety Certificate Technical Object Draft" in SAP S/4HANA. It reads from 1 data source (sftycertechobj_d) and exposes 22 fields with key fields SafetyCertificateInternalID, TechnicalObject, SftyCertItemCatType, DraftUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
sftycertechobj_d sftycertechobj_d from

Associations (1)

CardinalityTargetAliasCondition
[0..1] E_SftyCertTechObjDraft _SftyCertTechObjDExtension $projection.SafetyCertificateInternalID = _SftyCertTechObjDExtension.SafetyCertificateInternalID and $projection.TechnicalObject = _SftyCertTechObjDExtension.TechnicalObject and $projection.SftyCertItemCatType = _SftyCertTechObjDExtension.SftyCertItemCatType and $projection.DraftUUID = _SftyCertTechObjDExtension.DraftUUID

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Safety Certificate Technical Object Draft view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY SafetyCertificateInternalID safetycertificateinternalid Object number
KEY TechnicalObject technicalobject Technical Object
KEY SftyCertItemCatType sftycertitemcattype Item Category
KEY DraftUUID draftuuid UUID
ParentDraftUUID parentdraftuuid NodeID
SafetyCertificate safetycertificate WC Document
MaintenancePlanningPlant maintenanceplanningplant Planning Plant
MaintenancePlant maintenanceplant Plant
TechObjIsEquipOrFuncnlLocDesc techobjisequiporfuncnllocdesc TObj.Type Desc.
TechnicalObjectLabel technicalobjectlabel Tech. Object
TechnicalObjectDescription technicalobjectdescription Tech. Obj. Desc
AssetLocation assetlocation Location
PlantSection plantsection Plant Section
TechObjCnctntdActvSystSts techobjcnctntdactvsyststs Concatenated System Status
MaintObjectInternalID maintobjectinternalid Object number
PlantName plantname Plant Name
DraftEntityCreationDateTime draftentitycreationdatetime Draft Created On
DraftEntityLastChangeDateTime draftentitylastchangedatetime Draft Last Changed On
DraftAdministrativeDataUUID draftadministrativedatauuid UUID
DraftEntityOperationCode draftentityoperationcode Draft - Operation Code
HasActiveEntity hasactiveentity TRUE
DraftFieldChanges draftfieldchanges Field Changes

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_SftyCertTechObjDraft.
-- 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_SftyCertTechObjDraft AS
SELECT
  SafetyCertificateInternalID,
  TechnicalObject,
  SftyCertItemCatType,
  DraftUUID,
  ParentDraftUUID,
  SafetyCertificate,
  MaintenancePlanningPlant,
  MaintenancePlant,
  TechObjIsEquipOrFuncnlLocDesc,
  TechnicalObjectLabel,
  TechnicalObjectDescription,
  AssetLocation,
  PlantSection,
  TechObjCnctntdActvSystSts,
  MaintObjectInternalID,
  PlantName,
  DraftEntityCreationDateTime,
  DraftEntityLastChangeDateTime,
  DraftAdministrativeDataUUID,
  DraftEntityOperationCode,
  HasActiveEntity,
  DraftFieldChanges
FROM sftycertechobj_d
LEFT OUTER JOIN E_SftyCertTechObjDraft AS _SftyCertTechObjDExtension ON SafetyCertificateInternalID = _SftyCertTechObjDExtension.SafetyCertificateInternalID AND TechnicalObject = _SftyCertTechObjDExtension.TechnicalObject AND SftyCertItemCatType = _SftyCertTechObjDExtension.SftyCertItemCatType AND DraftUUID = _SftyCertTechObjDExtension.DraftUUID  -- association [0..1]
;