the AccountFolder.SearchData is a binary field that has the filter query. On the server side, how can I use that field to apply that filter on the "Account" and get all the account Ids?
Unfortunately there is no possibility to filter binary fields directly in esq queries directly on server side. The SearchData field contains filter for Accounts that can get into the folder, so if you need accounts from this folder you can select it from table AccountInFolder.
Actually, if the task is to get Accounts that fits for that filter, we recommend to built esq query matching the filter. It is much more easier and productive.
We have an application to connect and import to bpmonline via either odata or data service. It works well with the usual bpmonline logins.
If we switch to using single sign on(login using windows network login), will there be any changes required to connect and process data using odata or data service? Is there any information/article that can provide further information?
SSO functionality does not affect API or OData integration. SSO changes the process of logging into the system and does not require any modification in integration.
I'm trying to look for a way to run some javascript on every page load (edit page for a specific object schema).
From an edit page we navigate to an edit detail to create a new address. As we save the address and go back to the first edit page. At this point we want to refresh some of the fields using javascript. How can we best achieve this.
I created a new server side module and trying to call from the client side module but keep getting service not found error, even thought the names are looking fine in spelling. Is there any special step I need to follow in order for me to register a .net class as a callable service?
The generated file name is the same as the name of the file which was uploaded to this printable record in the application. To rename the resulted file you need to rename a template and upload this new template to the printable record and after the next download it will be named as this template.
I am actually refering to the generated file whom is attached to the object when selecting to Print it. For instance, the Quote object is currently generating files Quote1.doc , Quote2.doc on the Attachments and Notes tab. I would need it to be something like [Quote.NumberField]v1.doc.
Please debug the function in the developers console in google chrome. Once you find how it works, you'll be able to find how to pass the parameter. Additionally, you can search for the examples with the global search trough all sources in the google developers console.
You can use the InsertQuery client-side. Here is a sample:
var insert = Ext.create("Terrasoft.InsertQuery", {
rootSchemaName:"UsrMyEntity"});
insert.setParameterValue("UsrMyParentId", this.get("Id"), Terrasoft.DataValueType.GUID);
insert.setParameterValue("UsrMyDateProperty", new Date(), Terrasoft.DataValueType.DATE);
insert.execute(function(){// do any refreshing if needed here}, this);
To do any sort of insertions of multiple records, I would create a configuration service and call that instead from the client. It would be far more efficient that way.
The examples are done using C# language in case you decide to create a web service. Also there is a JavaScript example. They are particularly the same in the syntax. There also you can find examples of cases using insert, update, delete and batch queries.
If I have an object, can I create a section with that object? If so, how?
Because I want to be able to create a sections for "Relationships" object of BPM so I can create filter folders on that section object. I need those folders to be be used another section to query and pull the account-contact relationships.
If by "Relationships object of bpm" you mean ContactCareer object (or other existing object) please see the article below in which you would find an instruction on how to create a section based on the existing object:
We are looking for a way to save progress when creating a new opportunity without closing the page. I know about the IsSilent flag, but couldn´t figure out a way to implement it by overriding the onSaved method.