Srf_UsHelpDirectSales

DDL: SRF_USHELPDIRECTSALES SQL: SRFUSHELPSALES Type: view

Direct Sales Indicator

Srf_UsHelpDirectSales is a CDS View that provides data about "Direct Sales Indicator" in SAP S/4HANA. It reads from 1 data source (I_SAPClient).

Data Sources (1)

SourceAliasJoin Type
I_SAPClient I_SAPClient from

Parameters (1)

NameTypeDefault
p_amnt abap.curr( 23,2)

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName SRFUSHELPSALES view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_ALLOWED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Direct Sales Indicator view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
@AbapCatalog.sqlViewName: 'SRFUSHELPSALES'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Direct Sales Indicator'
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MIXED

define view Srf_UsHelpDirectSales
  with parameters
    p_amnt : abap.curr( 23,2)
  as select from I_SAPClient
{

  case
  $parameters.p_amnt
  when 0
  then '0'
  else '1'
  end as DirectSalesIndicator

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