Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP Function Module structure understanding

Former Member
0 Likes
389

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!

2 REPLIES 2
Read only

Former Member
0 Likes
367

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

Read only

0 Likes
367

Thanks Kareemullah!