R_Sitn2ObjValHelpServiceTP

DDL: R_SITN2OBJVALHELPSERVICETP SQL: RSITN2OBJVHSRVTP Type: view TRANSACTIONAL

Situation Object Value Help Service - TP

R_Sitn2ObjValHelpServiceTP is a Transactional CDS View that provides data about "Situation Object Value Help Service - TP" in SAP S/4HANA. It reads from 1 data source (R_Sitn2ObjValHelpService) and exposes 12 fields with key fields SitnObjectID, SitnValHelpSrvcID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
R_Sitn2ObjValHelpService R_Sitn2ObjValHelpService from

Associations (2)

CardinalityTargetAliasCondition
[1..1] R_Sitn2ObjectTP _Object $projection.SitnObjectID = _Object.SitnObjectID
[1..*] R_Sitn2ObjValHelpSrvcPrptyTP _ObjectValHelpServiceProperty $projection.SitnObjectID = _ObjectValHelpServiceProperty.SitnObjectID and $projection.SitnValHelpSrvcID = _ObjectValHelpServiceProperty.SitnValHelpSrvcID

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName RSITN2OBJVHSRVTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.modelCategory #BUSINESS_OBJECT view
ObjectModel.writeDraftPersistence SIT2_D_OBJ_VHS view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Situation Object Value Help Service - TP view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY SitnObjectID SitnObjectID Situation Object ID
KEY SitnValHelpSrvcID SitnValHelpSrvcID Service ID for Value Help
SitnValHelpSrvcProtclVers SitnValHelpSrvcProtclVers Srv Protocol Version
SitnValHelpSrvcPathType SitnValHelpSrvcPathType Srv Path Type for VH
SitnValHelpSrvcCustomPath SitnValHelpSrvcCustomPath Serv. Cust. Path VH
SitnValHelpSrvcBinding SitnValHelpSrvcBinding Service Binding VH
SitnValHelpSrvcDefinition SitnValHelpSrvcDefinition Service Def. for VH
SitnValHelpSrvcVersion SitnValHelpSrvcVersion Srv. Version VH
SitnValHelpSrvcScope SitnValHelpSrvcScope Source
SitnValHelpSrvcIsReusable SitnValHelpSrvcIsReusable Object Reusable
_Object _Object
_ObjectValHelpServiceProperty _ObjectValHelpServiceProperty

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_Sitn2ObjValHelpServiceTP.
-- 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: RSITN2OBJVHSRVTP

CREATE VIEW R_Sitn2ObjValHelpServiceTP AS
SELECT
  SitnObjectID,
  SitnValHelpSrvcID,
  SitnValHelpSrvcProtclVers,
  SitnValHelpSrvcPathType,
  SitnValHelpSrvcCustomPath,
  SitnValHelpSrvcBinding,
  SitnValHelpSrvcDefinition,
  SitnValHelpSrvcVersion,
  SitnValHelpSrvcScope,
  SitnValHelpSrvcIsReusable
FROM R_Sitn2ObjValHelpService
LEFT OUTER JOIN R_Sitn2ObjectTP AS _Object ON SitnObjectID = _Object.SitnObjectID  -- association [1..1]
LEFT OUTER JOIN R_Sitn2ObjValHelpSrvcPrptyTP AS _ObjectValHelpServiceProperty ON SitnObjectID = _ObjectValHelpServiceProperty.SitnObjectID AND SitnValHelpSrvcID = _ObjectValHelpServiceProperty.SitnValHelpSrvcID  -- association [1..*]
;