Deprecated SAP_INTERNAL_API
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

I_SitnDefSchedldBatchTP

DDL: I_SITNDEFSCHEDLDBATCHTP Type: view TRANSACTIONAL

Situation Technical Job Parameters

I_SitnDefSchedldBatchTP is a Transactional CDS View that provides data about "Situation Technical Job Parameters" in SAP S/4HANA. It reads from 1 data source (I_SitnSchedldBatch) and exposes 5 fields with key field SitnDefinitionID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SitnSchedldBatch TechJob from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_SitnDefinitionTP _Definition $projection.SitnDefinitionID = _Definition.SitnDefinitionID

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName ISITNDEFTECJOBTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.lifecycle.status #DEPRECATED view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled false view
ObjectModel.modelCategory #BUSINESS_OBJECT view
ObjectModel.writeDraftPersistence SIT_D_TECH_JOB view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Situation Technical Job Parameters view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SitnDefinitionID I_SitnSchedldBatch SitnDefinitionID Situation Type ID
SitnSchedldBatchStartTime I_SitnSchedldBatch SitnSchedldBatchStartTime Scheduled Start Time
SitnSchedldBatchTimeZone I_SitnSchedldBatch SitnSchedldBatchTimeZone Time Zone for Batch
SitnSchedldBatchLastRunDateTme I_SitnSchedldBatch SitnSchedldBatchLastRunDateTme Last Run of Batch
_Definition _Definition

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_SitnDefSchedldBatchTP.
-- 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 I_SitnDefSchedldBatchTP AS
SELECT
  TechJob.SitnDefinitionID AS SitnDefinitionID,
  TechJob.SitnSchedldBatchStartTime AS SitnSchedldBatchStartTime,
  TechJob.SitnSchedldBatchTimeZone AS SitnSchedldBatchTimeZone,
  TechJob.SitnSchedldBatchLastRunDateTme AS SitnSchedldBatchLastRunDateTme
FROM I_SitnSchedldBatch AS TechJob
LEFT OUTER JOIN I_SitnDefinitionTP AS _Definition ON SitnDefinitionID = _Definition.SitnDefinitionID  -- association [1..1]
;