cancel
Showing results for 
Search instead for 
Did you mean: 

difference between Export parameters and Table parameters

Former Member
0 Kudos

Hi All,

Please tell me What is the difference between Export parameters and Table parameters ?

Thanks,

Teja.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi teja,,

In web dyn pro apllication no need to require export parameter..

Actualyy Export parameter is nothing but passing the value into anather remote FM.suppose you will pass the data through import parameter .this data may be pass other remote function through export parameter which is manupulate the data and pass to the table or any thing

Table parameter--it will having both of import and export parameter which you will get the value at time of showing any back back end data to yiour view as OUT PUT Node Value in java -web dynpro concept.

thanks

jati

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi,

Import parameters=the parameter which you sent while calling the RFC/FM.(The value is single or more but not more than one row of data)

Export Parameter=The value return from the FM(value is single or more but not more than one row of data)

Table parameter=This is contain both the parameter(Import as well as export).

If you use more than one row of data as a import parameter then the import structure will come to the Table parameter.Also if you use more than one row of data as a returs export parameter then the export structure will come to the Table parameter and import and export parameter tab will be blank.

Thanks

Kanai

Former Member
0 Kudos

These parameters are declareda as part of RFC creation, the Export means that will used to fetch the data from the backend to the webdynpro application,

tables parameter can act as a import parameter that is we can send the data as inout to the RFC and we can use that as export parameter also, that tables parameter can act as import and export parameter.

Cheers,

Apparao

nikhil_bose
Active Contributor
0 Kudos

Export parameters:

1. Return of Remote FM

2. Ususally these parameters have maximum cardinality as 1. (this can be a table type so that tor return a table)

Table parameters:

1. Exposes all tables, those are been used in Table parameters, to dynpro.

2. It can supply and return result from remote FM

I hope this is enough for dynpro integration; plz refer ABAP Forum for more detail

thanks

nikhil

Former Member
0 Kudos

Hi

Importing parameters are which u pass to FM and export param are which u return from FM.Table Parameters acts as both import parameters and export parameters.

Export parameter acts as pulling the data to table or parameters.

Table Parameter acts as importing and exporting the data i.e.,accepting the data and give the data.

Edited by: Tulasi Palnati on Apr 6, 2009 8:58 AM