Question
2
Replies
87
Views
REC
Posted: April 13, 2020
Last activity: April 22, 2020
Save Pagelist with unique id in a local data source
I want to save the selected items row with a unique id in a local data source.
Example: 101: item1 100 Rs Address
item2 200 Rs
item3 300 Rs
Here items and cost belongs to pagelist and address belongs to Data Page 1.
Now i want to save like the example in Data Page 2.
Thanks in advance
***Edited by Moderator: Pallavi to update platform capability tags***
Hi Sangeetha,
1) you can copy data page value to another data page using Data tranform(For Each,Set) or activity(Loop, Property set)
2) while setting the value you can generate random ids using
@Default.GenerateID("T")
@Random.random()
these functions. so that every time it will automatically create unique ids
Hope this helps.
Thanks..
.