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

Function module code

Former Member
0 Likes
546

Hey ppl!

Any idea, in which table the code and parameters of function modules are stored.

Regards

Puru

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
509

All workbench objects are managed by the Workbench manager.

Check /h in SE37

Regards

Meera

4 REPLIES 4
Read only

Former Member
0 Likes
509

use FUNCTION_IMPORT_INTERFACE to get the parameters

CALL FUNCTION 'FUNCTION_IMPORT_INTERFACE'

EXPORTING

FUNCNAME = FUNCNAME

  • IMPORTING

  • GLOBAL_FLAG = I01

  • REMOTE_CALL = I02

  • UPDATE_TASK = I03

TABLES

EXCEPTION_LIST = IF_EXCEPT

EXPORT_PARAMETER = IF_EXPORT

IMPORT_PARAMETER = IF_IMPORT

CHANGING_PARAMETER = IF_CHANGE

TABLES_PARAMETER = IF_TABLES

EXCEPTIONS

ERROR_MESSAGE = 01

FUNCTION_NOT_FOUND = 02

INVALID_NAME = 03.

Message was edited by:

chandrasekhar jagarlamudi

Read only

Former Member
0 Likes
509

Hi Puru,

Table to read function module parameters

FUPARAREF, " Parameters of function modules

Thanks & Regards,

Siri.

Read only

Former Member
0 Likes
510

All workbench objects are managed by the Workbench manager.

Check /h in SE37

Regards

Meera

Read only

anversha_s
Active Contributor
0 Likes
509

hi,

kindly chk these tables.

INFO_FUNC

view to see all the function modules

TFDIR

rgds

'Anver