I_JITOutbSqncCallCrtedByUsrVH

DDL: I_JITOUTBSQNCCALLCRTEDBYUSRVH Type: view_entity COMPOSITE

Basic for Created By

I_JITOutbSqncCallCrtedByUsrVH is a Composite CDS View that provides data about "Basic for Created By" in SAP S/4HANA. It reads from 1 data source (I_AddressPersonName) and exposes 3 fields with key field Person. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_AddressPersonName I_AddressPersonName from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_UserContactCard _UserContactCard _UserContactCard.Person = $projection.Person

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Basic for Created By view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Person view
Analytics.technicalName IJITOCRVH view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Person AddressPersonID Person Number
ContactCardID _UserContactCard ContactCardID
FullName PersonFullName Full Name

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_JITOutbSqncCallCrtedByUsrVH.
-- 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_JITOutbSqncCallCrtedByUsrVH AS
SELECT
  AddressPersonID AS Person,
  _UserContactCard.ContactCardID AS ContactCardID,
  PersonFullName AS FullName
FROM I_AddressPersonName
LEFT OUTER JOIN I_UserContactCard AS _UserContactCard ON _UserContactCard.Person = Person  -- association [0..1]
;