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

reagarding count

Former Member
0 Likes
1,030

hi, can any one explain me how to know the number of function modules in each function group.

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
988

Hi,

Use FM 'CATT_GET_TABLE_ENTRIES' to know the Number of enteries in a table

Sample :

CALL FUNCTION 'CATT_GET_TABLE_ENTRIES'

EXPORTING

table = <tablename>

IMPORTING

anzahl = cnt.

7 REPLIES 7
Read only

GauthamV
Active Contributor
0 Likes
988

Hi,

you can get those details from these table.

ENLFDIR

Read only

Former Member
0 Likes
988

hi but i want in number.

Read only

Former Member
0 Likes
988

Hi Alka,

Open se80, in test repository, drop down the list box and click function groups.... and den put in the name of the function group and press enter.... u wil get al the function modules in that grup

Hope it helps.....

Regards

Prem Sharma

Read only

Former Member
0 Likes
988

Hi,

Tcode SE38 ->Goto->Function Group->Find Group .

A new screen will open.

You give Function Group name into the Function Group fields then press F8.

Then you will get all Function Module Name and short text of Function Module into that Function Group.

Read only

0 Likes
988

see my requirement is i have to display number of function modules for each function group in output

Read only

former_member222860
Active Contributor
0 Likes
988

Hi,

This query is suffice..

data: count type i.

select count(*) from ENLFDIR into count where area = 'ZABC'.

 write:/ count.

where 'ZABC' is your function group.

thanks\

Mahesh

Read only

Former Member
0 Likes
989

Hi,

Use FM 'CATT_GET_TABLE_ENTRIES' to know the Number of enteries in a table

Sample :

CALL FUNCTION 'CATT_GET_TABLE_ENTRIES'

EXPORTING

table = <tablename>

IMPORTING

anzahl = cnt.