C_FinClosingRunCreatedByUserVH

DDL: C_FINCLOSINGRUNCREATEDBYUSERVH SQL: CCLSRUNCRTDVH Type: view CONSUMPTION

Financial Closing Run Created by User

C_FinClosingRunCreatedByUserVH is a Consumption CDS View that provides data about "Financial Closing Run Created by User" in SAP S/4HANA. It reads from 1 data source (I_UserContactCard) and exposes 9 fields with key field JrnlPerdEndClsgRunCrtedByUser. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_UserContactCard _User inner

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_JrnlPeriodEndClosingRunLog _ClosingRun2 _ClosingRun2.JrnlPerdEndClsgRunCrtedByUser = $projection.JrnlPerdEndClsgRunCrtedByUser

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CCLSRUNCRTDVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Financial Closing Run Created by User view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #CONSUMPTION view
Search.searchable true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY JrnlPerdEndClsgRunCrtedByUser
FirstName I_UserContactCard FirstName
LastName I_UserContactCard LastName
FullName I_UserContactCard FullName
Department I_UserContactCard Department
EmailAddress I_UserContactCard EmailAddress
PhoneNumber I_UserContactCard PhoneNumber
MobilePhoneNumber I_UserContactCard MobilePhoneNumber
_ClosingRun2 _ClosingRun2
@AbapCatalog.sqlViewName: 'CCLSRUNCRTDVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Financial Closing Run Created by User'
@AccessControl.personalData.blocking: #REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.dataCategory: #VALUE_HELP
@VDM.viewType: #CONSUMPTION

@Search.searchable: true
define view C_FinClosingRunCreatedByUserVH
  as select distinct from I_JrnlPeriodEndClosingRunLog    as _ClosingRun
    inner join            I_UserContactCard as _User on _ClosingRun.JrnlPerdEndClsgRunCrtedByUser = _User.ContactCardID
  association [1..*] to I_JrnlPeriodEndClosingRunLog as _ClosingRun2 on _ClosingRun2.JrnlPerdEndClsgRunCrtedByUser = $projection.JrnlPerdEndClsgRunCrtedByUser
{
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
      @ObjectModel.text.element: 'FullName'
      @Consumption.semanticObject: 'Employee'
  key cast(_ClosingRun.JrnlPerdEndClsgRunCrtedByUser as xuser ) as JrnlPerdEndClsgRunCrtedByUser,
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7}
      _User.FirstName,
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7}
      _User.LastName,
      @Semantics.text: true
      _User.FullName,
      _User.Department,
      _User.EmailAddress,
      _User.PhoneNumber,
      _User.MobilePhoneNumber,
      @Consumption.hidden: true
      _ClosingRun2
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_JRNLPERIODENDCLOSINGRUNLOG",
"I_USERCONTACTCARD"
],
"ASSOCIATED":
[
"I_JRNLPERIODENDCLOSINGRUNLOG"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/