Skip to main content
Nintex Community Menu Bar
Question

Page UI does not exist" error when calling a SKUID page from a custom button an another Skuid pag"

  • July 10, 2024
  • 4 replies
  • 14 views

Forum|alt.badge.img+6

I have a skuid page that is replacing our standard Account page. On this page I have a tab set that has some buttons that call additional skuid pages. I have three buttons that call different pages. Two of them work fine but I am getting an error on one. The error is: “Page UI does not exist”. I am able to call this page from the New button on the apps tab page and I have confirmed that the visual force pages are there and security is set correctly.

Here is the syntax I am using to call the page from the custom button:

/apex/UI?AccountID={{$Model.AccountData.data.0.X15_Character_ID__c}}&AccountName={{$Model.AccountData.data.0.Name}}&CalledFrom=Account&sfdc.override=1&objecttype=Inventory_Adjustment_V2__c&actiontype=New

See attached screen shot of the error.

Any thoughts or suggestions?

Jeff

This topic has been closed for replies.

4 replies

Forum|alt.badge.img+17

My guess would be that your merge syntax is not populating the correct URL parameter. You could past the merge syntax into a template on your page to see what is populating when the page is live.


Forum|alt.badge.img+6

Raymond,

I tested by stripping out all the merge syntax, see below, and I get the same error:

/apex/UI?&sfdc.override=1&objecttype=Inventory_Adjustment_V2__c&actiontype=New

Page UI does not exist




Forum|alt.badge.img+6

All,

I got this working.  

I added the skuid__UI and page=pagename.    See below.    If I just added skuid__UI  I would still get the error.

/apex/skuid__UI?page=InvAdjustmentV2New&AccountID={{$Model.AccountData.data.0.X15_Character_ID__c}}&AccountName={{$Model.AccountData.data.0.Name}}&CalledFrom=Account&sfdc.override=1&objecttype=Inventory_Adjustment_V2__c&actiontype=New


Forum|alt.badge.img+6

Thanks for all the assistance.

Jeff