jagadish_inturi
UDF1 and Mapping
As shown in PIC,i have created CreateGlobalData Queue UDF.
Code as follows
public void CreateGlobalData(String[] QNo,String[] QDes,ResultList result,Container container){
for(int j=0;j< QNo.length;j++)
{
ArrayList Aitemno = new ArrayList();
Aitemno.add(QNo[j]);
Aitemno.add(QDes[j]);
GAL.add(Aitemno);
}
result.addValue("");
}
NB: Here GAL is Arraylist, Created in Global space in Message Mapping as
ArrayList GAL = new ArrayList();
UDF1 and Mapping
As shown in PIC,i have created CreateGlobalData Queue UDF.
Code as follows
public void CreateGlobalData(String[] QNo,String[] QDes,ResultList result,Container container){
for(int j=0;j< QNo.length;j++)
{
ArrayList Aitemno = new ArrayList();
Aitemno.add(QNo[j]);
Aitemno.add(QDes[j]);
GAL.add(Aitemno);
}
result.addValue("");
}
NB: Here GAL is Arraylist, Created in Global space in Message Mapping as
ArrayList GAL = new ArrayList();