There is no simple possibility to call jQuery plugins. You need to create a module in a bpmonline and copy/paste code from a plugin to the module. Then add this module to the dependencies list how is described here
I create business processes for printable documents. where if the data is selected accordingly it will display the appropriate document file for each role.
Apparently the access rights weren't specified due to the filters being set up incorrectly, or there is no record fitting the filtering criteria,
It isn't quite clearly how the filters should be set up since your configuration, customization and the data are unknown. First you need to check if these filters are capable of finding at least one record in Print Document object:
You can also simply re-distribute the access rights by Title here since you probably have only one printable with such title:
You can also fire an email to support@bpmonline.com with more description so support could provide you with more information/guidelines.
You also want to make sure the object is managed by records, so check the object permissions section.
It seems you are trying to set up access rights for printable by the record opened. The access rights are not working in a such way, though. The user will be able to see the printable despite the record being opened if he has read rights, or won't see the printable anywhere if he has no read rights.
Such logic can only be implemented by additional developing. It should be similar to the way business-rules work, Filtering by value of the field and either hiding or displaying the printable option.
If speak about the detail filter I still don't see the difference. Could you add more information?
Answering your second question. There is no anything special between changing something in a detail and edit page. So you will need to create an attribute with dependencies and to set what method will fire when the attribute is changed. For example here is an example for an edit page
Or you may look at BaseProductDetailPageV2 schema:
Yes, It works for me. I tested this yesterday. I told you, check BaseProductDetailPageV2 schema. The setTaxAmount method will be launched when you change some of the dependent columns in an order in a product editable list
In the BaseProductDetailPageV2 the attributes is work on the edit page. I don't have a edit page. I need put the filter in the lookup listed in the editable list detail to filter the field in the image, the equivalent of ProductDetailV2. Exist a example of that?
Just try it and you will see it works. You may also use Detail wizard from the parent page to add some business rules such filters and making fields editalble and you will see that these rules work in an editable list and stored in a DetailPageV2.
We are working on a new section and have stumbled upon the following issues:
1. New records can be created and saved but when one wants to view or edit them the system will not let you do this and instead it will show the new record page (see attached figures).
2. Records cannot be erased. We get an error message that says records can't be erased and we must contact the admin.
The issue is more likely caused by the previously improperly deleted column or object from the system. The localizable strings of the existed column might store in the system such way and cause the problem.
However, in order to give the exact reason, we need to investigate the issue through bpm'online support, since every case differs. As for your request to the support, it is currently in work and we will notify you about the result via email.
One of my current prospect requires a ‘near me’ feature, which from the mobile device allow to localize the customers or prospects close in a range of 30/50 or 100 kms.
This is hot topic that many customer request now.
have you had the need?? can you sponsor my request by liking it?
How can we set a grid to filter data when the page loads initially? For example, in the Accounts section, we only want Leads detail area to list Lead records created in the last 2 weeks by default. A button or menu should clearing of the filter and allow the user to display all data if they need it.
There is no built-in functionality for saving detail filters. Visit BaseGridDetailV2 schema and explore its functionality. As a workaround you can save your filters to cache and use load them from there when open the detail again.
Is there still no built-in functionality to pre-filter details? This is a pretty standard requirement always required by customers. If this is still not there can you please explain step by step how the filter can be achieved?
Unfortunately, there is no built-in functionality for pre-defined detail filters.
The filter can be created only via js development. It's possible to set pre-defined filter using the filterMethod detail's property. The value of the property is the name of the method which implements custom filters query.
The AccountContacts details in the Account page has such functionality. Please feel free to find the example in the AccountPageV2 schema.
I'm new to BPM Online ,I have a requirement to call SOAP service on save click is it possible through web service action from business process and can i call that business process on save button click and display user friendly Message?
Thank you. I am able to access with http urls but I want to access by giving WSDL file so that it must show all the methods in file.And second thing how can i call a business process on save click and display message to end user
If you want to display a message after saving a page, maybe you don't need a business process. Anyway working with SOAP it's a development.
Just add in onSaved() function at your page a call to a function that works with SOAP. There are many javascript code examples in the Internet, that use wsdl and connect over SOAP
I am getting cross domain error while calling web service from Javascript. I am calling XMLHTTPRequest and created soap request and sending the request in the Xml format. I want to know is there any way we can set access control allow origin header?
This behavior should be set at the site where webservice is hosted. This error comes from a browser that manages response from the called webservice and expect to get such header as
I tried to implement in client side but without CORS header seems i can't achieve and in service provided by client they won't provide CORS header. Is there any work around for calling soap web service ? client has provided WSDL document for SAP service.
Then you really should create your own configuration service that calls a SOAP service. Then you call your service when you need it. The complete example how to create a configuration service and call it from client you may see here