SOLVE THE PROBLEM

This is a Mainframe COBOL forum - you can post your queries on Mainframe COBOL, VS COBOL II, COBOL/370 , Enterprise COBOL

Moderators: dbzTHEdinosauer, Moderator Group

Post Reply
sasanka
Member
Posts: 19
Joined: Wed Dec 29, 2010 11:37 pm
Location: hyderabad

SOLVE THE PROBLEM

Post by sasanka » Tue Feb 22, 2011 12:30 am

[b]SALES-MAN AMOUNT-OF-SALE COMMISSION[/b]
1 233 23.30
334 33.45
400 30.00
[b]TOTAL-SALE : 967 TOTAL-COMMISSION : 86.75[/b]

2 123 32.12
223 34.44
--
. . .
. . .
. . .


can any one help me with the above program


I have used he following code but not successful.

PROCEDURE DIVISION.

MOVE I TO I.
READ INFILE AT END MOVE "NO" TO WS-Y
NOT AT END
PERFORM COMPUTE-PARA UNTIL WS-Y = "NO".
MOVE



COMPUTE-PARA.
IF ( SALES-MAN = I ) AND ( SALES-MAN < I + 1 )
MOVE SALES-MAN TO OUT-SALES-MAN.
MOVE AMOUNT-OF-SALE TO OUT-AMOUNT-OF-SALE
MOVE COMMISSION TO OUT-COMMISSION
ADD AMOUNT-OF-SALE TO TOTAL- SALE
ADD COMMISSION TO TOTAL-COMMISSION
-.....
END-IF.
EVALUATE SALES-MAN
WHEN I + 1 THEN ADD 1 TO I.
ELSE
DISPLAY "STILL I"
END-EVALUATE.

READ INFILE AT END MOVE "NO" TO WS-Y

Anuj Dhawan
Moderator
Posts: 1625
Joined: Sat Aug 09, 2008 9:02 am
Location: Mumbai, India

Post by Anuj Dhawan » Tue Feb 22, 2011 10:34 am

Why to double post with no further information: http://www.mainframegurukul.com/ibmmain ... 2766#12766
Regards,
Anuj

Post Reply

FREE TUTORIALS

Tutorials
Free tutorials from mainframegurukul
  • JCL Tutorial
    Covers all important JCL concepts.
  • Cobol Tutorial
    This tutorials covers all Cobol Topics from STRING to COMP-3.
  • DB2 Tutorial
    DB2 Tutorial focuses on DB2 COBOL Programming.
  • SORT Tutorial
    This Tutorial covers all important aspects of DFSORT with examples
  • CICS Tutorial
    This CICS tutorial covers CICS concepts and CICS Basics, CICS COBOL Programming.
Interview
Mainframe Interview questions



Other References
Mainframe Tools and others