Discussions
Check out Oracle NetSuite upcoming events and conferences here
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Update your Profile with your Support type to get your Support Type badge.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Get ready to take on exciting new challenges and become the next SuiteMaster of the Month!
Unleash the Power of AI with NetSuite's Intelligent Recommendations
Don't miss out on the opportunity to boost sales and customer satisfaction. Elevate your business with NetSuite's Intelligent Recommendations.
Don't miss out on the opportunity to boost sales and customer satisfaction. Elevate your business with NetSuite's Intelligent Recommendations.
need help with saved search formula to display kits availability
Hi,
I need help with a formula I would use in items saved searches...
thing I'm trying to is displaying "Yes" if item is available and "No" if item is not available. This is easy for inventory items where I just have to add "Is available" field in results tab...but it is no data displayed for kits, so I need to create the following formula (in Pseudocode):
If (Item_type = 'inevntoryitem')//saved search contains only inventory items and kits
{display 'isavailable' field}
else
{
if(minimum[members.available] > 0)
{
display 'Yes'
}
else
{
display 'No'
}
}
But how can I apply this formula in results tab in saved search?
0