- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2018 11:19 AM
I have overriten a UI action from dmn_demand or idea table from the demand suite to carry over in my new application scope. I noticed I get a warning in systen log: ActionUtils isnot define. How can I call this global code in my application scope ?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2018 01:14 PM
No impact to OOB features.
You are must make this util available to be called from all app scopes.
Regards,
Sachin

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2018 11:24 AM
you need to use global.ActionUtils in your UI action code to call ActionUtils.
ActionUtils is in Global Scope.
Regards,
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2018 11:37 AM
what about action.get('something'); ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2018 11:48 AM
It still error out
gs.include('ActionUtils');
var au = new global.ActionUtils();
au.postInsert(ideaRec);

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2018 01:17 PM