Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Cross Reference of Data Division
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  2 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Mertens  
View profile  
 More options Sep 21 1997, 3:00 am
Newsgroups: comp.lang.cobol
From: Mertens.B...@t-online.de (Mertens)
Date: 1997/09/21
Subject: Cross Reference of Data Division

I'm looking for an utility that is able to produce a kind of extended
cross reference of the data division of a COBOL program. It shows for
each data field by which other data fields it is modified and which data
fields are modified by it. It should work like this:

Given a procedure code like

        MOVE  FIELD-A TO FIELD-B
        COMPUTE FIELD-C = FIELD-B * FIELD-D
        ADD FIELD-C TO FIELD-A FIELD-B

the utility should produce a cross-reference-list like

        FIELD-A modified by FIELD-C (ADD)
        FIELD-B modified by FIELD-A (MOVE), FIELD-C (ADD)
        FIELD-C modified by FIELD-B (COMPUTE), FIELD-D (COMPUTE)
        FIELD-D not modified at all

        FIELD-A modifies FIELD-B (MOVE)
        FIELD-B modifies FIELD-C (COMPUTE)
        FIELD-C modifies FIELD-A (ADD), FIELD-B (ADD)
        FIELD-D modifies FIELD-C (COMPUTE)

and so on, I think you know what I mean. I would be thankful for any
hints to a suitable prgram.
Please contact me at mertens.b...@t-online.de.

Thanks

Norbert Mertens


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Clifford Lane  
View profile  
 More options Sep 22 1997, 3:00 am
Newsgroups: comp.lang.cobol
From: "Clifford Lane" <c-l...@mail.com>
Date: 1997/09/22
Subject: Re: Cross Reference of Data Division

Sounds like you are getting to work on a year 2000 project.

Most compilers will provide this kind of cross reference.  Which one are
you using?

Cliff Lane
c-la...@mail.com

Mertens <Mertens.B...@t-online.de> wrote in article
<602hr0$3v...@news02.btx.dtag.de>...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »