H_NL_Round

DDL: H_NL_ROUND SQL: HNLECSLRND Type: view

Round amount without decimal places

H_NL_Round is a CDS View that provides data about "Round amount without decimal places" in SAP S/4HANA. It reads from 1 data source (I_SAPClient) and exposes 1 field.

Data Sources (1)

SourceAliasJoin Type
I_SAPClient I_SAPClient from

Parameters (1)

NameTypeDefault
P_AmountInReportingCurrency aflex15d2o21s

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName HNLECSLRND view
AccessControl.authorizationCheck #NOT_ALLOWED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Round amount without decimal places view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view

Fields (1)

KeyFieldSource TableSource FieldDescription
AmountInReportingCurrency
@AbapCatalog.sqlViewName: 'HNLECSLRND'
@AccessControl.authorizationCheck: #NOT_ALLOWED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Round amount without decimal places'
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #S

define view H_NL_Round
  with parameters
    P_AmountInReportingCurrency : aflex15d2o21s
  as select from I_SAPClient
{
  ceil(round($parameters.P_AmountInReportingCurrency, 0)) as AmountInReportingCurrency
}