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

Select Criteria

Former Member
0 Likes
548

How we write the select criteria when extracting data from another R/3 using RFC's ....

1) Do we fill the data with Internal table and write select criteria on Internal Table.Thank you....

4 REPLIES 4
Read only

Former Member
0 Likes
529

Hi Alex,

We canot write selects on internal tables ... so that is not a right way to do.. Data Migration between the servers can be done with different methods like LSMW, IDoc ...which depends on how much data you ahve it in your old system ...

Regards,

Santosh

Read only

Former Member
0 Likes
529

Hi,

You can do that using import and export parameters.

Export from R/3 and import into your RFC.

Thanks,

Deepti

Read only

former_member404244
Active Contributor
0 Likes
529

Hi,

Generally we don't write select query on internal table.For RFC u need to write the select query in an FM on the RFC side and call the FM in ur R/3.The select query will be on database table of other R/3.

Regards,

Nagaraj

Read only

0 Likes
529

Could you just give a example of how write select query....