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
Rakesh ERakesh E 

Getting an error "Page does not exists" in the installed package.

Hi,

 

Getting an error "Page does not exists" in the installed package. The page for which we are getting the above error is given in the formula field as follows:

 

HYPERLINK("/apex/pageName",IMAGE(url))

 

Can you plz do the needful..

Devendra@SFDCDevendra@SFDC

 

Hi,

 

Does this page is part of a managed package? If yes then try to add package namespace and then the visualforce name.

 

Thanks,

Devendra

Rakesh ERakesh E

 If we push the code into some other org in which the name space is different.. will it work at that time??

Devendra@SFDCDevendra@SFDC

 

You need to provide a namespace name of the package of which that particular vf page is belongs.

 

Are you creating managed package app or just pushing visualforce page from developer org to production org?

 

Thanks,

Devendra

Abdallah MenouerAbdallah Menouer
Thank you Devendra@SFDC, that solved my problem.
Like you've mentioned, if you are trying to access a managed VF Page through a URL, you'll need to add the namespace of the package.
/apex/<namespace>__managedPage
(the URL of the page form the Visualforce Page Setup didn't include a namespace)