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

RFC_READ_TABLE

Former Member
0 Likes
1,180

hi,

i want to know the uses and procedures of rfc_read_table function module and about rfc

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
740

This FM is used for external access to R/3 tables via RFC.

in the Table structure u will pass table name activation status etc.

CALL FUNCTION 'RFC_READ_TABLE'

EXPORTING

query_table = Table

delimiter = ''

no_data = ''

rowskips = 0

rowcount = 0

TABLES

options = i_options

fields = i_fields

data = t_data.

3 REPLIES 3
Read only

Former Member
0 Likes
741

This FM is used for external access to R/3 tables via RFC.

in the Table structure u will pass table name activation status etc.

CALL FUNCTION 'RFC_READ_TABLE'

EXPORTING

query_table = Table

delimiter = ''

no_data = ''

rowskips = 0

rowcount = 0

TABLES

options = i_options

fields = i_fields

data = t_data.

Read only

0 Likes
740

would you pls give some therotical explanation for remote function call /bapi

Read only

Former Member