Search found 156 matches

 Return to the advanced search

Re: Exclusive Gateway Routing Rule Problem

 by mishika ¦  Mon Jun 05, 2017 3:11 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Exclusive Gateway Routing Rule Problem ¦  Replies: 4 ¦  Views: 5988

Hello, You are facing the issue in routing because the routing conditions you have used are not correct. For instance: if you select "2" for @@Unit and "1" for @=chk_request, you will get TRUE for multiple routes i.e. Route1, Route2, Route3, Route5. This is because you have used OR in comparing diff...

Re: SOAP-ERROR in Creating New Case using Web Entry

 by mishika ¦  Fri Jun 02, 2017 2:22 am ¦  Forum: Developing processes & programming ¦  Topic: SOAP-ERROR in Creating New Case using Web Entry ¦  Replies: 12 ¦  Views: 7943

Hello, You need to check the setup details here. The protocol in the setup details is set to http which leads to the incorrect URL as you can see in your shared image. In the setup, change the protocol to https and also verify the IP address set there. Save the details and check the login web servic...

Re: Add SUM fonction in output documents

 by mishika ¦  Thu Jun 01, 2017 9:45 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Add SUM fonction in output documents ¦  Replies: 5 ¦  Views: 4429

Hello, You can use the following code for your trigger: @@Grid.= '<table border="1">'; @@Grid.= '<tr style="text-align:center;">'; @@Grid.= '<td style="background-color:#DEDEDE;">Quantité</td>'; @@Grid.= '<td style="background-color:#DEDEDE;"></td>'; @@Grid.= '<td style="background-color:#DEDEDE;">T...

Re: SOAP-ERROR in Creating New Case using Web Entry

 by mishika ¦  Thu Jun 01, 2017 4:46 am ¦  Forum: Developing processes & programming ¦  Topic: SOAP-ERROR in Creating New Case using Web Entry ¦  Replies: 12 ¦  Views: 7943

Hello, Please check if the web services are working properly: You can do this by going to the following URL: [url]http://<ip-address>/sys<workspace>/en/neoclassic/setup/webServices[/url] Here you can test various web services if they are working fine. Also, you can check the IP and other settings in...

Re: Exclusive Gateway Routing Rule Problem

 by mishika ¦  Thu Jun 01, 2017 3:07 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Exclusive Gateway Routing Rule Problem ¦  Replies: 4 ¦  Views: 5988

Hello,

May you please share your Process or the Dynaform in which you face this problem?
This will help us debug the problem.

Best Regards
Mishika

Re: Add SUM fonction in output documents

 by mishika ¦  Wed May 31, 2017 9:45 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Add SUM fonction in output documents ¦  Replies: 5 ¦  Views: 4429

Hello, As you cannot include javascript inside the HTML editor of the Output Document, the solution to the issue can be: Create a trigger which gets the table(that you are using in the output document). In the trigger calculate the sum of the column you want. Store the sum in a variable say @@sum an...

Re: Excel/CSV file report

 by mishika ¦  Wed May 31, 2017 9:18 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Excel/CSV file report ¦  Replies: 7 ¦  Views: 6360

Hello, I just tried and export CSV report for a table as Admin from the ProcessMaker UI. You are right, exporting a CSV file from there considers the "," in between the text and stores them separately. But if you export the same table using this trigger code: $tableName = 'REPORT'; //change for your...

Re: Excel/CSV file report

 by mishika ¦  Wed May 31, 2017 6:53 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Excel/CSV file report ¦  Replies: 7 ¦  Views: 6360

Hello, To resolve this problem, you should create the CSV report for the Admin from the trigger. To avoid the "," in between the values you can use the function str_getcsv() . You can refer the following post for further information about this: https://forum.processmaker.com/viewtopic.php?f=44&t=710...

Hello, May you please share the process here. This will help us debug the problem if it is with the process, or PM version. Also, what is the ProcessMaker version from where the process is exported? And what is the ProcessMaker version in which you are trying to import the process? Best Regards Mish...

Re: Querying the STEPS in a trigger

 by mishika ¦  Wed May 31, 2017 3:15 am ¦  Forum: Developing processes & programming ¦  Topic: Querying the STEPS in a trigger ¦  Replies: 1 ¦  Views: 2555

Hello, To redirect to a Dynaform without knowing its position in the task, you can use the following ProcessMaker function in a trigger: PMFRedirectToStep(@@APPLICATION, @%INDEX, 'DYNAFORM', '60422430056a69386a2a885087313352'); @%INDEX specifies the Delegation Index of the task and so within the tas...

