Forum Discussion
JuicedTechnolog
2 years agoQrew Trainee
Hi Mark,
very simple to do with Pipelines. I like to use a formula url field that displays as a button to edit the record to fire the pipeline, it also helps you track who copied the project...
URLRoot() & "db/" & Dbid() & "?a=API_EditRecord&rid="& [Record ID#]
& "&_fid_112=Copy Project Clicked by " & UserToName([Last Modified By]) & "_" &ToText((Now()))
& "&apptoken=**use your own APPLICATION TOKEN here**"
& "&rdr=" & URLEncode(URLRoot() & "db/" & Dbid()& "?a=doredirect&z="&Rurl())
Pipeline Steps:
- Create a Pipeline that triggers when a Project record is updated and field_112 is updated
- Create a new Project Record
- Search Tasks table records from the Updated Project where Related Project = Record id of updated project and Status is not Completed
- loop through those task records found in step 3
- create a new task record for each task found, set Related Project = Record ID of Project record created in step 2
------------------------------
Juiced Technologies
------------------------------