Hi All,
I have the following code
data : tablename (20) type c. During runtime i'm getting the internal table name into tablename field say tablename = itab. Where itab is an internal table without header line i want to pass contents of this internal table itab to a method like pass_internaltable->send( EXPORTING i_tab = itab ). METHODS : send IMPORTING i_tab TYPE STANDARD TABLE. In my case i have to pass runtime value of tablename may be itab,itab1 etc
Can any tell me how to go about this.
Thanks