I have a problem with a new created attachments detail in a tab.
I have created a new "Event" tab and I have added "Attachments" detail. Also, I have changed the parent for Schema16Detail object to "FileDetailV2 ( UIv2 )".
When I'm trying to upload a file in attachments, I receive the following error:
The entity for the attachments must be named "ParentEntityFile", so in your case that looks like OtpEventFile, and must also have "File" object as it's parent (not base object). Then you'd add a lookup to relate it to the parent OtpEvent.
I was able to come up with an example on Order page for fields Amount and Payment Amount. General idea is to duplicate logic for each field separately.
What I was not able to achieve is working with triangle as well (https://prnt.sc/qf6y2b), so I removed it. Also, as I am using Order page it has logic behind with Products detail which should be implemented for different currency fields, but I skipped it. In the custom section it should be all good.
Also note, that after adding new fields to the object, they will be empty. So to make it work, after adding fields you should fill them in using db script for example and then set default value for them (as in the article you mentioned) to make it filled in for all new records.
So here are the steps that I followed:
1. Created new fields in the object for Currency and Currency rate separately for each field. https://prnt.sc/qf6znu
I think I also have this issue. Error says "Publish the ... process before starting it".
What helps me is "Download packages to the file system". Seems like we have to "download" each time after saving BP but before publishing, otherwise publishing does nothing.
Yes, this is what I'm getting too, but on a package installed from a zip archive (moving application from dev to test) so I wouldn't have thought we should need to mess around in the config tools at all. Would be useful if someone knew why this happens.
Discovered the issue can be due to other Source Code schemas (C# server code) which fail to compile, which for some reason prevents the Business Process from compiling when it's publishing - I found this by checking the 'Build' log file which can point you to the Source Code schema(s) and the lines causing problems. Would be nice if Creatio told us why the BP publish was failing!
We were trying to filter out the account classification. However, we were not able to add the field account classification which is present in the account section to filters. is there a way to add them into the filter so that it can be searched quickly?
This field that you are trying to add to the filtration is a detail and detail values cannot be read using 1 level filter. To achieve your task you need to build a complex filter using Academy article here.