C_RFQValueHelp

DDL: C_RFQVALUEHELP SQL: CRFQVALUEHELP Type: view CONSUMPTION

Request for Quotation Value Help

C_RFQValueHelp is a Consumption CDS View that provides data about "Request for Quotation Value Help" in SAP S/4HANA. It reads from 1 data source (I_RequestForQuotation) and exposes 11 fields with key field RequestForQuotation. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_RequestForQuotation I_RequestForQuotation from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_PurchasingDocumentTypeText _RFQTypeText _RFQTypeText.PurchasingDocumentType = $projection.RFQType and _RFQTypeText.PurchasingDocumentCategory = $projection.RFQCategory
[0..1] I_UserContactCard _UserContactCard _UserContactCard.ContactCardID = $projection.CreatedByUser

Annotations (12)

NameValueLevelField
ObjectModel.representativeKey RequestForQuotation view
ObjectModel.semanticKey RequestForQuotation view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName CRFQVALUEHELP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
Search.searchable true view
EndUserText.label Request for Quotation Value Help view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY RequestForQuotation I_RequestForQuotation RequestForQuotation
RFQType I_RequestForQuotation PurchasingDocumentType
RFQCategory I_RequestForQuotation PurchasingDocumentCategory
RequestForQuotationName I_RequestForQuotation RequestForQuotationName
CreatedByUser I_RequestForQuotation CreatedByUser
FullName
PurchasingOrganization PurchasingOrganization
PurchasingGroup PurchasingGroup
PurchasingDocumentType PurchasingDocumentType
IsEndOfPurposeBlocked IsEndOfPurposeBlocked
_RFQTypeText _RFQTypeText
@ObjectModel.representativeKey: 'RequestForQuotation'
@ObjectModel.semanticKey: 'RequestForQuotation'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin

@AbapCatalog.sqlViewName: 'CRFQVALUEHELP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@EndUserText.label: 'Request for Quotation Value Help'

//@AccessControl.privilegedAssociations: [ '_UserContactCard' ]


define view C_RFQValueHelp
  as select from I_RequestForQuotation

  association [0..*] to I_PurchasingDocumentTypeText as _RFQTypeText     on  _RFQTypeText.PurchasingDocumentType     = $projection.RFQType
                                                                         and _RFQTypeText.PurchasingDocumentCategory = $projection.RFQCategory

  association [0..1] to I_UserContactCard            as _UserContactCard on  _UserContactCard.ContactCardID = $projection.CreatedByUser
{

      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
      @ObjectModel.text.association: '_RFQTypeText'
  key I_RequestForQuotation.RequestForQuotation,

      I_RequestForQuotation.PurchasingDocumentType     as RFQType,
      I_RequestForQuotation.PurchasingDocumentCategory as RFQCategory,

      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
      @Semantics.text: true
      I_RequestForQuotation.RequestForQuotationName,

      @ObjectModel.text.element:  [ 'FullName' ]
      @UI.textArrangement: #TEXT_ONLY
      I_RequestForQuotation.CreatedByUser,

      cast( _UserContactCard.FullName as vdm_full_name preserving type) as FullName,
      
      //DCL

      @UI.hidden: true
      PurchasingOrganization,
      @UI.hidden: true
      PurchasingGroup,
      @UI.hidden: true
      PurchasingDocumentType,
      @UI.hidden: true
      IsEndOfPurposeBlocked,

      _RFQTypeText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_REQUESTFORQUOTATION",
"I_USERCONTACTCARD"
],
"ASSOCIATED":
[
"I_PURCHASINGDOCUMENTTYPETEXT",
"I_USERCONTACTCARD"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/