C_AllocRunExecutedByUserVH

DDL: C_ALLOCRUNEXECUTEDBYUSERVH SQL: CALRUNEXECBY Type: view CONSUMPTION

Allocation Run Executed By User VH

C_AllocRunExecutedByUserVH is a Consumption CDS View that provides data about "Allocation Run Executed By User VH" in SAP S/4HANA. It has 1 association to related views.

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_UserContactCard _UserContactCard $projection.AllocationRunUser = _UserContactCard.ContactCardID

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CALRUNEXECBY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Allocation Run Executed By User VH 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 (13)

KeyFieldSource TableSource FieldDescription
KEY AllocationRunUser AllocationRunUser
Person _UserContactCard Person Person/ Farm/ Field
FirstName _UserContactCard FirstName First Name
LastName _UserContactCard LastName Last Name
FullName _UserContactCard FullName Name
AddressID _UserContactCard AddressID Ship-to address
PhoneNumber _UserContactCard PhoneNumber Telephone no.
MobilePhoneNumber _UserContactCard MobilePhoneNumber Telephone
AddressFaxNumber _UserContactCard FaxNumber Fax Number
EmailAddress _UserContactCard EmailAddress E-Mail Address
Department _UserContactCard Department Department
FunctionalTitleName _UserContactCard FunctionalTitleName
_UserContactCard _UserContactCard

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_AllocRunExecutedByUserVH.
-- 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: CALRUNEXECBY

CREATE VIEW C_AllocRunExecutedByUserVH AS
SELECT
  AllocationRunUser,
  _UserContactCard.Person AS Person,
  _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 AddressFaxNumber,
  _UserContactCard.EmailAddress AS EmailAddress,
  _UserContactCard.Department AS Department,
  _UserContactCard.FunctionalTitleName AS FunctionalTitleName
LEFT OUTER JOIN I_UserContactCard AS _UserContactCard ON AllocationRunUser = _UserContactCard.ContactCardID  -- association [1..1]
;