‎2007 Aug 14 9:19 AM
hi all,
i want to generate random names, i mean
i am having a char. field having value say 'name'.
now i want to generate few more name like 'namea', 'nameb', 'namec' etc.
can you please help me in this problem,
points will be rewarded as per the help.
thanks in advance.
‎2007 Aug 14 9:23 AM
hI sundeep
do one thing create a internal table with a to z values in a single field
now
loop at itab.
concatenate 'name' itab-fld1 into itab1-name.
append itab1.
clear: itab ,itab1.
endloop.
reward points to all helpful answers
kiran.M
‎2007 Aug 14 9:20 AM
‎2007 Aug 14 9:23 AM
hI sundeep
do one thing create a internal table with a to z values in a single field
now
loop at itab.
concatenate 'name' itab-fld1 into itab1-name.
append itab1.
clear: itab ,itab1.
endloop.
reward points to all helpful answers
kiran.M