- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2023 09:41 PM
Hello,
I'm attempting to apply a customer project template in flow, and found this post on how to apply a template to a project using an Action How to apply (automate) a Project Template using Flow Designer
I'm trying to do the same thing, but to a customer project instead of a project.
The action script in the above post is
(function execute(inputs, outputs) {
var temp = inputs.templateId;
var pjtSD = inputs.pjtSD;
var project = inputs.project;
GlideProjectTemplate.apply(temp,project,pjtSD);
})(inputs, outputs);
My questions is:
I was not able to apply a customer project template to a customer project using GlideProjectTemplate class following the steps in the forementioned post? Is there similar Class for Customer project?
Regards,
Ziad
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2023 11:16 PM
Hello,
It did work for customer project and project, the issue turned out to be incorrect variable was used in the script
Regards,
Ziad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2023 11:16 PM
Hello,
It did work for customer project and project, the issue turned out to be incorrect variable was used in the script
Regards,
Ziad