C_AllocLastExecByUserVH

DDL: C_ALLOCLASTEXECBYUSERVH SQL: CALLOCEXECBY Type: view CONSUMPTION

Allocation Last Execution By User VH

C_AllocLastExecByUserVH is a Consumption CDS View that provides data about "Allocation Last Execution By User VH" in SAP S/4HANA. It reads from 1 data source (I_UserContactCard) and exposes 14 fields with key field AllocationLastExecutedByUser. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_UserContactCard _UserContactCard from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_AllocationCycle _AllocationCycle $projection.AllocationLastExecutedByUser = _AllocationCycle.AllocationLastExecutedByUser

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CALLOCEXECBY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Allocation Last Execution By User VH view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY AllocationLastExecutedByUser ContactCardID User name
Person I_UserContactCard Person Person/ Farm/ Field
BusinessPartnerUUID I_UserContactCard BusinessPartnerUUID UUID
FirstName I_UserContactCard FirstName First Name
LastName I_UserContactCard LastName Last Name
FullName I_UserContactCard FullName Name
AddressID I_UserContactCard AddressID Ship-to address
PhoneNumber I_UserContactCard PhoneNumber Telephone no.
MobilePhoneNumber I_UserContactCard MobilePhoneNumber Telephone
FaxNumber I_UserContactCard FaxNumber Fax Number
EmailAddress I_UserContactCard EmailAddress E-Mail Address
Department I_UserContactCard Department Department
FunctionalTitleName I_UserContactCard FunctionalTitleName Unit Func.
_AllocationCycle _AllocationCycle

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_AllocLastExecByUserVH.
-- 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: CALLOCEXECBY

CREATE VIEW C_AllocLastExecByUserVH AS
SELECT
  ContactCardID AS AllocationLastExecutedByUser,
  _UserContactCard.Person AS Person,
  _UserContactCard.BusinessPartnerUUID AS BusinessPartnerUUID,
  _UserContactCard.FirstName AS FirstName,
  _UserContactCard.LastName AS LastName,
  _UserContactCard.FullName AS FullName,
  _UserContactCard.AddressID AS AddressID,
  _UserContactCard.PhoneNumber AS PhoneNumber,
  _UserContactCard.MobilePhoneNumber AS MobilePhoneNumber,
  _UserContactCard.FaxNumber AS FaxNumber,
  _UserContactCard.EmailAddress AS EmailAddress,
  _UserContactCard.Department AS Department,
  _UserContactCard.FunctionalTitleName AS FunctionalTitleName
FROM I_UserContactCard AS _UserContactCard
LEFT OUTER JOIN I_AllocationCycle AS _AllocationCycle ON AllocationLastExecutedByUser = _AllocationCycle.AllocationLastExecutedByUser  -- association [1..*]
;