Getting Limit in Add Bulk Queue Item

Hello, I am having trouble adding more items to the queue than the maximum amount allowed, which is “15000” for “Bulk Queue Item,” even though I need to add “17000” items. How can I do that?

Hi @Haseeb_Farrukh

Check out the below thread

Regards

Hi @Haseeb_Farrukh

Please check on below thread

Cheers!!

@Haseeb_Farrukh

Use like below in a loop by splitting and add in chunks

  1. For loop with dt.AsEnumerable.Chunk(15000)
  2. Inside loop use currentitem.CopyToDatatable …this will give 15000 items for each iteration

Cheers

Hope you got the solution for your question

@Haseeb_Farrukh