P_ACMFormulaGrpgGeneralRes

DDL: P_ACMFORMULAGRPGGENERALRES SQL: PFMLAGRPGENRS Type: view BASIC

P_ACMFormulaGrpgGeneralRes is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (cped_formdoc) and exposes 8 fields with key fields ACMPricingDocItemUUID, ACMPricingConditionType.

Data Sources (1)

SourceAliasJoin Type
cped_formdoc cped_formdoc from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PFMLAGRPGENRS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ACMPricingDocItemUUID docitem_guid
KEY ACMPricingConditionType cond_type
PrcgConditionFormulaInputUUID forminput_guid
ACMPrcgCndnFormulaPrice formrate
ACMPrcgCndnFormulaRateCrcy formcurr
ACMPrcgCndnFormulaRateQty formprun
ACMPrcgCndnFormulaRateQtyUnit formuom
ACMPrcgCndnDocumentCrcy doccurr
@AbapCatalog.sqlViewName: 'PFMLAGRPGENRS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@VDM.private: true
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L

define view P_ACMFormulaGrpgGeneralRes
  as select from cped_formdoc
{

  key docitem_guid   as ACMPricingDocItemUUID,
  key cond_type      as ACMPricingConditionType,
      forminput_guid as PrcgConditionFormulaInputUUID,
      formrate       as ACMPrcgCndnFormulaPrice,
      formcurr       as ACMPrcgCndnFormulaRateCrcy,
      formprun       as ACMPrcgCndnFormulaRateQty,
      formuom        as ACMPrcgCndnFormulaRateQtyUnit,
      doccurr        as ACMPrcgCndnDocumentCrcy
}