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

error: 'Generic typing is not possible with update function module'

Former Member
0 Likes
684

Hi all,    

I am learning function module in abap, and started practicing on it, now

I want to pass two tables (as any types ) for insertion and deletion ,

                              and a table name  where i want to update the data from above two tables.,

As i am trying this I am getting status message

'Generic typing is not possible with update function module'

can any suggest about the above situation.

2 REPLIES 2
Read only

Former Member
0 Likes
448

Hi Abdul,

This is happening because you might have declared some import and table parameters in the update FM interface without any reference to any data dictionary object. This is not allowed in UPDATE FM.

Regards,

R

Read only

0 Likes
448

Thank you,  Now I can Insert to that Data Base Table from an Internal table,

And the thing is

I created a simple class to learn this ,

In which I have ref object For Internal table , not the internal table itself now should i make that itable as part of class and send it to function module to insert.or how can i use that reference.