Questions tagged [ibm-bpm]

IBM Business Process Manager (IBM BPM) is a business process management platform by IBM

It provides analysts, developers and users with a rich toolset and runtimes for designing, executing, monitoring and optimizing business processes.

The server software is based on Java Enterprise Edition and is using IBM WebSphere as runtime environment.

156 questions
0
votes
0 answers

How to send an email using IBM Business Process Manager?

I'm trying to send and email from a system task but it doesn't work. The task I'm using is Send email with SMTP sending this parameters: Should I specify a smtpHost? And if so, how do I know what to put there?
0
votes
0 answers

Getting error while enabling casemanager in IBM Business Automation Workflow

I have installed IBM Business automation workflow on my local and trying to enable CaseManager, as per the knowledge center when I try to execute below command. It throws error print AdminTask.createObjectStoreForContent(['-clusterName',…
Rahul
  • 269
  • 2
  • 10
  • 25
0
votes
0 answers

How can we save a user uploaded file to a specific location (eg: /temp/testfolder/) in IBM BPM v8.6.1

I am trying to save user uploaded files to a specific location using "ECM File Uploader" & "ECM Document List" in IBM BPM v8.6.1. Currently user is uploading files through an interface and document store is providing a reference URL to the file(s)…
JKWGL
  • 1
  • 1
  • 3
0
votes
0 answers

Exprort Bonitasoft .bos for intelij

Export a project in bonitasoft an run it in intelij Hello, do you know if i can run in intelij the export of bonitasoft? I export the project but the files i dont think that can run in intelij.
0
votes
0 answers

Problem: IBM BPM version 8.6.0. Doesn't inserted new rows to BPM_TASK_INDEX_JOB table

Problem: IBM BPM version 8.6.0. BPM_TASK_INDEX_JOB table doesn't updated (Doesn't inserted new rows to this table it's about 2 months or more). That cause frequently down of BPM Application. What can be a problem? Can anyone give some fix decision…
NeoFar
  • 77
  • 1
  • 12
0
votes
0 answers

Can't Create Case Solution in Workflow Center on IBM BAW 20.0.0.2

When i try to create Case in Workflow Center the error pops-out: To create a case solution, you must have permissions to a project area. Contact your administrator for these permissions. I'm logged as admin user, on internet i can't find something…
0
votes
1 answer

IBM PBM | Is there a way to return all service flows names in a list?

I want to add a tag name to all created service flow so I was searching on way to return all screvices names into a list to apply change on all of scervices at once but I got nothing. -------------------------
0
votes
1 answer

IBM BAW 22 - process portal - display all tasks

I have a very big problem after migrating BPM from version 8.5.5 to BAW 22. I have a saved search on the process portal, which shows me the tasks of all users broken down by process. After migration, this search has stopped working and it only shows…
luki88
  • 81
  • 1
  • 5
0
votes
0 answers

Is it possible to scan IBM Business Automation Workflow source code with SonarQube?

IBM Business Automation Workflow has its own web IDE and it has the capabilities from IBM BPM (Process) and IBM Case Manager (Workflow-Case). Does anybody has a way to scan its source code with SonarQube?
0
votes
0 answers

what is the code for getting auth code from azure in IBM BPM

I am trying to create rest request using Call Multipart form data REST API service in REST API toolkit. It requires apiURL, HTTPHEADER, PARAMETERtoPOST, httpMethod (using GET). I defined all the parameters(client id, client secret, response type…
user183596
  • 11
  • 1
0
votes
1 answer

Case-insensitive search in IBM BPM search API

I'm using IBM BPM's Search API /rest/bpm/wle/v1/search/query for fetching tasks based on custom conditions. But this API is returning response only if the value is matching completely (case-sensitive). Is there any way to make it…
Pramod H G
  • 1,513
  • 14
  • 17
0
votes
1 answer

Send Json Request in POST Method

I have a JSON string which is coming from Queue. I need to send it as request parameter to create a case in BPM via REST. Rest Service Input- request(String) Therefore I form the below and try to call the rest service Request-…
0
votes
2 answers

Headless BPM Solutions for Integration with Custom application for workflow management

Are there any BPM solutions that can integrate with a Custom application so that I can use BPM only for the workflow and UI from my application
KP.
  • 393
  • 1
  • 12
0
votes
1 answer

IBM BPM JS Calling external Service from another Toolkit (from dependency)

im using integration toolkit for each external system ... externalService definition, Servers registation datas, ENV refers the J2C creds to use, datamapping, bussines-errors handling etc. (Bussines-Layer TK ex. TK_SAP) for the common functionality…
0
votes
1 answer

IBM BPM delay on load event

I want to make a button click after 10 seconds when the UI loads. I've tried below code in the "On load" event, but seems that the timer doesn't work: function myFunction() { me.click(); } setTimeout(myFunction, 10000); Any ideas how to trigger the…