Skip to main content
8-Gravel
February 25, 2026
Question

How to call a form processor on a wizard jsp which is not being called from an action

  • February 25, 2026
  • 2 replies
  • 51 views

I have created a data utility on an attribute which opens a jsp when clicked. Now in this jsp i've created a wizard and added a wizard step. In the wizard step I have 2 table builders, so when i click on the Ok button i want to get the selected objects. But I'm unable to call a form processor on this wizard.

2 replies

16-Pearl
February 26, 2026

Hi @OP_11714882,

I wanted to understand your use case. Is there a specific reason for having two Table Builders?

Which selected objects of the two Table Builders are you intending to pass back?

8-Gravel
March 2, 2026

I created the data utility on a part attribute and it shows me table builders for Described By Documents and Reference Documents. So I want to pass only the selected documents in these to tables.

HelesicPetr
22-Sapphire II
22-Sapphire II
March 17, 2026

Hi @OP_11714882 

How do you register your wizard? 

You should define the processor in a custom-Action.xml file

 <action name="SPackageWizard">
 <label>Send to ZIP</label>
 <title>Send to ZIP</title>
 <tooltip>Send to ZIP</tooltip>
 <icon>package_zipped.gif</icon>
 <command method="export"
 class="com.my.SPackage.SPackageProcessor"
 url="netmarkets/jsp/com/my/SPackage/SPackageWizard.jsp"
 windowType="popup"/>
 <includeFilter name="hideSPackageValidator"/>
</action>

PetrH

PetrH