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

Not getting the values in Tables parameters in RFC Function Module

nirajgadre
Active Contributor
0 Likes
1,833

Hi Experts,

I have created one RFC function module, which is used to pass and receive the data from the portal. to send and receive the data to portal, I created one Table parameter in the RFC function module.

When function module is getting called from the portal to read the data, the data is getting passed correctly in the internal table.

But from the portal when i am passing the data to the same internal table, then it is not getting passed. I am not sure why this is happening. Since table parameter is able to pass the data to portal on first execution, but same table parameter is not able to accept the data from the Portal.

Any suggestion why this is happening.. Do i Need to define that table parameter as Changing parameter?

since i am using same table parameter to send and receive the values form Portal....?

Hi Experts,

I have created one RFC function module, which is used to pass and receive the data from the portal. to send and receive the data to portal, I created one Table parameter in the RFC function module.

When function module is getting called from the portal to read the data, the data is getting passed correctly in the internal table.

But from the portal when i am passing the data to the same internal table, then it is not getting passed. I am not sure why this is happening. Since table parameter is able to pass the data to portal on first execution, but same table parameter is not able to accept the data from the Portal.

Any suggestion why this is happening.. Do i Need to define that table parameter as Changing parameter?

since i am using same table parameter to send and receive the values form Portal....?

2 REPLIES 2
Read only

Former Member
0 Likes
960

Hi

As you written, change it to Changing Parameter.

Shiva

Read only

Former Member
0 Likes
960

niraj,

tables parameters are not to be used any more.

it should be either in a import/export/changing parameter.

create a table type (or else it will just behave as a structure) and define your import/export/changing parameter as of the type of that table parameter.