show kit item members for some sales orders
# ask-stanley-ai
t
show kit item members for some sales orders
c
AI generated answer (using internal Slack threads):
To show kit item members for some sales orders, you can follow these steps: 1. On the Kit Item record, navigate to the Components tab. 2. Check the "DISPLAY COMPONENTS ON TRANSACTIONS" field. This will allow the member items of a Kit Item to be displayed on transactions, including sales orders. However, it's important to note that this setting is primarily designed for printed forms, such as packing slips, and may not make the kit components visible or iterable when loading the sales order record programmatically. If you want to display all items on sales orders but only show the Member Items of a Kit/Package, rather than the Kit/Package itself, you can modify a Saved Search. You can use a formula like this in your results:
Copy code
CASE WHEN {itemtype} = 'Kit' THEN {item.memberitem} ELSE {item} END
This formula will display the member items if the item type is a 'Kit', otherwise, it will display the item itself. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.842391431
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.830202043
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.829313695
Please provide your feedback on this answer.