hi,
i have a function module in which i deal with internal tables, one input internal table and two output internal tables.
i have a program thru which i pass these internal tables to this function module. it seems i can pass only "standard tables" to the function module if i specify it in TABLES tab.
actually my main program definition consists of hashed type of internal tables. hence to pass it to the FM, i duplicate it to standard table and pass it. now when i get some internal tables back from the FM, they are also of type "standard table".
but now when i try to append the lines of these received standard internal tables to my existing hashed internal tables, i get error !! i use "append lines of YY to XX". where XX is hashed.
it says, you cannot use explicit or implicit index operations on tables with types "hashed table" or "any table".
how do i resolve this issue as well solve my requirement.
thks