I just noticed when I am creating Case and updating Case status upon checking the process log, Send email to contact on case status change BP is not triggered. Any idea what causes the isse?
As many other processes this process is hidden from Process Log. It will appear there only if it ends with error so absence of this process means that everything is fine.
Any Idea how can i fix this issue, I want to modify the OOB send email to case assignee business process, but when I saved it as new version I am getting "Parameter StringComparison not found" error, please take note I have not modified any process element yet, i just saved it as new version
To fix this in formula Change subject you would need to change
"([#First activity.First item of resulting collection.Subject#]).IndexOf("RE: ", StringComparison.OrdinalIgnoreCase) == 0 ? ([#First activity.First item of resulting collection.Subject#]) : "RE: " + ([#First activity.First item of resulting collection.Subject#])"
to
"([#First activity.First item of resulting collection.Subject#]).ToLower().IndexOf("RE: ".ToLower()) == 0 ? ([#First activity.First item of resulting collection.Subject#]) : "RE: " + ([#First activity.First item of resulting collection.Subject#])"
After that you would get an error in conditional flow Owner = Modified.
You would need to read case from starting signals and replace this conditional flow to conditional flow comparing Owner and Modified by for the read case.
Any Idea how I can give read permission to access SysAdminUnitPage to non Admin Users (Please refer to first screenshot below). I am also triying to give default read permission but the new button is disabled (Please refer to second screenshot below).
If you want certain role to access users section you can use CanManageUsers operation permission. We do not recommend enabling or changing access right for System administration object. Users with CanManageUsers will be able to view users and change their login/passwords. The will not be able to change licenses or roles.
Hi Angela, Thanks for your reply, I alredy tried but it seems it is giving all the permissions, what I want is only read permission. Any Idea how can I achieve this?
Please note that SysAdminUnit is a system table and almost all of other table are in connection with SysAdminUnit, so making any changes to this section is a pretty dangerous operation.
Information that is stored in this table is intended for system administrators and should not be processed by a regular user.
However, you always can create your own section and fill it with data from the "System users" section via business process.
I need a custom button on dashboard of customer portal.
On click for example Contact create form should appear.
I have another idea, OOB on customer's dashboard there is OOB dashlet of Case with "New" button. On click the form is populating and we can create new case.
But on custom dashlet of custom section "Multi Currency" there is no "New" button. Any idea for enabling this button?
What I recommend to do in this case is to understand how the "new" button is already added on a existing dashlet.
At first, I recommend to use the chrome debugger and try to search the name of the button in the entire client code (ctrl+shift+f), so you will find where it is added.
Then, after analysis of the code, something similar for your custom object should be implemented.
Also, don`t forget to enable minipage usage in custom section settings.
I have a custom section, I added a custom button on edit view and button is visible on CRM and Customer portal as well.
On CRM that button is functional and on click the pdf is successfully downloading.
But on Customer portal that button is only visible and on click the pdf is not downloading.
from this post ( https://community.bpmonline.com/articles/how-show-printables-print-butt…) I come to know that I need to apply some permissions to enable OOB printable functionality for customer portal. I tried to apply all from this post but that button is still not functional and not downloading pdf (only button is appearing on edit view)
but since I'm not using OOB printable and I'm using custom button so may be there will be another solution to fix this issue like we need to add some code for enabling that button to download.
How to disable the Sort by and Select fields to display options for All Portal Users. We want to set a standard column layout for them, we don't want them to access this functionality
How do I get this associated with a column in a section? This is what I tried:
In the field that will use the lookup, I add a new lookup.
I go to the new lookup in Lookups and Open Properties.
I edit the Object to be Section in workplace.
When I Open Content on the lookup, it displays the sections, but when I try to use the lookup in an Edit Page, the list has no data and if I try to change the view, the Section and Workplace columns are not available to display. The lookup object doesn't have the right data structure.
If I select Section in workplace directly as an existing lookup to add to an Edit Page, I get the error:
Property "Displayed value" is not set in the selected lookup. You cannot select values from this lookup without this property. Set this property in "Advanced settings" section and try again.
Section in workplace in Advance settings is SysModuleInWorkplace, When opened, it gives the dialog:
The "SysModuleInWorkplace" item is either created by third-party publisher or installed from the file archive. Changes for this item cannot be saved. Continue?
Catch 22. What do I do to get the lookup to work properly?
The message The message ' "SysModuleInWorkplace" item is either created by third-party publisher or installed from the file archive. Changes for this item cannot be saved. Continue?' ' indicates that the object is locked for any modifications on the database level. Apart from that, this object doesn't have any display values and therefore it is not possible to add it's values to the edit page. If you need to add the lookup that would show you the section list, it would require the development process since there are no any basic tools to add such a lookup.