79762235

Date: 2025-09-11 17:45:57
Score: 1
Natty:
Report link

Why is your goal to re-trigger the User Event script after creation, instead of just having it run on creation in the first place? It seems to me that your UE script is filtered to the Edit event type either on the deployment or within the script itself.

I would check the deployment first, and see if there is a value in the "Event Type" field on the deployment:

NetSuite deployment record highlighting event type field

Alternatively, you can search for usage of context.UserEventType within the script, as this is what would be used to filter the script to run under certain contexts. See context.UserEventType help article for list of enum values, but it would (likely) be either if (context.type != context.UserEventType.CREATE) or if (context.type == context.UserEventType.EDIT).

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Why is you
  • Low reputation (1):
Posted by: ZSwitaj