Hi All

I have created the weblist dynamically to load it according to some selection fields.
Now I need to retrieve the data from the weblist to write it to a file.

Create a button to test communication and load
Code:
 Get DynamicObject of  oSqlContainer "oWebList" to hoObj
 Send ProcessDataSet of hoObj 1
inside cweblist the procedure

Code:
 Procedure OnProcessDataSet tWebRow[] aData Integer eOperation Integer iSelectedRowIndex
              Forward Send OnProcessDataSet aData eOperation iSelectedRowIndex   
               String sSeparador sCadena
                Move "," to sSeparador
               Integer iContador
               For iContador from  0 to (SizeOfArray(aData)-1)
                   If ((aData[iContador].aCells[0].sValue)="1") Append sCadena (Trim(aData[iContador].aCells[1].sValue)) sSeparador
               Loop
          
 End_Procedure
but I see that it does not work, the call does not arrive,

What is the way?

Edgar