Good day!
I need help in my code in which I have this listview as shown below
What I want to achieve is that I want to go over each value of the listview and have the result to be formatted as:
"a_1,a_10,a_2,a_3,a_4,a_5,a_6,a_7,a_8,a_9"
So far I have this code:
Integer li_index=0
String ls_value
string ls_zone[]
string ls_result
FOR li_index = 1 to lv_1.totalitems( )
lv_1.GetItem(li, 1 , ls_value)
Messagebox("Value:",ls_value)
NEXT
Thank you in advance!