hi,
in my main program i have an internal table called NAST which is hashed. i call a function module which returns an internal table called xNAST, whose records i append to NAST. since i dealt with TABLES tab of FM, i had to receive this xNAST of type standard table (and not hashed).
i appended the lines of xNAST to NAST using INSERT statement.
Now at one point, i have a statement,
READ TABLE *nast INTO *xxx WITH KEY mmm = '100'.
so when i inserted the records into NAST from xNAST, they r automatically hashed, right ? and this statement will work without any issues ?
thks