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

Progran name..

Former Member
0 Likes
738

Hi geeks,

i am very curious to know the nomenclature of the following.

At times, i find this kind of program names in debuging

CL_EX_ME_PROCESS_PO_CUST======CP

CL_EX_ME_PROCESS_PO_CUST======CM003

wat is the significance of '====' here?

does these names have any speacil meaning..

thanks in advance.

Regards,

Satheesh.

Hi geeks,

i am very curious to know the nomenclature of the following.

At times, i find this kind of program names in debuging

CL_EX_ME_PROCESS_PO_CUST======CP

CL_EX_ME_PROCESS_PO_CUST======CM003

wat is the significance of '====' here?

does these names have any speacil meaning..

thanks in advance.

Regards,

Satheesh.

3 REPLIES 3
Read only

nishanthbhandar
Contributor
0 Likes
656

Hi Satheesh,

SAP follows it's own nomenclature for defining the standard programs.The CL represents that it is a class,the rest of the part refers to the class definition name.I am not too sure of the ==== part.Hope this is useful.

I wasnt aware that EX stands for EXits.Thank you Anand.The info that you have given below is wonderful.

Cheers

Nishanth

Message was edited by: Nishanth Bhandar

Read only

Former Member
0 Likes
656

Hi Satish,

The CL stands for a class. The EX says that it is a BADI. As you may be aware, BADIs are implemented as Classes. The reason we have the EX here is because BADIs are supposed to be the newer kind of User <b>EX</b>its.

The CM0003 tells tells us that it is the third method of the class. Just like the finction modules of a function group have a naming convention of <b>L<<i>name of the function group</i>>Unn</b> where <b>nn</b> is the number f the particular function module, we have the methods of a class also similarly indexed.

If you go to the table TMDIR, you can see which index stands for which method of the class.

Hope this helps. If not, please get back.

Regards,

Anand Mandalika.

Read only

0 Likes
656

Thank you Anand,

Thatz well explained...

Regards,

Satheesh.