I_DgtlAccLicMaintenanceOrder

DDL: I_DGTLACCLICMAINTENANCEORDER SQL: IDGACLICMAINTORD Type: view BASIC

Digital Access Logging Table for Maintenance Order

I_DgtlAccLicMaintenanceOrder is a Basic CDS View that provides data about "Digital Access Logging Table for Maintenance Order" in SAP S/4HANA. It reads from 1 data source (dac_d_maintorder) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
dac_d_maintorder dac_d_maintorder from

Annotations (10)

NameValueLevelField
EndUserText.label Digital Access Logging Table for Maintenance Order view
AbapCatalog.sqlViewName IDGACLICMAINTORD view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
DgtlAccLicDocumentItemID document_type Unit
DgtlAccLicActionType action_type Action Type
NrOfDgtlAccLicUsed instance_count INT4
DgtlAccLicArchivingDate dac_creation_date Current Date

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_DgtlAccLicMaintenanceOrder.
-- 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: IDGACLICMAINTORD

CREATE VIEW I_DgtlAccLicMaintenanceOrder AS
SELECT
  document_type AS DgtlAccLicDocumentItemID,
  action_type AS DgtlAccLicActionType,
  instance_count AS NrOfDgtlAccLicUsed,
  dac_creation_date AS DgtlAccLicArchivingDate
FROM dac_d_maintorder
;