C_TechObjServiceOrder

DDL: C_TECHOBJSERVICEORDER SQL: CTECHOBJSRVORD Type: view CONSUMPTION

Service order for technical object

C_TechObjServiceOrder is a Consumption CDS View that provides data about "Service order for technical object" in SAP S/4HANA. It reads from 1 data source (I_TechObjServiceOrder) and exposes 46 fields with key fields TechObjIsEquipOrFuncnlLoc, TechnicalObject, ServiceDocument.

Data Sources (1)

SourceAliasJoin Type
I_TechObjServiceOrder _TechObjServiceOrder from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CTECHOBJSRVORD view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Service order for technical object view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (46)

KeyFieldSource TableSource FieldDescription
KEY TechObjIsEquipOrFuncnlLoc TechObjIsEquipOrFuncnlLoc Technical Object Type
KEY TechnicalObject TechnicalObject Technical Object
KEY ServiceDocument ServiceDocument Service Order
ServiceObjectType ServiceObjectType Object Type
ServiceDocumentDescription ServiceDocumentDescription Service Order Description
ServiceDocumentType ServiceDocumentType Service Order Type
ServiceDocumentTypeName Service Order Type Description
ServiceDocumentStatus ServiceDocumentStatus Life Cycle Status
ServiceDocumentStatusName Life Cycle Status Description
ServiceDocumentPriority ServiceDocumentPriority
ServiceDocumentPriorityName Priority Description
PostingDate PostingDate Posting Date for GR
TechnicalObjectLabel TechnicalObjectLabel Tech. Object
TechnicalObjectDescription TechnicalObjectDescription Technical Object Description
TechObjIsEquipOrFuncnlLocDesc Technical Object Type Description
ServiceDocumentCreatedByUser ServiceDocumentCreatedByUser Created By
UserDescription _CreatedByUser UserDescription Created By User Description
SalesOrganization SalesOrganization Sales Organization
SalesOffice SalesOffice Sales Office
SalesGroup SalesGroup Sales Group
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
Division Division Internal Division ID
SalesOrganizationOrgUnitID SalesOrganizationOrgUnitID
SalesOfficeOrgUnitID SalesOfficeOrgUnitID
SalesGroupOrgUnitID SalesGroupOrgUnitID
ServiceOrganization ServiceOrganization
ResponsibleEmployee ResponsibleEmployee Employee Resp.
_TechnicalObject _TechnicalObject
_TechObjIsEquipOrFuncnlLoc _TechObjIsEquipOrFuncnlLoc
_ServiceDocumentType _ServiceDocumentType
_ServiceDocumentStatus _ServiceDocumentStatus
_SrvcDocLifecycleStatus _SrvcDocLifecycleStatus
_ServiceDocumentPriority _ServiceDocumentPriority
_SalesOrganization _SalesOrganization
_SalesOffice _SalesOffice
_SalesGroup _SalesGroup
_DistributionChannel _DistributionChannel
_Division _Division
_SalesOrganizationOrgUnit _SalesOrganizationOrgUnit
_SalesOrganizationOrgUnit_2 _SalesOrganizationOrgUnit_2
_SalesOfficeOrgUnit _SalesOfficeOrgUnit
_SalesOfficeOrgUnit_2 _SalesOfficeOrgUnit_2
_SalesGroupOrgUnit _SalesGroupOrgUnit
_SalesGroupOrgUnit_2 _SalesGroupOrgUnit_2
_RespEmployee _RespEmployee
_CreatedByUser _CreatedByUser

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 C_TechObjServiceOrder.
-- 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: CTECHOBJSRVORD

CREATE VIEW C_TechObjServiceOrder AS
SELECT
  TechObjIsEquipOrFuncnlLoc,
  TechnicalObject,
  ServiceDocument,
  ServiceObjectType,
  ServiceDocumentDescription,
  ServiceDocumentType,
  _ServiceDocumentType._ServiceDocumentTypeText[1:Language=$session.system_language].ServiceDocumentTypeName AS ServiceDocumentTypeName,
  ServiceDocumentStatus,
  _SrvcDocLifecycleStatus._ServiceDocumentStatusText[1:Language=$session.system_language].ServiceDocumentStatusName AS ServiceDocumentStatusName,
  ServiceDocumentPriority,
  _ServiceDocumentPriority._ServiceDocumentPriorityText[1:Language=$session.system_language].ServiceDocumentPriorityName AS ServiceDocumentPriorityName,
  PostingDate,
  TechnicalObjectLabel,
  TechnicalObjectDescription,
  _TechObjIsEquipOrFuncnlLoc._Text[1:Language=$session.system_language].TechObjIsEquipOrFuncnlLocDesc AS TechObjIsEquipOrFuncnlLocDesc,
  ServiceDocumentCreatedByUser,
  _CreatedByUser.UserDescription AS UserDescription,
  SalesOrganization,
  SalesOffice,
  SalesGroup,
  DistributionChannel,
  Division,
  SalesOrganizationOrgUnitID,
  SalesOfficeOrgUnitID,
  SalesGroupOrgUnitID,
  ServiceOrganization,
  ResponsibleEmployee
FROM I_TechObjServiceOrder AS _TechObjServiceOrder
;