- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2024 05:14 AM
Hello,
Our demands contains a Related links to Create Demand Budget. I want to add a condition to this ui action that these links are no longer available from state 6. I have already added && (current.state !=9 || current.state !=8), but it is still visible. How can I adjust this?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2024 06:19 AM - edited 10-17-2024 06:20 AM
How about removing this:
&& (current.state !=9 || current.state !=8)
and change it to this:
&& (current.state < 6)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2024 06:19 AM - edited 10-17-2024 06:20 AM
How about removing this:
&& (current.state !=9 || current.state !=8)
and change it to this:
&& (current.state < 6)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2024 06:27 AM
Hello Jennifer, thank you, this was indeed the solution!