on 2023 Oct 20 8:00 AM
Hey Abappers:)
I have an urgent question , i am a beginner. i need some datas from 2 different tables (actually more, but i start with 2 tables) so..here it is... and the bug is: Select isnt available... 😞 Why not? I tried with inner join too before....same bug
TYPES: BEGIN OF ty_union,
infocube TYPE rsdcube-infocube,
objvers TYPE rsdcube-objvers,
txtsh TYPE rsdcubet-txtsh,
END OF ty_union.
DATA: it_cubes_union TYPE TABLE OF ty_union.
SELECT rsdcube~infocube AS infocube,
rsdcube~objvers AS objvers,
rsdcubet~txtsh AS txtsh
INTO TABLE @it_cubes_union
FROM RSDCUBE
UNION
SELECT rsdcubet~infocube AS infocube,
rsdcubet~objvers AS objvers,
rsdcubet~txtsh AS txtsh
FROM RSDCUBET.
Help others by sharing your knowledge.
AnswerRequest clarification before answering.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.