Re: Dynafor que se muestre “N” veces en una misma tarea.

 by mishika ¦  Wed May 31, 2017 3:04 am ¦  Forum: Español ¦  Topic: [RESUELTO] Dynafor que se muestre “N” veces en una misma tarea. ¦  Replies: 2 ¦  Views: 4410

Hola, Para ejecutar un Dynaform varias veces, puede utilizar un disparador después de la Dynaform que redirige de nuevo a la misma Dynaform. Si tiene el mismo Trigger para configurar los datos en Dynaform, todo lo que necesita hacer es: Cree un desencadenador que redirija al Dynaform y coloque este ...

Re: Excel/CSV file report

 by mishika ¦  Tue May 30, 2017 9:08 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Excel/CSV file report ¦  Replies: 7 ¦  Views: 6360

Hello, May you please elaborate the problem you are facing in the CSV report generated by the admin . The another issue about the CSV generated using the trigger can be solved using the following code for the trigger: $tableName = 'REPORT'; //change for your PM table $path = PATH_DATA_PUBLIC . @@PRO...

Re: Checkgroup default values

 by mishika ¦  Fri May 26, 2017 6:24 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Checkgroup default values ¦  Replies: 2 ¦  Views: 3117

Hello, I am not exactly clear with the use of IsDefault. But, according to my understanding, you are firing an SQL query to get the respected values to be checked in a checkgroup corresponding to the value of Roles(a dropdown) selected. To do so, you can follow the steps: 1. Create a dropdown with I...

Re: Output document to dynaform

 by mishika ¦  Tue May 23, 2017 2:28 am ¦  Forum: Developing processes & programming ¦  Topic: Output document to dynaform ¦  Replies: 2 ¦  Views: 3367

Hello, As and when an Output Document is generated, it is saved to the server. To access these documents in a Dynaform, you can fetch its details from the database table and generate a link for it. For details to do this, you can refer the following link: http://wiki.processmaker.com/3.0/Output_Docu...

Re: Trigger - Delete Button in Grid

 by mishika ¦  Fri May 19, 2017 7:24 am ¦  Forum: Developing processes & programming ¦  Topic: Trigger - Delete Button in Grid ¦  Replies: 2 ¦  Views: 3683

