
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2023 06:48 AM
Hello
Has anyone added the functionality to generate the IDEA# when the end user submits the idea from the Idea Portal?
I have a request to add this #so that its generated when the user clicks Create an Idea button..so that the user would get the message with the# like Incident,
Would also go to MY IDEAS and see the #
has anyone added this capability? thanks much
Solved! Go to Solution.
- Labels:
-
Service Portfolio Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2023 08:27 AM
Idea being a task based table it has numbering OOB.
However to display the generated number in the list of ideas or the idea form, a few widget need to be modified.
E.g. to display the number on the idea form, one needs to
- modify function getIdeaInfo in Script Include IMCommonService by adding line:
number: ideaGr.number.getDisplayValue(),
after (or somewhere around) line:
title: ideaGr.short_description.getDisplayValue(),
- modify widget having id im_idea_detailed_view: add line
<p><small>{{ data.ideaInfo.number }}</small></p>
somewhere around line (40):
<p>
{{data.ideaInfo.title}}
</p>
The result is:
Of course, this is just o p.o.c. and
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2023 08:24 AM
Idea being a task based table it has numbering OOB.
However to display the generated number in the list of ideas or the idea form, a few widget need to be modified.
E.g. to display the number on the idea form, one needs to
- modify function getIdeaInfo in Script Include IMCommonService by adding line:
number: ideaGr.number.getDisplayValue(),
after (or somewhere around) line:
title: ideaGr.short_description.getDisplayValue(),
- modify widget having id im_idea_detailed_view: add line
<p><small>{{ data.ideaInfo.number }}</small></p>
somewhere around line (40):
<p>
{{data.ideaInfo.title}}
</p>
The result is:
Of course, this is just o p.o.c. and can be refined to look "better".
The question is: are you willing to customize the Innovation management components?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-27-2023 08:27 AM
Idea being a task based table it has numbering OOB.
However to display the generated number in the list of ideas or the idea form, a few widget need to be modified.
E.g. to display the number on the idea form, one needs to
- modify function getIdeaInfo in Script Include IMCommonService by adding line:
number: ideaGr.number.getDisplayValue(),
after (or somewhere around) line:
title: ideaGr.short_description.getDisplayValue(),
- modify widget having id im_idea_detailed_view: add line
<p><small>{{ data.ideaInfo.number }}</small></p>
somewhere around line (40):
<p>
{{data.ideaInfo.title}}
</p>
The result is:
Of course, this is just o p.o.c. and