See this example to find out how to create a method that watch for changes in some fields. In simple words, you will need creating an attribute, that will have dependencies on needed columns and fires a method. You can see many examples in the configuration like this one:
attributes: {
"Status": {
"lookupListConfig": {
"orders": [{columnPath: "Position"}]
},
"dependencies": [
{
"columns": ["Status"],
"methodName": "onOrderStatusChanged"
}
]
},
...
where:
"columns": ["Status"] - list of columns where you watch for changes
"methodName": "onOrderStatusChanged" - method that fires when "Status" column is changed
I have answered here how to watch for changes in a field. Pressing Enter fires the changing event. If you need more complex logic, you may need to create your own controls. Follow this link to see how.
Is it possible to create an AccountProfile field, such as the one located to the left of the leads section, in other sections (ie. Opportunities) so that a user can quickly bring the account information tied to a contact and display it to the left?
Im trying to lock an attachment from being downloaded from the knowledge center. Is this possible in some way? I would need a full lock, nobody except Supervisors could download them
I tried to consume it using as per documentation but have no luck so far.
(1) tried the webservice using Postmand (works)
(2) try using BMOnline with same parameters
2 headers parameters
Key : Authorization
Authorization : Content-Type
1 body parameters
Json path : $
Data Type : text
is Array : No
Value : <copy from Postman raw body>
but it keep replying response 400
{"error":{"code":"BadArgument","message":"Invalid argument provided.","details":[{"code":"InputMismatchError","target":"input1","message":"Input data does not match input port schema."}]}}
You should deploy an application on-site, create a web service call and test network via fiddler to see what request is sent to web service. The message you've got means that bpm'online sends a request in a format that differs from that you are expecting. Then you can set up parameters in a such way that will fit to Azure learning standard.
The other option will be creating a script task with calling that webservice from c# code. If you are a developer this is the best way because allows you to do more than built-in web service call.
As for now there is no possibility to turn off the indexation for the section in the application, but we have a correspondent problem registered in our system and the functionality will be added in 7.12.4 or 7.13.0 version of the application. In one of these versions there will be the possibility to turn the indexation off for the specific section (turn the global search off for the section). We've also informed our R&D team about this request, so to inform them how important this functionality is.
Technically, this can be implemented because Azure SQL Single Database has the functionality of the MS SQL Server, which is necessary for bpm’online setup.
However, this deployment was not tested by any developer or client, thus no one can predict how exactly the system will perform: some functionality might not be working correctly. We suggest to choose cloud deployment instead not to spend any resources for database deployment and maintenance.
File limit depends on amount of lines in the file. According to the stated requirements, the maximum number of imported lines in the file should not exceed 50,000.
This is the amount at which the file is imported without any issues. As a workaround you can import file in parts or you can implement your own import using the web service Data Service or using OData.
As to your third question, please specify what exactly do you mean? Which attachments are you referring to?
It is impossible to import data in attachments and notes using Import from Excel functionality. Import to Attachments cannot be performed because files cannot be imported via Excel and data cannot be imported to Notes since this is a system column.
Danilo, indeed there is size limitation for attached files. It is set to 10 MB as a default value but it can be adjusted in [Attachment max size] system settings. There is no MAX value so it is limited by amount of free space in your database.
Is it possible to copy a column's lookup value to a string column from another section using a business process? what is the correct syntax for the formula?
Could you clarify your business case (what you are trying to do) or give an example/more information on the end result?
If you mean just the values in a lookup:
I know you can export data that is bound to a lookup within a package. I do not think you can create a different package and then recreate an object within that package to transfer the data connected to said package. You would have to use the same package.
If you mean data from a section (records), excel my friend. Use the excel exporter tool in the Action drop-down.
Hopefully with more information I can help further!