Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

INTERNAL TAB

former_member329386
Participant
0 Likes
401

hI ALL

I WANT OT KNOW

1) IS IT POSSIBLE TO NEST INTERNAL TAB ? HOW ?

2 )SYNTEX TO CALL REPORT FROM TRANSACTION ?

3) DIIF WAYS TO PASS DATA BETWEEN LISTS ?

THANKS

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
376

Hi Friend,

1. Yes, youcan nest the internal table, by declaring whole table2 structure into table1 strucrure.

2. SUBMIT REPORT WITH PARA1 = 'VALUE' AND RETURN.

3. you can pass data between lists using IMPORT and EXPORT.

Hope it can clarifies your query.

Regards

Krishnendu

2 REPLIES 2
Read only

Former Member
0 Likes
377

Hi Friend,

1. Yes, youcan nest the internal table, by declaring whole table2 structure into table1 strucrure.

2. SUBMIT REPORT WITH PARA1 = 'VALUE' AND RETURN.

3. you can pass data between lists using IMPORT and EXPORT.

Hope it can clarifies your query.

Regards

Krishnendu

Read only

Former Member
0 Likes
376

hi,

1. it is possible to club to int tables, only if any commom fields are there..

ex :

consider 3 itab's

begin of itab1 occurs 0,

pernr like pa0001-pernr,

ename like pa0001-ename,

end of itab1.

begin of itab2 occurs 0,

pernr like pa0001-pernr,

icnum like pa0185-icnum,

end of itab2.

begin of itab3 occurs 0,

pernr like pa0001-pernr,

ename like pa0001-ename,

icnum like pa0185-icnum,

end of itab3.

consider u hav data on both the itab;'s....

<b>now to club :</b>

loop at itab1.

loop at itab2 where pernr = itab1-pernr.

move-corresponding itab1 to itab3.

move-corresponding itab2 to itab3.

append itab3.

endloop.

endloop.

2. once u hav crated a report prgm.

then goto <b>SE93</b>, giv a new tcode starts with Z,

then <b>CREATE</b>, it will ask for the pgnm name, giv the progm name.....

save & execute.

reply back

With Regards,

S.Barani

Message was edited by:

S BHARANIDARAN