If i have 2 processes EditInvestor and ViewInvestor
I have a query which runs against a list of investors with 2 operations - Edit (which calls process EditInvestor ) , View (which calls process ViewInvestor)
1) EditInvestor :
Rule 1 : If Investor.Name IS DEFINED
Edit Investor Using InvestorForm
Rule 2: If Investor.CompanyName IS DEFINED
Edit Investor Using CompanyForm
2) ViewInvestor :
Rule 1: If Investor.Name IS DEFINED
View Investor Using InvestorForm
Rule 2: If Investor.CompanyName IS DEFINED
View Investor Using CompanyForm
When i click on Edit, EditInvestor process is invoked and works as expected ( opens the form in a pop up window) for both rules.
But when i click on View , rule 1 works but if rule 2 was invoked the form doesnt open up in the expected behaviour (pop up window) but takes the entire screen width.
What am I doing wrong?