Jump to content
  • 0

How to make a trigger that copies multiple records to the same table get sequential number values for each new record


DesiLogi

Question

Hi, I have a trigger in a table that runs On Update to copy and insert new records into the same table.  This happens when a user selects multiple records in a tabular datapage and uses Bulk Edits to check a field 'CopyIt'. If a record's 'CopyIt' value = true then it goes through the trigger. 

This works fine for copying multiple records at the same time into the same table. The issue is I have a field (ItemNum_Integer) in that table that needs to be sequentially ordered for each new record (sort of like an autonumber record but not set to that because sometimes the values start over for subrecordsets and have to be changed).

So the first new, copied record's ItemNum_Integer value would be the Max of the existing ItemNum_Integer  in that table (joined by a common ID number so it uses a sub-recordset) + 1.  This works but ONLY for the first new, copied record. Every record thereafter uses the same value. So if I copy 5 records the first record will have the correct Max ItemNum_Integer + 1 value but then each record after it will use the same number.  For example, if the first new/copied record has a Max ItemNum_Integer + 1 value of 106 then each of the five new records repeats 106 for their ItemNum_Integer value when they need to be 106, 107, 108, 109, 110 respectively. 

It seems like somehow the Max ItemNum_Integer + 1 isn't firing sequentially. Does anyone know how to do this? 

 

Screen Shot 2022-04-21 at 5.38.48 PM.png

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

I just tried the For Loop and am still getting the same thing--106 repeated for each record in the bulk edit where it should be 106,107,108, etc. Here's the trigger--there must be some reason it's not sequentially adding 1 to each ItemNum_Integer value as new records are created. 

 

Screen Shot 2022-04-22 at 12.07.41 PM.png

Link to comment
Share on other sites

  • 0

So what happening is, before the bulk edit, the last record is in 105 and once the bulk edit was executed all records have 106 instead of a sequential value? If that's the case, I think instead of adding one, you can create a variable outside your loop and set that value to 1 then use that value to add to your ItemNum_Integer and at the end of your loop add 1 to that variable so on the 2nd run of the loop it will use the current value of the variable which is 2. Hope this helps.

Link to comment
Share on other sites

  • 0

Got a solution to this issue--the problem was that the 1st 'Where' clause was holding up the Loop from sequentially running. If the 1st 'Where' clause is put in the 'For' section itself, the Insert runs the Loop sequentially. I ended up using a lookup table (joined) to get the next value for ItemNum_Integer. Once that value is pulled for the new record the trigger will update that lookup table with +1 so the next record in the Loop gets a sequential number. Here's some images of the trigger--works like a charm (I had some help, can't take all the credit ;). 

 

 

 

View 1.png

View 2.png

View 3.png

The Forum isn't letting me upload the last image of the trigger but it's an Update clause for updating the lookup table for the ItemNum_Integer value. 

Link to comment
Share on other sites

  • 0
1 hour ago, DesiLogi said:

Got a solution to this issue--the problem was that the 1st 'Where' clause was holding up the Loop from sequentially running. If the 1st 'Where' clause is put in the 'For' section itself, the Insert runs the Loop sequentially. I ended up using a lookup table (joined) to get the next value for ItemNum_Integer. Once that value is pulled for the new record the trigger will update that lookup table with +1 so the next record in the Loop gets a sequential number. Here's some images of the trigger--works like a charm (I had some help, can't take all the credit ;). 

 

 

 

View 1.png

View 2.png

View 3.png

The Forum isn't letting me upload the last image of the trigger but it's an Update clause for updating the lookup table for the ItemNum_Integer value. 


I believe its not just the WHERE statement that is preventing the loop to happen.
image.png.1eac798fab50abf14c549de40baffc48.png

If you'll read this SELECT, it selects the TOP 1 record in Items_2 that matches the ProjectID of #inserted. #inserted only stores 1 value at a given time, that is the record that you have edited on the table. So that is the reason why it uses the same value as the first record, is because it gets the top most record repeatedly.

You may noticed that on the FOR loop that worked, it uses #record instead for this same part. Which makes the value change based on what record is the triggered action looking at the moment. If that makes sense.

Anyways, nice workflow. Gonna  bookmark this as this might get useful for me as well.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...