In-line PERFORM and out-line PERFORM

What is the in-line PERFORM and out-line PERFORM?

Questions by gowrinag

Showing Answers 1 - 12 of 12 Answers

guraddiv

  • Jun 25th, 2008
 

hi,

   if u want 2 perform the action with in the perform para that is called as in-line perform and ends with end-perform. the reamining perform statements are called as out-line perform

haris805

  • Feb 20th, 2009
 

In-line PERFORM have explicit scope terminator END-PERFORM where as Out-line PERFORM does not. Out-line perform have paragraphs.
If you want to perform certain amount of code only one time in the program then we use in-line PERFORM.
If you want to perform the same code many times within the program then you put that code in a paragraph and use it wherever you want.

IN-LINE PERFORM:

PERFORM .............
.............
.............
END-PERFORM.

The statements which are under Scope perform is called IN-LINE PERFORM.

OUT-LINE PERFORM:

Other than any other perform is called Outline perform.

1) Normal perform
2) Perform para n times
3) Perform para varying
4) Perform Para thru

subha2010

  • Aug 10th, 2010
 

In line perform performs the conditions before coming into the para and out line perform performs with in a range PERFORM end-PERFORM

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions