‎2007 Apr 13 3:34 AM
Hi Friends,
I am a beginner to ABAP, I have never seen such kind of comment.
'report /CW/CUSTOMER_TRIGGER_FROM_CP.',
'include /cw/constants.',
'*',
'FORM call_customer_trigger_from_cp tables position structure cdpos',
' using header like chdr.',
'* Determine which object were dealing with.',
What are these single ' (apostrope) comment?
When I am trying to debug, its not allowing me to debug thsi code and it skips this section.
Thanks!
‎2007 Apr 13 5:48 AM
This is mostly a sub routine pool programming.
Sub routine pool is a kind of dynamic programming where the code of the program is being generated by another runtime program.
Check this for more
/people/ravishankar.rajan/blog/2007/03/27/using-subroutine-pools-for-dynamic-programming
‎2007 Apr 13 7:36 PM