I_CMMDTYLOTSOFFILLBYFILLPACKET

CDS View

Basic View for Fill Packet Lots

I_CMMDTYLOTSOFFILLBYFILLPACKET is a CDS View in S/4HANA. Basic View for Fill Packet Lots. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_CommodityOrdFillPacketTP view left_outer TRANSACTIONAL Tran. View for Cmmdty Deriv Ord Fill Pkt
@AbapCatalog.sqlViewName: 'ICMMDTYPKTFLLOTS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Basic View for Fill Packet Lots'
@ClientHandling.algorithm           : #SESSION_VARIABLE
@ObjectModel.usageType              :{ serviceQuality: #X, sizeCategory : #S, dataClass: #TRANSACTIONAL}
@VDM.viewType                       : #COMPOSITE

define view I_CmmdtyLotsOfFillByFillPacket
  as select from I_CommodityOrderRequestFill

{
  key CommodityOrderFillPacketUUID                  as CommodityOrderFillPacketUUID,
      -- Find Sum of Filled Quantity of Fills in a Fill Packet
   cast( avg(CmmdtyOrderFillQuantityInLots)  as cmmfdof_pktquantityoffillpkt)      as CmmdtyOrderFillQuantityInLots
   
}
where
  CmmdtyOrderReqLegOwnerRole = 'O'
group by
  CommodityOrderFillPacketUUID


/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_COMMODITYORDERREQUESTFILL"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/