P_SimlnLogSingleSuccess
Single Success Log Message
P_SimlnLogSingleSuccess is a Consumption CDS View that provides data about "Single Success Log Message" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocSimulationLog) and exposes 10 fields with key field SimulationJobUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PurchasingDocSimulationLog | I_PurchasingDocSimulationLog | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PLGSGLSUCCESS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Single Success Log Message | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.private | true | view | |
| VDM.viewType | #CONSUMPTION | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SimulationJobUUID | SimulationJobUUID | ||
| PurchasingDocument | PurchasingDocument | |||
| PurchasingDocumentItem | PurchasingDocumentItem | |||
| SystemMessageNumber | SystemMessageNumber | |||
| SystemMessageIdentification | SystemMessageIdentification | |||
| SystemMessageType | SystemMessageType | |||
| SystemMessageVariable1 | SystemMessageVariable1 | |||
| SystemMessageVariable2 | SystemMessageVariable2 | |||
| SystemMessageVariable3 | SystemMessageVariable3 | |||
| SystemMessageVariable4 | SystemMessageVariable4 |
@AbapCatalog.sqlViewName: 'PLGSGLSUCCESS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Single Success Log Message'
@ObjectModel.usageType: {dataClass: #TRANSACTIONAL, serviceQuality: #A, sizeCategory: #L}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.private: true
@VDM.viewType: #CONSUMPTION
define view P_SimlnLogSingleSuccess
as select from I_PurchasingDocSimulationLog
{
key SimulationJobUUID,
PurchasingDocument,
PurchasingDocumentItem,
SystemMessageNumber as SystemMessageNumber,
SystemMessageIdentification as SystemMessageIdentification,
SystemMessageType as SystemMessageType,
SystemMessageVariable1 as SystemMessageVariable1,
SystemMessageVariable2 as SystemMessageVariable2,
SystemMessageVariable3 as SystemMessageVariable3,
SystemMessageVariable4 as SystemMessageVariable4
/*case when SystemMessageType = 'S'
then cast('899' as msgnr)
else SystemMessageNumber end as SystemMessageNumber,
case when SystemMessageType = 'S'
then cast('MM' as abap.char(20))
else SystemMessageIdentification end as SystemMessageIdentification,
SystemMessageType,
case when SystemMessageType = 'S'
then cast('' as sychar50)
else SystemMessageVariable1 end as SystemMessageVariable1,
case when SystemMessageType = 'S'
then cast('' as sychar50)
else SystemMessageVariable2 end as SystemMessageVariable2,
case when SystemMessageType = 'S'
then cast('' as sychar50)
else SystemMessageVariable3 end as SystemMessageVariable3,
case when SystemMessageType = 'S'
then cast('' as sychar50)
else SystemMessageVariable4 end as SystemMessageVariable4 */
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PURCHASINGDOCSIMULATIONLOG"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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