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

adrnr values

Former Member
0 Likes
356

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

1 REPLY 1
Read only

Former Member
0 Likes
315

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