Unfortunately, it is difficult to determine which the filter exactly is required. However, there is a lot of information about how to create an esq query in the bpmonline academy. Please find more information in the articles by the links below:
I was told that you could forward links to reports in emails from BPM. I'm assuming that is through business processes. I see how to send the email- but how do I link the report? The link I'm am sending is just bringing my users to the account page instead of the folder I set up for them in the account page.
Unfortunately there is no way to form a direct link that will open a folder in a section when clicking on this link. If I understood you right this should be some internal email to your colleagues. As a workaround you can ask to open some specific folder in the template directly and provide the link to a section. But direct link to open the folder cannot be formed. I will ask our R&D team to create some logic that allows doing it. Thank you for reporting this issue to us!
i made folders in my gmail account to filter incoming emails and i did synchronized it with created but Is there a way to recieve the information like applied filters with email object received ?
I'm using Orders and Order Items section with a 1:N relationship. On the Order Item I maintain a re-order date for that specific item. When the Current Date equals the Re-Order Date I want to send emails to customers for all the records where this condition applies.
The email should contain Order Item details but also information from the Parent Order, the associated Account and the Contact associated with the Order.
Below is the workflow as I have it so far. I'm unsure how to read the associated data from the Orders, Account and Contacts related to the initial collection of records of Order Items and then how to use all of it to send one email per Order to the Primary Email of the Account and Cc to the contact on the Order. The email body should include the Product Name from Order Item, Order Number and Date.
Unfortunately, it's not possible to send an email to a collection of users in a business process. The functionality is planned by the bpm'online development team.
Ad for now, please try to check the marketing campaigns and trigger mass mailings functionality. It might help.
One option I just made use of is Tags. You can read an object, with or without a tag, then either send the email or tag the object and send the email, then delete the tag and cycle around, or just cycle around.
Let's say you have not tagged anything yet:
1. Read the first item from an object where a tag does not exist, and it meets your other filter criteria. The Tag needs to exist as an option, so you would need to manually create the tag, or tag a record once (so the tag exists) and untag it.
2. XOR condition that the ID from step 1 is !=Guid.Empty. Default flow is to end or go somewhere else.
3. Tag that record (insert a section record tag, for example Contact Section Record Tag). This will denote that the object has the tag and will not be read again in step 1.
4. Send the email.
(You could probably switch steps 3 and 4 as desired)
5. Cycle back around to step 1 and read the next item where the tag does not exist.
OR you can do the opposite, where in step 1 you are searching for records that are already tagged, then you later delete the tag before cycling back around to search again.
Hybrid mode cannot be set manually. It is automatically enabled if the Internet connection is lost and you are using "Online" operation mode. It is also described in the Academy article here.
Please also note that hybrid mode is not present for bpm'online application versions that are less than 7.14.0.
Yes our R&D team is aware of this problem and it is in "Accepted" status. I will also inform them about your community question and ask them to speed up finding solution for this problem. You can workaround this problem by parsing text in notes field and paste this text in a separate "String" data type field and use this string field in your printable.
Thank you for helping us to make our application better!
You need to parse the text from Notes field. Since you are using business process, you can use means of C# language to parse HTML text. You can check the following article:
I have configured a pluggable database (PDB) in Oracle 12c. While trying to launch BPM'Online application, I am getting ORA-00942: table or view does not exist. But I am able to connect to the PDB via Oracle SQL developer.
db parameter of my connection string is as follows:
I have created the user "dharini" with admin privilege. Please advise.
When you click on the Mobile Phone of contact there is a CTI panel call tab opened and call is performed to the number that is specified in Mobile Phone field. This happens because there is an attribute on ContactPageV2 of UIv2 package called "linkclick":
that calls callContact function from CommunicationOptionsMixin of NUI package. So to overwrite this logic you need to simply create your own function and call it in linkclick attribute so to trigger your custom action instead of base action.