Skip to main content
10-Marble
March 9, 2026
Solved

What are the Java APIs to validate the Windchill url component

  • March 9, 2026
  • 1 reply
  • 139 views

Hi, 

I want to create a Filter on the Pop-up Window Actions. Based on the action Name, I want to enable or disable the Action. What is the Java Api? I found WTContainerReference for the Product Details. 

 

Url : colorStructure/zfColorStructureWizardPopup?context=tcomp%24infoPage%24VR%3Awt.part.WTPart%3A1173627%24VR%3Awt.part.WTPart%3A1173627%21*&componentType=INFO&cacheBuster=17727800&ContainerOid=OR%3Awt.pdmlink.PDMLinkProduct%3A133401&oid=VR%3Awt.part.WTPart%3A1173627&u8=1&unique_page_number=58185912925159_7& AjaxEnabled=component&actionName=zfColorStructureWizard&

portlet=poppedup&context=tcomp%24infoPage%24VR%3Awt.part.WTPart%3A1173627%24VR%3Awt.part.WTPart%3A1173627!*&oid=VR%3Awt.part.WTPart%3A1173627

 

Thanks!

Kanchana.

 
Best answer by KanchanaDutta

Found the solution.

HttpServletRequest httpRequest = validationCriteria.getHttpRequest();

String actionNameWizard = httpRequest.getParameter("actionName");

1 reply

16-Pearl
March 9, 2026

Hi @KanchanaDutta,

Do you need to hide the step JSP?

10-Marble
March 9, 2026

Hi @TDT ,

 

I want to Hide the Actions if its this Wizard pop up. zipped the screenshot.

There is Actions drop down menu which has Copy, Paste, Export Options within the Wizard toolbar. I want to Disable the Actions if this pop up wizard opens. Rest of the places, these Actions should show. So, I am creating a Filter to validate the actionName value.

 
 

 

 

 

KanchanaDutta10-MarbleAuthorAnswer
10-Marble
March 11, 2026

Found the solution.

HttpServletRequest httpRequest = validationCriteria.getHttpRequest();

String actionNameWizard = httpRequest.getParameter("actionName");