Here is my code in arraycolumn
function rmp_set_vb_list_value(vb_name,vb_value) {
var a = new RMP_List();
a.fromArray(vb_value);
RMPApplication.setList(vb_name,a);
id_addps.id_adpn[0].loadList();
return true;
}
var p=[[Rec.rcpn]].length;
var pen_ps=new Array();
for(i=0;i<p;i++){
pen_ps.push({"label":[[Rec.rcpn]][i],"value":[[Rec.rcpn]][i]});
alert(pen_ps);
}
rmp_set_vb_list_value("vb_items",pen_ps);
Can you help me?
Hello Sir,
As per requirement you want to set array data to variable based(Dynamic) list into array widget.
Now these array contents need to set array widget's variable based list
Hope this help you.
Please feel free to contact us.
Best regards,
Ghanshyam
--
Fujitsu - RunMyProcess
---
You received this message because you are subscribed to the Google Groups "Fujitsu RunMyProcess Developer Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supportforum+unsubscribe@runmyprocess.com.
To post to this group, send email to suppor...@runmyprocess.com.
Visit this group at https://groups.google.com/a/runmyprocess.com/group/supportforum/.
To view this discussion on the web visit https://groups.google.com/a/runmyprocess.com/d/msgid/supportforum/2ff4a709-3d75-43aa-9858-2347a8c05e0e%40runmyprocess.com.
For more options, visit https://groups.google.com/a/runmyprocess.com/d/optout.
--
Fujitsu - RunMyProcess
---
You received this message because you are subscribed to the Google Groups "Fujitsu RunMyProcess Developer Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supportforum+unsubscribe@runmyprocess.com.
To post to this group, send email to suppor...@runmyprocess.com.
Visit this group at https://groups.google.com/a/runmyprocess.com/group/supportforum/.
To view this discussion on the web visit https://groups.google.com/a/runmyprocess.com/d/msgid/supportforum/2bf3e95b-ee08-4d6d-b340-eabc27dec4af%40runmyprocess.com.
function rmp_set_vb_list_value(vb_name,vb_value) {var a = new RMP_List();a.fromArray(vb_value);RMPApplication.setList(vb_name,a);
I have assumed two different arrays one having some column array1 (Refer screenshot array1_config.png) and another having a dynamic variable list array2 (Refer screenshot array2_config.png).return true;}var first_arr=new Array();for(i=0;i<([[array1.array_col]].length);i++){first_arr.push({"label":[[array1.array_col]][i],"value":[[array1.array_col]][i]});}rmp_set_vb_list_value("array2.vb_list",first_arr);
To unsubscribe from this group and stop receiving emails from it, send an email to supportforum+unsubscribe@runmyprocess.com.
To post to this group, send email to suppor...@runmyprocess.com.
Visit this group at https://groups.google.com/a/runmyprocess.com/group/supportforum/.
To view this discussion on the web visit https://groups.google.com/a/runmyprocess.com/d/msgid/supportforum/5b6a7f75-b339-4d40-bcf9-e15e326042f0%40runmyprocess.com.
On Friday, 22 December 2017 12:33:09 UTC-7, com...@vaquerotrading.com wrote: