- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2020 03:21 AM
Hi, everybody.
We have a new module created on the interaction table.
In this new module we want to have a custom list view and a custom form.
The Form and View seems to work fine. But if we want to modify the list layout to add new fields to the view, this error appears:
*****************************************************************************************************
Configure view "All Call Me Back"?
The view "All Call Me Back" has not been configured, and the "Default view" has loaded.
Do you want to clone the "Default view" then configure the view "All Call Me Back"?
*****************************************************************************************************
It doesn't matter which button you press. (No.... or Yes....)
We press one of them.
And the list does exist...
This is the new Module "All Call Me Back":
Clicking on the link opens the correct view:
The list opens correctly:
And if I open a record, the form is correct:
It seems that the "All Call Me Back" view doesn't exist.
Any idea?
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2020 09:54 AM
The problem was resolved deleting the white spaces between the arguments.
Example:
Bad --> &sysparm_order=sys_created_on &sysparm_order_direction=desc.....
Good --> &sysparm_order=sys_created_on&sysparm_order_direction=desc.....
Rodrigo.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2020 06:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2020 09:54 AM
The problem was resolved deleting the white spaces between the arguments.
Example:
Bad --> &sysparm_order=sys_created_on &sysparm_order_direction=desc.....
Good --> &sysparm_order=sys_created_on&sysparm_order_direction=desc.....
Rodrigo.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2020 10:26 AM
Hi Rodrigo,
I am also facing same issue. As you said removing spaces in arguments fixed the issue. My question is removing arguments in view rule? Can you please elaborate the fix.
Thanks in Advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2020 05:39 AM
Hi Uzma,
The blank spaces were among the module's arguments.
As you can see, there was a space between each argument.
Before change:
Bad --> &sysparm_order=sys_created_on &sysparm_order_direction=desc.....
Good --> &sysparm_order=sys_created_on&sysparm_order_direction=desc.....
Regards