Challenges in Inserting Image Paths into a Specific Excel Column Using Queue Items

Hello everyone, I’m facing a challenge and would appreciate guidance. Firstly, I’m inquiring about the appropriate place or position in my workflow to use the current queue item when interacting with a website.

image

@sasadrinksprite

First of all why are you not using get transactionnitem?

Cheers

is there any difference between get transaction item and get Queue Items in my case!!
I mean it doesn’t matter which one I’m using ,it’s the same concept .am I right!! if not please correct me if any one of them is better in my case!

@sasadrinksprite

Get transaction item used to change the status as well…to in progress and then once completed you can changed to completed…

If you use get queue items how do you know hwich items are already processed?

Also if you use get transactionitem you can perform get till items are present without using two loop and also items can be marked completed or failed

Cheers

do you mean that if I use Get Transaction Item it will automatically retrieve the items one after one without need to put it into a loop!

@sasadrinksprite

You dont need to use the inner loop where you are looping 100

Your flow will be like this

  1. Do while loop with condition as true
  2. Get transactionitem
  3. If Not IsNothing(Transactionitem) go to step 3 else use break
  4. Process the item
  5. Set transactionstatus to failed/success

Thats it

Cheers

1 Like