P_FqmFlowTypeKeyFigure
P_FqmFlowTypeKeyFigure is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (I_SAPClient, P_Fqmflowcatkeyfigure) and exposes 3 fields.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_SAPClient | I_SAPClient | inner |
| P_Fqmflowcatkeyfigure | P_Fqmflowcatkeyfigure | from |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | PFQMFLOWTYPEKF | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| SAPClient | I_SAPClient | sapclient | ||
| FlowCategory | P_Fqmflowcatkeyfigure | FlowCategory | ||
| KeyFigure | P_Fqmflowcatkeyfigure | KeyFigure |
@VDM.private: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PFQMFLOWTYPEKF'
define view P_FqmFlowTypeKeyFigure as
select from P_Fqmflowcatkeyfigure inner join I_SAPClient
on P_Fqmflowcatkeyfigure.FlowCategory between '000000' and '999999'
and I_SAPClient.sapclient is not null
{
I_SAPClient.sapclient as SAPClient,
P_Fqmflowcatkeyfigure.FlowCategory as FlowCategory,
P_Fqmflowcatkeyfigure.KeyFigure as KeyFigure
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SAPCLIENT",
"P_FQMFLOWCATKEYFIGURE"
],
"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