function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
MayankDkPantMayankDkPant 

Information to be sent ot Add Product Line Item Page

Hi,

 

I have created a custom visual force page for Product selection under opportunity. Now I want that when user checks the checkboxes for to be added to oppotunity and clicks on select button then I want my page to redirect to below url

https://cs9.salesforce.com/oppitm/multilineitem.jsp".

After doing this and when user clicks on select page it shows the below error

 

Unable to Access Page You are missing information needed by the page you have attempted to access. If you believe this is an error, please refresh your screen. If the error persists, please report it to our Customer Support team and provide the URL of the page you were requesting as well as any other related information.
Back

 

How can I pass the information to this page.


Any help will be appreciated.

 

With Regards,

Mayank Pant

 

 

prady-cmprady-cm

This url requires parameter called oppId to function.

 

So in the place where you are setting the url you would need to add

/oppitm/multilineitem.jsp?oppId="{!opp.id}

 

Where opp represents the opportunity record you have in your controller