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

address hard coding

Former Member
0 Likes
271

hi to all

help me in this issue

T_EMAIL_OBJTXT = 'Regards,'.

APPEND T_EMAIL_OBJTXT.

T_EMAIL_OBJTXT = ''.

APPEND T_EMAIL_OBJTXT.

T_EMAIL_OBJTXT = 'INDUSTRY'.

APPEND T_EMAIL_OBJTXT.

T_EMAIL_OBJTXT = 'MUMBAI'.

APPEND T_EMAIL_OBJTXT.

the above is hard coded mail massage but now i want to take out and i need it accoding to company code wise .for that i captured address in an internal table l_add using rea_text functional module how i can i pass this to this above hardcoded part.

thanks & Regards

Kiran Reddy

1 REPLY 1
Read only

Former Member
0 Likes
248

loop at itab.

T_EMAIL_OBJTXT = 'Regards,'.

APPEND T_EMAIL_OBJTXT.

T_EMAIL_OBJTXT = ''.

APPEND T_EMAIL_OBJTXT.

<b>T_EMAIL_OBJTXT = itab-industry.</b>

APPEND T_EMAIL_OBJTXT.

<b>T_EMAIL_OBJTXT = itab-city</b>

APPEND T_EMAIL_OBJTXT.

endloop.