Bill Woodger
Moderator Emeritus
Joined: 09 Mar 2011 Posts: 7309 Location: Inside the Matrix
|
|
|
|
I'm not sure I understand the question.
The INITIALIZE is doing nothing other than setting the values of items to which it applies to zero or space depending on whether they are numeric or alphanumeric. It is not doing anything else.
If A is not greather than B, then
Code: |
PARA3
POPULATE-TABLE1-PARA
INSERT-TABLE1-PARA
PARA4
POPULATE-TABLE1-PARA
INSERT-TABLE1-PARA
|
Will all be performed, unless there is any code in any of the paragraphs which changes the value of either A, B or both, in which case different things will happen.
But, on the fact of it, INSERT-TABLE1-PARA will be performed twice. What happens depends on the code in that paragraph.
Can you show the contents of TABLE1 and the MOVEs which follow the INITIALIZE? |
|