SRF_PT_STP_PHASE
Calculate SubstitutionDeclaration From ACR Phase
SRF_PT_STP_PHASE is a CDS View that provides data about "Calculate SubstitutionDeclaration From ACR Phase" in SAP S/4HANA. It reads from 1 data source (I_SAPClient).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SAPClient | I_SAPClient | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_Phase | abap.char( 10 ) |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | SRFPTSTPPHASE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Calculate SubstitutionDeclaration From ACR Phase | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view |
@AbapCatalog.sqlViewName: 'SRFPTSTPPHASE'
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Calculate SubstitutionDeclaration From ACR Phase'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel.usageType: { dataClass: #CUSTOMIZING, sizeCategory: #S, serviceQuality: #B }
define view SRF_PT_STP_PHASE
with parameters
P_Phase : abap.char( 10 )
as select from I_SAPClient //dummy select
{
case $parameters.P_Phase
when 'STAND' then '0' //Standard Phase
else '1' //Substitution
end as Substitution
}
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