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: 

Select r/3 kna1 from CRM

Former Member
0 Kudos

Hi Gurus,

I have to look at R/3 tabla kna1 and knvp. I'm in CRM but I don't know how to search in the r/3 system.

Please help.

Thanks

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

There's an RFC-enabled function module which allows you to select data in a remote R3 system - I think it's called RFC_TABLE_READ (or something similar). Basically, you just supply your selection criteria in one table and a list of fields you'e looking for (along with the table name, of course) and then you get a list of matching records back.

Hope this helps, Andy

5 REPLIES 5

Former Member
0 Kudos

What exactly is the problem? Are you in the CRM system, trying to return data from R/3 to CRM? Or are you in R/3 and don't know how to read the table data?

Rob

Former Member
0 Kudos

I'm in CRM, and I need to search in R3.

Basicly the function process is:

CRM----


> go to r/3 to search data. -


> give data back to CRM.

alex_cook
Active Participant
0 Kudos

Howdy,

Create a remote enabled function module in ECC (if one doesn't already exist that will meet your requirement) and call it from CRM.

Cheers

Alex

Sougata
Active Contributor
0 Kudos

But only do that (RFC FM) keeping in mind the volume of data selection and the frequency of data request.

If you need large volume of data and/or data is requested from source system at frequent time intervals, the best way to approach would be to do it using Proxies via PI/XI (if your customer is using PI that is).

Cheers,

Sougata.

Former Member
0 Kudos

Hi,

There's an RFC-enabled function module which allows you to select data in a remote R3 system - I think it's called RFC_TABLE_READ (or something similar). Basically, you just supply your selection criteria in one table and a list of fields you'e looking for (along with the table name, of course) and then you get a list of matching records back.

Hope this helps, Andy