I_VariantsPricingProfile

DDL: I_VARIANTSPRICINGPROFILE SQL: IVARIANTSPRIPROF Type: view BASIC

Variants Pricing Profile

I_VariantsPricingProfile is a Basic CDS View (Dimension) that provides data about "Variants Pricing Profile" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field VariantsPricingProfile. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_VariantsPricingProfileText _Text

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName IVARIANTSPRIPROF view
EndUserText.label Variants Pricing Profile view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.supportedCapabilities #VALUE_HELP_PROVIDER view
ObjectModel.compositionRoot true view
ObjectModel.representativeKey VariantsPricingProfile view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #META view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY VariantsPricingProfile
DomainValue dd07l domvalue_l
_Text _Text
@AbapCatalog.sqlViewName: 'IVARIANTSPRIPROF'
@EndUserText.label: 'Variants Pricing Profile'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@Analytics.internalName: #LOCAL
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
    supportedCapabilities: #VALUE_HELP_PROVIDER,
    compositionRoot: true,
    representativeKey: 'VariantsPricingProfile',
    usageType.serviceQuality: #A,
    usageType.sizeCategory: #S,
    resultSet.sizeCategory: #XS,
    usageType.dataClass: #META,
    dataCategory: #VALUE_HELP
}
@Search.searchable: true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
define root view I_VariantsPricingProfile
  as select from dd07l
  composition [0..*] of I_VariantsPricingProfileText as _Text
{
      @ObjectModel.text.association: '_Text'
  key cast( dd07l.domvalue_l as variantspricingprofile ) as VariantsPricingProfile,
      @Consumption.hidden: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      dd07l.domvalue_l                  as DomainValue,
      _Text

}
where
      domname  = 'SPROF'
  and as4local = 'A'
  and as4vers  = '0000';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_VARIANTSPRICINGPROFILETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/