‎2009 Jan 30 10:51 AM
hi, can any one explain me how to know the number of function modules in each function group.
Thanks
‎2009 Jan 30 12:54 PM
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.
‎2009 Jan 30 10:55 AM
‎2009 Jan 30 11:22 AM
‎2009 Jan 30 10:57 AM
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
‎2009 Jan 30 11:25 AM
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.
‎2009 Jan 30 11:38 AM
see my requirement is i have to display number of function modules for each function group in output
‎2009 Jan 30 11:38 AM
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
‎2009 Jan 30 12:54 PM
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.