‎2007 Dec 19 4:54 PM
Hi,
What is the difference between MACRO & a SUBROUTINE?
Regards,
Amruth
‎2007 Dec 19 4:56 PM
Hi Amruth,
Macro
Macros can only be used in the program that are defined in and only after the definition are expanded at compilation/generation.
*Subroutine *
Subroutines (FORM) can be called from both the program that are defined in & other programs.
A MACRO is more or less an abbrevation for some lines of code that are used more than once or twice.
A FORM is a local subroutine(which can be called external). A FUNCTION is(more or less) a subroutine that is called external.
Since debugging a MACRO is not really possbile, prevent the use if them(I've never used them, but seen them in action).
If the subroutine is used only local(called internal) use FORM. If the subroutine is called external(used by more than one program) use a FUNCTION.
Regards,
Chandru
‎2007 Dec 19 4:55 PM
Macros can only be used in the program the are defined in and only after the definition are expanded at compilation / generation. Subroutines (FORM) can be called from both the program the are defined in and other programs . A MACRO is more or less an abbreviation for some lines of code that are used more than once or twice. A FORM is a local subroutine (which can be called external). A FUNCTION is (more or less) a subroutine that is called external. Since debugging a MACRO is not really possible, prevent the use of them (Ive never used them, but seen them in action). If the subroutine is used only local (called internal) use a FORM. If the subroutine is called external (used by more than one program) use a FUNCTION.
‎2007 Dec 19 4:56 PM
Hi Amruth,
Macro
Macros can only be used in the program that are defined in and only after the definition are expanded at compilation/generation.
*Subroutine *
Subroutines (FORM) can be called from both the program that are defined in & other programs.
A MACRO is more or less an abbrevation for some lines of code that are used more than once or twice.
A FORM is a local subroutine(which can be called external). A FUNCTION is(more or less) a subroutine that is called external.
Since debugging a MACRO is not really possbile, prevent the use if them(I've never used them, but seen them in action).
If the subroutine is used only local(called internal) use FORM. If the subroutine is called external(used by more than one program) use a FUNCTION.
Regards,
Chandru
‎2007 Dec 19 5:19 PM
There are macros which are defined globally - specifically in the HR module.
matt