C_SuplrInvcUpldLastChgdByUsrVH

DDL: C_SUPLRINVCUPLDLASTCHGDBYUSRVH SQL: CUPDLLCVH Type: view CONSUMPTION

Supplier Invoice Upload Last Changed By Value Help

C_SuplrInvcUpldLastChgdByUsrVH is a Consumption CDS View that provides data about "Supplier Invoice Upload Last Changed By Value Help" in SAP S/4HANA. It has 1 association to related views.

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_SuplrInvcCreatedByValHelp _SuplrInvcCreatedByValHelp $projection.LastChangedByUser = _SuplrInvcCreatedByValHelp.UserID

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName CUPDLLCVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Supplier Invoice Upload Last Changed By Value Help view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #NONE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey LastChangedByUser view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
AccessControl.personalData.blocking #REQUIRED view
Consumption.ranked true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY LastChangedByUser LastChangedByUser User Name
FirstName _SuplrInvcCreatedByValHelp FirstName First Name
LastName _SuplrInvcCreatedByValHelp LastName Last Name
UserDescription _SuplrInvcCreatedByValHelp UserDescription Full Name
_SuplrInvcCreatedByValHelp _SuplrInvcCreatedByValHelp

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_SuplrInvcUpldLastChgdByUsrVH.
-- 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: CUPDLLCVH

CREATE VIEW C_SuplrInvcUpldLastChgdByUsrVH AS
SELECT
  LastChangedByUser,
  _SuplrInvcCreatedByValHelp.FirstName AS FirstName,
  _SuplrInvcCreatedByValHelp.LastName AS LastName,
  _SuplrInvcCreatedByValHelp.UserDescription AS UserDescription
LEFT OUTER JOIN I_SuplrInvcCreatedByValHelp AS _SuplrInvcCreatedByValHelp ON LastChangedByUser = _SuplrInvcCreatedByValHelp.UserID  -- association [1..1]
;