‎2007 Aug 25 9:40 AM
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
‎2007 Aug 25 10:02 AM
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
‎2007 Aug 25 10:02 AM
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
‎2007 Aug 25 10:05 AM
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