Built something you're proud of? Tell the story. A quick G2 review of App Engine or Build Agent helps other developers see what's possible on ServiceNow. Share your experience.

regarding external access

RohitPapann
Tera Contributor

Hi Everyone,

Thanks for the earlier guidance. I was able to make progress, but I’m still facing an issue.

What I did so far:

  • Created a Record Producer for the Lead table and made it public.

  • Updated ACLs so that the Guest user has read/write/create access on the Lead table.

  • Fixed the earlier issue where variables were read-only — they are now editable.

Current issue:
When I try to submit the form, I get the error:
“Something went wrong and your request could not be submitted. Please contact your system administrator.”

From my understanding, this might be because the Guest user doesn’t have create/insert access on backend tables like sc_cart, sc_request, or maybe I need to update the Table.None ACLs.

Has anyone faced this before? Any suggestions on what I might be missing?

Thanks,
Rohit


 

 
 
 
2 ACCEPTED SOLUTIONS

Raghav Sharma24
Giga Patron

@RohitPapann record producers does not insert record in "sc_request" etc tables these are catalog item tables.

Your record producer have a target table, make sure that guest user have access to create record in that target table. you need to have a proper create table level ACL for your target table.

View solution in original post

2 REPLIES 2

Raghav Sharma24
Giga Patron

@RohitPapann record producers does not insert record in "sc_request" etc tables these are catalog item tables.

Your record producer have a target table, make sure that guest user have access to create record in that target table. you need to have a proper create table level ACL for your target table.