Group By clause categorizes and summarizes the lines of
database table based on a single field. That single field is mentioned in the
group by clause. We can use multiple fields in the group by clause also. Here
the database table records will be summarized according to those fields.
The fields mentioned in the group by clause cannot be
specified for the aggregate function. We have to use other fields which are not
specified in group by clause to calculate the aggregate function. Now we have
the a PO with the following quantity.
REPORT zabap_gui.
DATA:
ebeln TYPE ekpo-ebeln,
po_max TYPE p DECIMALS 2,
po_min TYPE p DECIMALS 2,
tq_max TYPE p DECIMALS 2,
tq_min TYPE p DECIMALS 2.
WRITE:/ 'PO No',
15 'Max PO Quantity',
35 'Min PO Quantity',
55 'Max Target',
70 'Min Target'.
SELECT ebeln
MAX( menge ) MIN( menge )
MAX( ktmng ) MIN( ktmng )
FROM ekpo
INTO (ebeln,
po_max, po_min,
tq_max, tq_min)
GROUP BY ebeln.
WRITE:/ ebeln,
15 po_max,
35 po_min,
55 tq_max,
70 tq_min.
ENDSELECT.
DATA:
ebeln TYPE ekpo-ebeln,
po_max TYPE p DECIMALS 2,
po_min TYPE p DECIMALS 2,
tq_max TYPE p DECIMALS 2,
tq_min TYPE p DECIMALS 2.
WRITE:/ 'PO No',
15 'Max PO Quantity',
35 'Min PO Quantity',
55 'Max Target',
70 'Min Target'.
SELECT ebeln
MAX( menge ) MIN( menge )
MAX( ktmng ) MIN( ktmng )
FROM ekpo
INTO (ebeln,
po_max, po_min,
tq_max, tq_min)
GROUP BY ebeln.
WRITE:/ ebeln,
15 po_max,
35 po_min,
55 tq_max,
70 tq_min.
ENDSELECT.
Here is the output:
3 comments:
SAP Success Factors Real Time Hands on Training in Chennai...
Don't always Depend on Training Institute Alone and so please aware of Best Trainers too..
http://thecreatingexperts.com/sap-successfactors-training-in-chennai/
If You need a Best Trainer over SAP Success Factors Means??? Please ready for an DEMO From the Trainer MR.Karthick
CONTACT:8122241286
Both Classroom/Online Training is Available!!!!!!
Best SAP Success Factor Training in Chennai
http://thecreatingexperts.com/sap-training-in-chennai/
http://thecreatingexperts.com/sap-successfactors-training-in-chennai/
http://thecreatingexperts.com/sap-mm-training-in-chennai/
http://thecreatingexperts.com/sap-fico-training-in-chennai/
Informative Blog...For a long time I was craving for a career growth in programming and then I came to know that THE CREATING EXPERTS is the one who provide training with hands on training and real time scenarios
http://thecreatingexperts.com/sap-abap-training-in-chennai/
contact 8122241286
Post a Comment