IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Check whether the Empno in master file not in trans file


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
kalaignar_S
Warnings : 1

New User


Joined: 06 Jan 2006
Posts: 21

PostPosted: Mon May 15, 2006 2:11 pm
Reply with quote

Hi..

I have 2 sequential files (master and transaction) having a common field (called empno).
How can i check whether the empno available in master file not in transaction file and vise-versa?

In a cobol program for a file one open and close premitted..

Please help in this regard.


Thanks
Kalaignar
Back to top
View user's profile Send private message
parikshit123

Active User


Joined: 01 Jul 2005
Posts: 269
Location: India

PostPosted: Mon May 15, 2006 2:20 pm
Reply with quote

Hi,
You need to write a sepearate sort step(s) in which, both the files are sorted on empno key.

Then you can write a cobol program based on key matching algorithm. With this approach, you need not open and close both the files more than once.

Thanks,
Parikshit.
Back to top
View user's profile Send private message
kalaignar_S
Warnings : 1

New User


Joined: 06 Jan 2006
Posts: 21

PostPosted: Mon May 15, 2006 2:43 pm
Reply with quote

Please let me know the details in detail..
Back to top
View user's profile Send private message
dipanshu

New User


Joined: 16 Jan 2006
Posts: 53
Location: pune

PostPosted: Mon May 15, 2006 2:47 pm
Reply with quote

Hi,

Pls refer the below code for ur prob.

Code:


C300-CHECK-KEY-MATCH SECTION.
********************************************************
 THIS PARAGRAPH PERFORMS KEY COMPRASION OF MSTR
 AND TRANS FILE
********************************************************

    IF X06-TRANS-KEY  = X05-MSTR-KEY
         PERFORM C310-CHECK-DATA-MATCH
         PERFORM C100-READ-TRANS
         PERFORM C200-READ-MSTR
    ELSE
         IF X06-TRANS-KEY  < X05-MSTR-KEY
            MOVE 'B' TO X04-RECORD-MATCH
            PERFORM C400-ERROR-MSG
            PERFORM C100-READ-TRANS
         ELSE
            MOVE 'M' TO X04-RECORD-MATCH
            PERFORM C400-ERROR-MSG
            PERFORM C200-READ-MSTR
         END-IF
    END-IF
    .


Thanks,
Dipanshu G.
Back to top
View user's profile Send private message
dipanshu

New User


Joined: 16 Jan 2006
Posts: 53
Location: pune

PostPosted: Mon May 15, 2006 4:02 pm
Reply with quote

Hi,

This is to remind u the above code is only applicable after both the files r sorted.

Thanks,
Dipanshu G.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Binary File format getting change whi... All Other Mainframe Topics 5
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
Search our Forums:

Back to Top