‎2009 Jan 04 7:17 PM
HI,
i see in big program some perform ,and i want to test just this perform ,
maybe in other new program ,how i can do that?
Regards
‎2009 Jan 04 8:08 PM
Many Options:few are may be some like below examples:
With include Program B in Main program A.
report A.
include B.
perform <routine name>.
"and form could be written in BSimply by giving program name with perform.
PERFORM <form name> IN PROGRAM (program name)
USING XXX changing YYY.
‎2009 Jan 04 8:08 PM
Many Options:few are may be some like below examples:
With include Program B in Main program A.
report A.
include B.
perform <routine name>.
"and form could be written in BSimply by giving program name with perform.
PERFORM <form name> IN PROGRAM (program name)
USING XXX changing YYY.
‎2009 Jan 05 3:03 AM
Hi,
If you want to test it in the same program just put a break point at that point to test it.....
‎2009 Jan 05 9:10 AM
Hi ,
It is better to test the Perform in the same program itself as it may import values from the program.
As told just put a break in the Perform and step into (F5) of the code of the Subroutine to check for the underlying functionality.
Regards,
Radhika.
‎2009 Jan 05 1:47 PM
Please donot forget to pass the correct parameters in the correct order after the using/changing clause.
Also, like others said, debug the subroutie(perform) in the same program, understand why it has been used and how the variables passed are affected before using it in another program.
Thanks,
Saipriya