cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

USING LIST DATA TYPE IN SAP MII

Former Member
0 Likes
1,646

Hi,

My requirement is to store some values coming by executing a loop into separate variables.

The method which i thought of to implement this was using List variable which can store multiple values as long as the loop executes.

But i am not getting how to assign the different values into the List variable and its giving some error.

Please can some one guide me how to use this List variable or any other best alternative.

Thanks,

Praveen.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Likes

Hi Praveen,

Below are my suggestion may be help you.

List: insert(list,location,value)

insert(<List_Variable_Name>, <Location could be your loop current Item>, <Value of your repeater column>)

Map: put(map, name, value)

put(<Map_Variable_Name>, <Name Of Key could be your loop current Item>,<Value of your repeater column>)

you can also use XML document than use XML content of document.

also check Expression Editor Functions in MII Help for more details of functions.

Hope it helps!!

Regards,

Manoj Bilthare

Former Member
0 Likes

Thanks Manoj!!

Its working fine now.

Answers (0)