Has anyone been able to use integration SaaS solutions such as Zapier or MuleSoft with bmp'online? I realize the bmp'online is RESTful and may require some additional effort. I am mostly focused on a one-way sync to create leads. Hoping to find a way to hit the DataServices side of bmp'online.
We already have the suggestion to add the out-of-the-box integration with the services registered and passed to the appropriate team. It will be taken into consideration for the further releases.
At the moment the integration can be created via OData/DataService in case the mentioned services have the open API.
Need your help on how can we insert bulk Contacts. I have written the below code. But need your suggestions to know is there any way that we can insert all the records with a single statement instead of inserting one by one inside loop? I have written this code inside "Script Task".
This filtration can be disabled only within the source code. You need to add the following code under the attributes to the ProjectResourceElementPageV2 (if you do not have this page in your Custom package, you need to add a replacing client module with the corresponding parent object):
Unfortunately, there is no way to force the dll update from your side. This information will be passed on to the developers, so to implement up-to-date dll usage.
In the example from the article this.calculateBalance function is being executed in the onEntityInitialized method. This function is responsible for the value of the calculated field to be refreshed after the page is opened. If you need the value to be updated after the specific action, you should remove the caloulateBalance function from onEntiutyInitialized method and add the conditions for the calculation to happen.
Unfortunately, there is no list of compatible VOIP systems. If you have your VOIP system set up correctly and if it works before integration it should work properly when you integrate it.
I want get the value of a property of a element of my Business Process.In this case, I read all of a employee and from my script task, I want to ask about the value of one of fields, "UsrClaveAltaTemprana". The compilation of the script task is correct but when I do the test from the employee's page and I will see ths process log it pulls the following error.
System.NullReferenceException: Object reference not set to an instance of an object.
at Terrasoft.Common.ReflectionUtilities.GetPropertyValueByPath(Object source, String propertyPath)
at Terrasoft.Core.Process.ProcessModel.Get[T](String propertyPath)
at Terrasoft.Core.Process.UsrProcess3MethodsWrapper.ScriptTask1Execute(ProcessExecutingContext context)
at Terrasoft.Core.Process.ProcessFlowElement.Execute(ProcessExecutingContext context)
The reason for an error is that you are trying to obtain value of an Id. Let me explain.
"UsrClaveAltaTemprana" is a lookup field. Basically, it is a link to another object, so in database it is stored as an Id, but not the value.
If you intend to receive a value, you need to insert a "Read Data" element before a script task. Read the value from the object of "UsrClaveAltaTemprana" lookup, where Id equals the Id retrieved from the record.
Set received value to new parameter. Then use this parameter in script task.