Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

We recommend placing the above axon query into a "job" so you can avoid any "timeouts" (on larger databases) and so you can have the job saved for anytime any time you add new points with actions that need permissions. 

...

  1. Download the "ActionPermissionsJob.zip" listed directly above

  2. In FIN Stack, click on the "Folio" app (in the right menu)

  3. Select "Restore"

  4. Get out of the Folio app, and go into the "Jobs" app (in the right menu)

  5. Click on the "Action Permissions - Auto" Job

  6. click Click the "Run" option to begin the job job. 

    1. Depending on your database's size, this may take anywhere from 10seconds - 10 seconds to 4minutes to complete

  7. Verify that all your actions got a permission level set by running "finUniqueActions()" in Folio

...

2. Use one point from each of the unique sections returned from the first query and plug its id into the query below to get a list of all actions that have the same actionssteps: readAll(point and actions==read(id==@1eeb0a1b-e62962c7)→actions)

...

4. If you do not want to get results form step 3, you can automatically find all similar action points and tag them in the same exact step (combine step 2 & 3) by using the following query: readAll(point and actions==read(id==@1eeb0a1b-e62962c7)->actions).toRecList().map x=> x.diff({testTag}).commit()

5. when your are done tagging each point, you can then go and perfect 1 point from each unique set, and use the clone tags tool to clone it to each of the ppints points in the same set using the tag you assigned them in steps 3/4. 

...