‎2007 Feb 07 8:21 AM
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
‎2007 Feb 07 8:35 AM
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.