I_Stockcustomising

DDL: I_STOCKCUSTOMISING SQL: ISTOCKCUST Type: view BASIC

View for customizing for stock champion

I_Stockcustomising is a Basic CDS View that provides data about "View for customizing for stock champion" in SAP S/4HANA. It reads from 1 data source (stck_cust_table) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
stck_cust_table cust from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ISTOCKCUST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label View for customizing for stock champion view

Fields (4)

KeyFieldSource TableSource FieldDescription
SAPClient stck_cust_table mandt
SalvageDate stck_cust_table salvagedate
ToleranceLevel stck_cust_table tolerancelevel
CustomerType stck_cust_table customertype
@AbapCatalog.sqlViewName: 'ISTOCKCUST'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.type : #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass:#CUSTOMIZING}
@EndUserText.label: 'View for customizing for stock champion'
define view I_Stockcustomising
  as select from stck_cust_table as cust
{
  cust.mandt          as SAPClient,
  cust.salvagedate    as SalvageDate,
  cust.tolerancelevel as ToleranceLevel,
  cust.customertype   as CustomerType

} 
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"STCK_CUST_TABLE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/