P_FqmFlowTypeKeyFigure

DDL: P_FQMFLOWTYPEKEYFIGURE SQL: PFQMFLOWTYPEKF Type: view BASIC

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)

SourceAliasJoin Type
I_SAPClient I_SAPClient inner
P_Fqmflowcatkeyfigure P_Fqmflowcatkeyfigure from

Annotations (4)

NameValueLevelField
VDM.private true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PFQMFLOWTYPEKF view

Fields (3)

KeyFieldSource TableSource FieldDescription
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
}