Srfhelperbewhldgcocode
Calculated values for BE Withholding Item
Srfhelperbewhldgcocode is a CDS View that provides data about "Calculated values for BE Withholding Item" in SAP S/4HANA. It reads from 1 data source (I_SAPClient) and exposes 2 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SAPClient | I_SAPClient | from |
Parameters (2)
| Name | Type | Default |
|---|---|---|
| P_Date | abap.numc( 14 ) | |
| P_CompEnterprise | stceg |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Calculated values for BE Withholding Item | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| CompEnterprise | ||||
| P_Date14asSubmissionDate |
@EndUserText.label: 'Calculated values for BE Withholding Item'
@AccessControl.authorizationCheck: #NOT_ALLOWED
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MIXED
define view entity Srfhelperbewhldgcocode
with parameters
P_Date: abap.numc( 14 ),
P_CompEnterprise: stceg
as select from I_SAPClient
{
substring( $parameters.P_CompEnterprise, 3, 18) as CompEnterprise,
Concat( Concat(
concat( substring($parameters.P_Date,7,2), '-'),
concat( substring($parameters.P_Date,5,2), '-')),
substring($parameters.P_Date,1,4)) as SubmissionDate
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA