‎2006 Feb 09 1:45 PM
Hi,
I have 10 ADRNR(address numbers) values(rows) in my itab1 and i have passed into smartform.
call function 'fmname'
tables
itab2 = itab1.
I want to pass these ADRNRs into SAP standandard address dynamically.So i have to get 10 different address into 10 different reports.
How can i do this?
reward guaranteed
cheers
kaki
‎2006 Feb 09 2:49 PM
Hi Kaki,
First please check the <u>criteria to select</u> ADRNR from your internal table.
Write program lines before your address text.
Define a global varible at global data
V_ADRNR TYPE KNA1-ADRNR.
clear : V_ADRNR.
Read Itab1 with key = "define your search key for different adrnr".
V_Adrnr = Itab1-adrnr.
then pass &V_ADRNR& to address.
Lanka