I_InventoryValuationType

DDL: I_INVENTORYVALUATIONTYPE Type: view BASIC

Inventory Valuation Type

I_InventoryValuationType is a Basic CDS View (Dimension) that provides data about "Inventory Valuation Type" in SAP S/4HANA. It reads from 1 data source (t149d) and exposes 4 fields with key field InventoryValuationType.

Data Sources (1)

SourceAliasJoin Type
t149d t149d from

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName IFIINVVALTYPE view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Inventory Valuation Type view
ObjectModel.representativeKey InventoryValuationType view
ObjectModel.sapObjectNodeType.name ProductValuationType view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InventoryValuationType
AcctCategoryRef
InternalPurchasingRule
ExternalPurchasingRule
@AbapCatalog: { sqlViewName: 'IFIINVVALTYPE',
                preserveKey: true,
                compiler.compareFilter: true,
                buffering: { status: #ACTIVE,          
                             type: #GENERIC,
                             numberOfKeyFields: 1 } }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics: { dataCategory: #DIMENSION, 
              dataExtraction.enabled: true }
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Inventory Valuation Type'
@ObjectModel: { representativeKey: 'InventoryValuationType',
                sapObjectNodeType.name: 'ProductValuationType', 
                usageType: { sizeCategory: #S,
                             dataClass:  #MASTER,
                             serviceQuality: #A },
                supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE, #SEARCHABLE_ENTITY],
                modelingPattern: #ANALYTICAL_DIMENSION } 
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@VDM: { lifecycle.contract.type: #PUBLIC_LOCAL_API,
        viewType: #BASIC }

define view I_InventoryValuationType as select from t149d 
{
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  key cast(bwtar as fis_inventory_valuation_type preserving type ) as InventoryValuationType,

  cast(kkref as fis_acct_category_ref preserving type ) as AcctCategoryRef, 
 
  cast(bsint as fis_internal_purchasing_rule preserving type ) as InternalPurchasingRule,
  
  cast(bsext as fis_external_purchasing_rule preserving type ) as ExternalPurchasingRule        
}      
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"T149D"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/