Application Development 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: 

get import parameters of any function and also attributes or datatypes

Former Member
0 Kudos

Hello FRNDS,

...........with great hope......

i am tring to write a RFC the IMPORT parameters of any function module that is given and i need the attribute or datatypes of the parameters like(char ,,or integer ) with short text.

hint:-- i discovered a function module like:---

function_import_interface which does the same job but returns

all the import ..export and tables parameters...

So frnds,

pls help me regarding this and if possible give me some code so thta i will experiment with this...

thx

jeevan...

Your efforts will be greatly rewarded.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Try the follwing function module.

call function 'FUNCTION_IMPORT_DOKU'

exporting

funcname = funcname

with_enhancements = 'X'

tables

exception_list = if_except

export_parameter = if_export

import_parameter = if_import

changing_parameter = if_change

tables_parameter = if_tables

dokumentation = documentation

exceptions

error_message = 1

function_not_found = 2

invalid_name = 3

others = 4.

The internal tables if_export and if_import contains the list of import & export parameters and its associated data types.

kindly reward points.

Thanks,

Jey

Edited by: Jey on Feb 25, 2008 5:37 PM

Edited by: Jey on Feb 25, 2008 5:37 PM

1 REPLY 1

Former Member
0 Kudos

Hi,

Try the follwing function module.

call function 'FUNCTION_IMPORT_DOKU'

exporting

funcname = funcname

with_enhancements = 'X'

tables

exception_list = if_except

export_parameter = if_export

import_parameter = if_import

changing_parameter = if_change

tables_parameter = if_tables

dokumentation = documentation

exceptions

error_message = 1

function_not_found = 2

invalid_name = 3

others = 4.

The internal tables if_export and if_import contains the list of import & export parameters and its associated data types.

kindly reward points.

Thanks,

Jey

Edited by: Jey on Feb 25, 2008 5:37 PM

Edited by: Jey on Feb 25, 2008 5:37 PM