This element is considered outdated and we do not recommend using it or adding it to any section. This is why there is no documentation regarding this feature.
I have a custom page schema with two fields a text field and a look up field. Any idea how can I retrieve the Id of the selected record from the lookupedit field? I tried below syntax but it is not working:
I can search for the information on how to do that, but it's terrible obsolete. Please specify why you need that thing. Please consider creating the same functionality on JS. This way you'll find much more documentation and it will be much more comfortable for you to work with it.
Hi Eugene, thanks for your reply. We are using custom page schema because we have a requirement to fully customize a screen and i think it is achievable using custom page schema.
The task that you want to achieve theoretically can be achieved using a business process that is triggered upon adding record to the contacts section and you need to specify "open edit page" element that will open created record. Also on contact's page you need to add a checkbox which should be checked and it should be defined in conditions which fit created record. For example create a checkbox that is called "Created bia webservice" and when creating a record via webservice you need to transfer the parameter "true" for this checkbox so the record is created with checked checkbox and triggers business process execution that will open edit page of this record.
When we open process settings of a business process there is no process description that can be read there (please see screenshots http://prntscr.com/nb41yp, http://prntscr.com/nb4238, http://prntscr.com/nb426p, http://prntscr.com/nb42ar). Also if we take a look at the VwProcessLib table in database (that is responsible for information on business processes in Process library) there is also no process description field.
Unfortunately the value of this field is stored in SysSchema table and there is no way to connect to this table using filtering tool when selecting fields to display in Process Library since the table that stores information on business processes, as I mentioned before, is VwProcessLib. I will create a request to our R&D team so they could make this field accessible from Process Library. Thank you for helping us to make our application better!
Unfortunately, bpm'online does not provide any oob way to modify the login page, except changing the logo picture.
Of course, if you are using onsite, you may try to modify asp net web forms files that are used for login and are located in Login folder, but it is highly recommended not to make any changes to it due to security reasons, furthermore, making modifications to it could brake authentication in bpm'online
Actions button is located in BaseSectionV2 schema. You can hide it by overriding the element in the desired schema. For example here I hid it in AccountSectionV2: define("AccountSectionV2", [], function() {
Tag button is added in QuickFilterV2 schema. To remove it, you should debug the schema that I mentioned to understand how this button is added. Basically, you may simply remove rights on the tag object, so users will be unable to choose tags when click on the tag button.
You tick off the default value checkbox in the system setting 'Show configuration version' to hide the version number http://prntscr.com/nadvom After that, log out and log in into the system to apply the changes.
You can remove the version number by the means of development. To do so, create a replacing client module for MainHeaderSchema. Override the
_initConfigurationVersion method, so it returns no value, or override the init method, so it won't call _initConfigurationVersion method. As an additional option, you can create a new CSS module to hide version by the means of CSS.
We have a client that wants to run bpmonline on older machines and with a low power internet connection... We have noticed that performance suffers particularly when running processes, both from a section (using the run process button) or triggered by a change in stage (using green buttons). A process that normally takes a few seconds can take up to 5 minutes....
Do any of you have experience implementing projects on older hardware and/or low power connections? Is there a minimum requirement for either of these? Do you have any tips for this?
Here are server-side requirements that machine needs to have from hardware and software point of view. Also minimum client-side system requirements can be found here.
How can I use the "Created on" date in another section?
I want to use it outside of Activities - so I put it in another section- the only problem is that its not populating and I can't find the code to copy in...and I'm not a coder. Honestly- I'm not even sure if it should need code.
You can simply use business processes if you need to take one value from a record and put it to another record. Even if those records are in different sections. For example this business process will read created on value from created activity and update Valerie Murphy profile and change created on value for Valerie's contact record http://prntscr.com/na6ywa. Please read this Academy article so to understand how business processes can be created.