Deprecated PUBLIC_LOCAL_API
This CDS view is deprecated in S/4HANA. Use I_DocumentInfoRecordLbtryOffc instead. View all deprecated CDS views →

I_DocInfoRecdLabOffice

DDL: I_DOCINFORECDLABOFFICE SQL: ICVLABOFFICE Type: view BASIC

Laboratory Design Office

I_DocInfoRecdLabOffice is a Basic CDS View (Dimension) that provides data about "Laboratory Design Office" in SAP S/4HANA. It reads from 1 data source (t024l) and exposes 2 fields with key field LaboratoryOrDesignOffice. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t024l t024l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DocInfoRecdLabOfficeText _LabOfficeText $projection.LaboratoryOrDesignOffice = _LabOfficeText.LaboratoryOrDesignOffice

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ICVLABOFFICE view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Laboratory Design Office view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
ObjectModel.representativeKey LaboratoryOrDesignOffice view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_DocumentInfoRecordLbtryOffc view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY LaboratoryOrDesignOffice t024l labor Work Center
_LabOfficeText _LabOfficeText

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_DocInfoRecdLabOffice.
-- 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: ICVLABOFFICE

CREATE VIEW I_DocInfoRecdLabOffice AS
SELECT
  t024l.labor AS LaboratoryOrDesignOffice
FROM t024l
LEFT OUTER JOIN I_DocInfoRecdLabOfficeText AS _LabOfficeText ON LaboratoryOrDesignOffice = _LabOfficeText.LaboratoryOrDesignOffice  -- association [0..*]
;