2023 Jul 30 5:50 AM
Hi,
I'm pretty new to this, so I could really use some help. Here's my problem: I need to create a report that includes select - options for multiple inputs and Retrieve the data from different tables , here i need to use multiple select statements and i am not getting how to use the internal table to store the data for every select statements and require all the fetched data into one internal table and work area to display the data.
I checked all the Q & A.
Thanks
Pooja
2023 Jul 30 6:02 AM
How to move data from multiple internal table to one internal table
2023 Jul 30 7:37 AM
2023 Jul 30 7:37 AM
2023 Jul 30 8:12 AM
DATA dummy_mandt TYPE t000-mandt.
SELECT-OPTIONS so_mandt FOR dummy_mandt.
SELECT * FROM t000
WHERE mandt IN so_mandt
INTO TABLE @DATA(itab).
Can't you contact a senior ABAP developer?
2023 Jul 30 10:25 AM
For your interest: the tag "ABAP Connectivity" is for communicating via network (HTTP or RFC protocol) between an ABAP program and external systems. It doesn't look like your question is related to that, so I'm removing the tag for now.
2023 Jul 31 7:36 AM
Hi,
I agree, these are basic ABAP developer's tasks... You might start with some tutorials like https://developers.sap.com/mission.abap-dev-get-started.html
Or other basic courses (BC400 would be by SAP, or various courses all over the internet).
Best,
Jasmin