cancel
Showing results for 
Search instead for 
Did you mean: 

RFC Buffer

Former Member
0 Kudos

Hi,

We have developed a RFC that retrieve a list of CRM Opportunities.

After updating the details of an opportunity and running again this RFC, the details are not seen. only after pressing F5 in the browser that displays the list, the new data is seen.

It seems like there is some buffer that is not cleaned in the RFC.

Any suggestions?

Thanks,

Aviad

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Aviad,

It should refresh if you have implemented it correctly. Make sure you have not written the code in only in wdInit(). Also, initializing the Input object, binding it to model node and execute the model object, when ever you want to refresh the list. Write the code in the event which triggers the update.

Regards,

Piyush.

Former Member
0 Kudos

Hi Rivlin

The Adaptive RFC layer is adaptive, but not dynamic!

Every time an RFC enabled function module is called in an SAP system, the metadata describing its interface is checked.

If the interface has changed since the last invocation, the new metadata data is obtained from the SAP system. The application program should then check the dictionary for changes and react appropriately.

The RFC layer will automatically update the dictionary with any metadata changes, but we need to code our Web Dynpro application to react to these changes!

try this make the node invalidate and execute the BAPI again

As far as i know there is no RFC buffer concept in SAP

Regards

Chaitanya.A