Hi,
i´m developing an Hierarquical ALV and in order to obtain the data of the item internal table i´ve found a FM of a query already developed that provides exactly the data i need.
the code in question is:
CALL FUNCTION '/1BCDWB/IQ000000000073EXTR'
TABLES
%SELOPT = %selopt
%DTAB = %dtab
CHANGING
%RTMODE = %rtmode
EXCEPTIONS
NO_DATA = 1
NO_AUTHORIZATION = 2
ILLEGAL_PACKAGE = 3
CURSOR_NOT_OPEN = 4
OTHERS = 5.
i´m using it temporarily.
What would be the implications of using it permanently?
if the original query is modified would this affect the FM? Would this FM be renamed?
Best regards.
Add a comment