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

generate random name

Former Member
0 Likes
1,080

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
693

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

2 REPLIES 2
Read only

Former Member
0 Likes
693

sort itab by field name

Read only

Former Member
0 Likes
694

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