P_SLT_RplctnPrepStepStatusText
SLT Replication Preparation Status Text
P_SLT_RplctnPrepStepStatusText is a Basic CDS View that provides data about "SLT Replication Preparation Status Text" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 3 fields with key field RplctnPrepStepStatus. Part of development package CNV_INC_PROCESSING.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PSLTRPLPRPSTSTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RplctnPrepStepStatus | domvalue_l | ||
| Language | ddlanguage | |||
| RplctnPrepStepStatusText | ddtext |
@AbapCatalog.sqlViewName: 'PSLTRPLPRPSTSTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@EndUserText.label: 'SLT Replication Preparation Status Text'
@VDM.viewType: #BASIC
@VDM.private:true
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_SLT_RplctnPrepStepStatusText
as select from dd07v
{
key domvalue_l as RplctnPrepStepStatus,
@Semantics.language: true
ddlanguage as Language,
@Semantics.text: true
ddtext as RplctnPrepStepStatusText
}
where
domname = 'IUUC_REPL_PREP_STATUS'
// and ddlanguage = 'E'
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