We are building a portal website (PHP) where we want to provide PDF-files to the users. These PDF-files are stored as attachments in the 'Attachments and notes'-tab of a section in bpm'online.
With odata, we receive a link to the PDF file. But when a user clicks this link, the login-page of bpm'online is shown.
Is there any way we can extract these PDF files from bpm'online towards the portal without user login required?
For example, stream the base64 data from bpm'online and recreate the PDF in the portal?
It's possible to change web service mode to anonymous. However in this way it will be a clear violation of security policy. All files from bpm'online will be accessible to everyone, so it's not recommended to do. Before making requests a third party application must be authenticated and receive the corresponding cookies. Please use cookies and sessions in all requests. I hope the article below will help you.
Hi , I have also the same scenario where I need to fetch the documents from Custom Section from Creatio to the third-party portal so that end customers can download the files.
I was struggling to understand how it can be done at a third-party application using OData.
There is an opportunity to find out which folder is applied to the list. Please use the property this.get("CurrentFolder"), which will give you all information you need.
Hi, How am I able to return a value of a Lookup (the Name) using ESQ, JS? I have defined the Lookup as an attribute: "DevCertPublicationFrequency": { DataValueType: Terrasoft.DataValueType.LOOKUP, }, I have the following function: getLookupValue: function (DevCertPublicationFrequency, safe) { var column = this.columns[DevCertPublicationFrequency]; if (column && (column.isLookup || true)) { var columnValue = this.get(DevCertPublicationFrequency); this.set("DevCertPublicationFrequency", columnValue); } }, When the record is saved I want to check the value of the Lookup and call a function if the Lookup value selected prior to the save = 'Daily' Save: function() { this.callParent(arguments); this.getLookupValue(); var textmessage = "Verification will be performed"; //if periodical edition = daily then perform verification var DevCertPubFrequency = this.get("DevCertPublicationFrequency"); if (DevCertPubFrequency === "Daily") { Terrasoft.showInformation(textmessage); this.verification(); } },
I need to integrate with a system that has its own custom identity provider which isn't LDAP, it's more a forms way of authentication that generates a user token. Is there a way of integrating over SSO on BPM'online to use the custom identity provider?
A lead will be associated with the contact right away if you add the required contact on a lead page https://prnt.sc/o80jst. As the result, on the contact page in the history tab, you will be able to see the associated lead https://prnt.sc/o80l57
I currently have fields in both Contacts and Leads that are common, such as First Name, Last Name, Address, etc. What I need is that when I update these fields in Contacts I also update in Leads for the same record and vice versa.
I need to delete the Full name field from the mini page of the Lead section and add the First name and Last Name field separately. When I'm going to delete it from the Wizard section, this field does not appear. I do not know if this is part of the header.
It would not be possible to remove this field from the section wizard. Try to add this operation in the LeadMiniPage schema of the Custom package. Here is the example of the code:
the below image is the screen shot of lead registration form. But if we are doing this for new object(not lead), how can we include the html code (step 2), since i am trying to add record in new object. The steps are not clearly mention in the above link. how to get the html code.Please help...
because to integration wordpress landing page we need landing id which is in html code. i.e auto generated .
It requires to be a wordpress developer in order to apply the landing page code to a wordpress application. Otherwise please consider using the plugin.
Unfortunately, there is no opportunity to create custom objects from a landing page. However please feel free to create a lead as usually. Then create a business process. It's possible to design a business process that will create a custom object based on the newly created lead.
I din't ask for creating a custom objects from landing page. I asked for creating a record in custom object(new object) from landing page, just like lead get creates from landing page.
Anyways it worked for me. i have explained how i did it in my previous comment.