Skip to main content
Nintex Community Menu Bar
Question

From custom list view to 'New record' custom page

  • July 10, 2024
  • 3 replies
  • 38 views

Forum|alt.badge.img+1

This is probably a very silly / newbiew question. I have a custom list view page built with Skuid that shows my existing records. When I click the link, it takes me to a custom detail page. Works nicely. When I click the new record button on my list view, I get the out of box new record page.

I am having trouble figuring out what the redirect URL needs to be so that I can get my custom detail page (blank) ready to take all the details and create a new record.

3 replies

Forum|alt.badge.img+20

The URL for a tab is as per the following:

/###/o

The URL for a new record is as per the following:

/###/e

### is for the Object 3 char prefix found at the begining of every record. ie. Account is always 001. So the Account Tab and New URLs would be:

/001/o
/001/e


Forum|alt.badge.img+1
  • Author
  • July 10, 2024

Thanks! I changed the URL to /ABC/e and when I click the new button, it shows me the out of box Salesforce new record page instead of the Skuid UI. I just need it to navigate to the detail page that I already have, but in a blank / new record state.

Any pointers? Thanks again for your help!


Forum|alt.badge.img+7

TG,

You’ll have to create another Skuid page that will serve as your new record page (if you want to do less work you could clone your detail page and tweak it a little to make it a new record page). Check out this tutorial on how to override the standard Salesforce new record page, and this tutorial walks you through creating the new record page.

Thanks!
Amy