Raising flag ro update folder when no parent folder in c#

Hi,

 

Im trying to update folders based on a for each loop in another process but it never seems to action the flag - im trying to achive this in code activity but i cannot see where i set the FolderID of the folder it is to update - i can only input the parameters that have been set!

Tagged:

Comments

  • Have you checked the flag property 'Folder which must raise flag' is set to 'This folder'.

     

    Then your C# query would call the folder to update.

     

    for(int j=0; j<dtCh.Rows.Count; j++) {

       theFolderID = (foundRows[j][0]).ToString();

           Mstm.RaiseFlag("MyUpdateFlag", theFolderID, myList);

    }