Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

What kind of financial periods exist in SAP? What is the relevant table for that?

1169


What is off cycle payroll run

2311


what are the two methods of modifying sap standard tables? : abap data dictionary

1169


Explain lsmw?

1131


what is diff between idocs,bdc,rfc and bapi. give real time answer

19802


What is abap dictionary or data dictionary? What is the transaction to access abap dictionary? : abap data dictionary

1015


What is the difference between commit-work and rollback-work tasks?

1183


How to insert a line into abap internal tables?

1132


How to upload data using catt ? : abap hr

1200


In BDC, data transfer is done success in foreground mode but if we done the same in background mode it shows errors. What is the reason?

1523


Explain the concept of clusters in payroll

2870


hi i need detailed information on badi and bapi how can this work in real time senarios plz explain with exp

3773


Why do we declare a method of a class final? What can be the purpose? Give a scenario.

1498


Explain what are the different functions used in sap script? What are the parameters used in each function?

1083


What happens if only one of the commands set screen and leave screen is used without using the other?

1145