Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X
how to get workflow process name when create promotion request
such as following picture,
how to get selected workflow name "Error Flow", "PE_Production..." or "RD_CAD_Promotion..."
by API.
thanks in advance.
Check below API if it works.
MaturityHelper.getPromotionPreference(wtContainerReference,targerState);
wtContainerReference-- >> container reference in which promotion request
targerState -- >> Target state for promotables
Hope this helps
Thanks,
Shreyas.
hi Shreyas,
I can not find API MaturityHelper.getPromotionPreference in 9.1,
could you please provide some example code, Thank you!
where are you planning to use API,
There are two forms which can be used.
below can be used in Wizard.
PromotionRequestHelper.getWorkflowTemplate(FormDataHolder paramFormDataHolder)
second is
PromotionRequestHelper.getWorkflowTemplate(WTContainerRef, State, String)
Here String can be Null or put process name
after that you can used getName(); method.
Hope this will help you.