There is any way to edit the fields to display in the mobile section? In the web I change the behavior of the field in the object and is hidden but didn't work on the mobile.
Actually this is the out-of-the box logic and it's not possible to hide these columns. Nevertheless, you are welcome to use the "Search for filter column" option that was developed to find the needed filter column fast.
is it possible to show the tags assigned to a record without click on tag icon ?
I'm looking for a solution like this
I can add a text field for each entity and using a business process update this field with all tags assigned to the record, but I don't like it very much.
You can do it in the way you need, just debug the logic of how the tag module is called and how does the data passed there. You need to check:
1) BaseDataView and onTagButtonClick function in this module
2) TagUtilitiesV2 and showTagModule and openTagModule functions in this module
Then you can write your own logic once you debug and analyze how it's called and executed in terms of the mentioned modules and methods in these modules.
thanks for the clarification. Is there any other method? Can I generate a report for many records at once, so that not every record will create a seperate document, but one big document containing all records on seperate pages
Unfortunatelly there are currently no option to automatically download the attachment using the business process.
As a workaround you can set up an autogenerated page that would show the link to the file, so you'd need to make one more click to download the file rather then going to the section and downloading it from there.
I would like to load programmaticaly the temporary table used by creatio when I import an excel file and then launch the import, specifing which entity fill
Actually you are still capable to use OData with business task to achieve required implementation. You don't need to use Scheduler for this, so disregard these deleted links, I will give you fresh one , please take a look on the actual OData 4 link with guide how to set up the integration:
The .NET FtpWebRequest class can download a file to an in-memory stream (without actually saving the file anywhere) that you can then process from the stream. This could be used from a ScriptTask in a process etc
FtpWebRequest request =(FtpWebRequest)WebRequest.Create("ftp://ftp.example.com/path/file.txt");
request.Credentials=new NetworkCredential("username", "password");
request.Method= WebRequestMethods.Ftp.DownloadFile;using(Stream stream = request.GetResponse().GetResponseStream())using(StreamReader reader =new StreamReader(stream)){while(!reader.EndOfStream){
string line = reader.ReadLine();// process the line as needed}}