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

what are program type F, M

Former Member
0 Likes
11,657

Hi All,

I am not able to execute some of abap programs which are of types F and M. What exactly does this mean.. Please explain..

Thank you

Jason

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
4,859

I think M is for module pool and these can only be fired by a tcode tied to the screen number, I believe F may be for function group and of course can not be fired directly, but only you can call a function module of the group via Se37, or via a program.

Regards,

RIch Heilman

Hi All,

I am not able to execute some of abap programs which are of types F and M. What exactly does this mean.. Please explain..

Thank you

Jason

8 REPLIES 8
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
4,860

I think M is for module pool and these can only be fired by a tcode tied to the screen number, I believe F may be for function group and of course can not be fired directly, but only you can call a function module of the group via Se37, or via a program.

Regards,

RIch Heilman

Read only

Former Member
0 Likes
4,859

TYPE - M is module pool - it is not executable program and should dependent on Transaction.

TYPE - F - Function Pool - it is not executable and should be dependent on Executable program.

TYPE - I (executable ) - this one not dependable and you can execute in se38 directly

Read only

Former Member
0 Likes
4,859

Module Pools for Screen Painter Screens (M)

Contain processing steps for screen

modules from the transaction and can only

be executed with a transaction code or a

menu function.

Function Groups (F)

Contain function modules. Function groups and function

modules are managed in the Function Builder.

Read only

Former Member
0 Likes
4,859

hi,

M-Module Pool .U need to execute this using a Transaction Code

F-Function Pool.It is not executable

Read only

Former Member
0 Likes
4,859

hi,

M-Module Pool .U need to execute this using a Transaction Code

F-Function Pool.It is not execuatable

Read only

Former Member
0 Likes
4,859

hi,

M-Module Pool-U need to execute them using a Transavtion code

F-Function Pool-These r not executable

Read only

Former Member
4,859

the porgram type s are .

1.<b>Executeable proragm</b> in SE38

2.<b>Include program</b> not able to execute in any of the tcode only included as sub program

3.<b>MODULE pool </b> only execute throught tcode create by you .

4.<b>Function group </b> cannot be executed only function modules are executed @ se37

5.<b>subroutine pool</b> again with in the program called can not be executed

6.<b>interface pool</b> ->can not be executed

7.<b>class pool</b> ->can be executed in tcode se24

8.<b>type pool</b> ->can not be executed in any tcode

reward points if it is usefull ...

Girish

Read only

0 Likes
4,859

Thank you all.. Appreciate your help..