iam having 3 internal table how can i pass data to the 4th
internal table

Answer Posted / lokesh

you have 3 internal tables u want to populate these 3
internal tables data to 4th internal table ..right

Check out this eg code :

suppose we think u have 3 Internal tables i.e.,
t_marc,t_mara,t_makt
and 4th internal table is itab[final interanl table]

Start-of-selection.

Select matnr werks lvorm from marc
Into table t_marc
Where matnr = s_matnr
And werks = p_werks.


If t_marc is not initial.
Loop at t_marc .

Read t_marc into itab with key matnr = t_marc-matnr.



Select matnr Mbrsh Meins maktl from mara
Into table t_mara
For all entries in t_marc
Where matnr = t_marc-matnr.

Select matnr maktx spras from makt
Into table t_makt
For all entries in t_marc
Where matnr = t_marc-matnr.

Move :

T_mara-mbrsh = itab-mbrsh.
T_mara-meins = itab-meins.
T_mara-maktl = itab-maktl.
T_makt-maktx = itab-maktx.
T_makt-spras = itab-spras.


Endloop.


Else .

Write : / ‘No data is found in the first internal
table T_marc’.

Endif.

Is This Answer Correct ?    7 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Create any functions? How to go about it?

569


What is static attribute

1093


What are interactive reports?

639


What is difference between inner join and outer join?

634


What are th control break events in abap?

612






Which function module reads the data for particular infotype ? : abap hr

559


What is lock mechanism? How do we create lock objects in abap?

641


while implementing badi what are the tables u find??

3623


What are Tickets in Realtime ?

1680


What is meant by slab? How is indian slab and us slab? : sap abap hr

560


What are the different types of the sap abap data dictionary objects?

550


What is append structure?

547


How do you use structures in the abap programs?

602


What are the events in abap/4 language? : abap hr

620


What is view? Explain the different types of view?

789