Hello , You can use the JS function onDeleteRow() for grids in order to calculate the sum whenever the row is deleted. Please have a look at the function below: $("#gridId").onDeleteRow(function(oGrid, aRow, rowIndex) { //code for calculation goes here var val = parseInt(aRow[0][4].getValue()); //va...

Hello,

What is the error you see when you call the executeTrigger REST Endpoint?
May you please share your process here as it will help us understand the scenario and debug the problem.

Best Regards
Mishika

Re: Managing special characters while importing CSV Files

 by mishika ¦  Wed May 17, 2017 10:06 am ¦  Forum: Developing processes & programming ¦  Topic: Managing special characters while importing CSV Files ¦  Replies: 6 ¦  Views: 12630

Hello, To do so: * Save As your CSV file and select Field Delimiter as whatever special character you require, I have taken a comma(,) . Also, set Text Delimiter equal to Double Inverted Quotes (") and select the option "Quote all text cells". This will be something like(for ubuntu libra office): cs...

Re: mssql_free_result()

 by mishika ¦  Wed May 17, 2017 3:20 am ¦  Forum: Developing processes & programming ¦  Topic: mssql_free_result() ¦  Replies: 2 ¦  Views: 3788

Hello, Which database are you using? MS SQL or MY SQL If you are using MY SQL, the code in the trigger to execute the trigger should be like the following: $Store = //appropriate value; $ReqDate = //appropriate value; @@sql = "CALL SP_UpdateBazaarSeq($Store ,$ReqDate)"; @@result = mysql_query(@@sql)...

Re: getting previous step user

 by mishika ¦  Wed May 17, 2017 2:37 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: getting previous step user ¦  Replies: 1 ¦  Views: 2745

Hello, To do so, you need to follow the steps: 1. Create a variable which will store the User ID of the previous step user say, @@prev_user . 2. Create a trigger which will assign the User ID to this variable. This trigger will be placed Before Assignment of the previous step . The trigger will have...

Re: Link to new dynaform

 by mishika ¦  Tue May 16, 2017 9:27 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Link to new dynaform ¦  Replies: 9 ¦  Views: 9093

Hello, Web Entry does not authenticate the users. We need to select user when we create a Web Entry and the link generated can be used by any user. The entry of the case routed by any user who accesses the Web Entry goes in the account of the user we have selected while creating it. If you want to a...

Re: Link to new dynaform

 by mishika ¦  Tue May 16, 2017 6:02 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Link to new dynaform ¦  Replies: 9 ¦  Views: 9093

Hello, To start a new case with a Dynaform as the first step from anywhere outside ProcessMaker you can use any of the 2 methods: 1. Use a Web Entry: You can start your process with a Web Entry. In this, you get a link to start the case and when you click on the link from outside, the Dynaform opens...

Re: Execute MySQL stored procedure on trigger

 by mishika ¦  Mon May 15, 2017 5:47 am ¦  Forum: Developing processes & programming ¦  Topic: Execute MySQL stored procedure on trigger ¦  Replies: 1 ¦  Views: 5669

Hello, To execute a procedure from the ProcessMaker trigger, you will have to use the following code: $db = "13849224459j2345e6846c20533032345"; @@sql = "CALL createData('55')"; //take these variables as case variables. This will always help in debugging the problem @@result = mysql_query(@@sql); Th...

Re: Managing special characters while importing CSV Files

 by mishika ¦  Mon May 15, 2017 4:12 am ¦  Forum: Developing processes & programming ¦  Topic: Managing special characters while importing CSV Files ¦  Replies: 6 ¦  Views: 12630

Hello, To populate a grid with the CSV file you can do the following: * Create first Dynaform, where the file is uploaded. * Create second Dynaform, which has the grid to be populated. * Create a trigger placed Before the second Dynaform with the following code: //set to UID of form where file is up...

Re: Grid title and row number

 by mishika ¦  Mon May 15, 2017 2:15 am ¦  Forum: Developing processes & programming ¦  Topic: Grid title and row number ¦  Replies: 1 ¦  Views: 3247

Hello, To hide the grid row number and title you can add the following code to your Dynaform's javascript: $(".pmdynaform-grid-title").hide(); $(".rowIndex").hide(); $("#gridVar001").onAddRow( function(aRow, oGrid, rowNumber) { $(".rowIndex").hide(); } ); where gridVar001 is the grid's ID. rowIndex ...

Re: parallel task route to next before all instance finshed

 by mishika ¦  Thu May 11, 2017 7:35 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: parallel task route to next before all instance finshed ¦  Replies: 11 ¦  Views: 8577

Hello, You will have to use one of the two options: 1. If you use the "Parallel" type of task because the number of users for the task are not fixed, you will have to wait for all the users to finish the task before moving to the next task. 2. If you don't want to wait for all the users to finish th...

Re: Paused Cases

 by mishika ¦  Thu May 11, 2017 7:20 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Paused Cases ¦  Replies: 2 ¦  Views: 2811

Hello, To view paused cases on the ProcessMaker interface, you can view them from the Paused option in the Home tab . A user can view only those paused cases of which he had been a participant . To view paused cases in which he had not participated, he needs to be given the Process Supervisor access...

Re: How to Access a Case in the Browser WITHOUT displaying Cases List

 by mishika ¦  Thu May 11, 2017 7:09 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: How to Access a Case in the Browser WITHOUT displaying Cases List ¦  Replies: 5 ¦  Views: 4301

Hello, On your screen where the case is opened through the link, there is an arrow at the top right corner of the Cases box. As you click on the arrow, the list gets minimized and is no more displayed to you and only the running case appears on the screen. You can refer the attached image: case_hide...

Re: Chamar dados de um utilizador ao processo

 by mishika ¦  Wed May 10, 2017 5:58 am ¦  Forum: Português ¦  Topic: Chamar dados de um utilizador ao processo ¦  Replies: 1 ¦  Views: 6775

Olá, Para obter as informações do usuário, você pode usar a função ProcessMaker PMF em um gatilho. Por exemplo, o código de disparo pode ser: $userid = @@USER_LOGGED; @@userinfo = PMFInformationUser($userid); @@firstname = @@userinfo['firstname']; Você pode consultar o seguinte link para obter detal...

Re: Case Timing Control

 by mishika ¦  Tue May 09, 2017 4:28 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Case Timing Control ¦  Replies: 25 ¦  Views: 14470

Hello,

Yes, ProcessMaker 3.2 in due to release on May 16, 2017
https://www.processmaker.com/training/3 ... -cant-miss

Best Regards
Mishika

Re: Create New Case error

 by mishika ¦  Tue May 09, 2017 3:53 am ¦  Forum: Developing processes & programming ¦  Topic: Create New Case error ¦  Replies: 5 ¦  Views: 5303

Hello,

Please provide the PHP and MYSQL version you are working on as Amos is correct about the error when working with ProcessMaker on PHP 7.
Also, what operating system are you using?

Best Regards
Mishika

Get an instant solution to move emails to MBOX for[…]

Most Demanding OST to PST Converter

The most demanding OST to PST Converter is TrijaT[…]

Betvisa clone scripts are pre-built software solut[…]

A Bet365 Clone Script is essentially a ready-made […]