Questions tagged [kofax]

A company offering solutions in the field of scanning, recognition and automatic document treatment. Their software solutions are often referred to as 'Kofax'.

Kofax is the name of the company, though many people call the setup containing several software-applications and modules by the name of the company 'Kofax'. A typical setup allows users to scan documents in batches; automatic recognition extracts information from the documents; and the information is exported/added to business systems.

This tag is relevant for the Kofax Capture platform products like Kofax Capture, Kofax VRS, Kofax Transformation, etc. This tag is also relevant for questions about the setup, configuration, and development of SBL or .NET scripts.

149 questions
0
votes
1 answer

Post Request returning error 400 with Java

I don't really see where is my mistake in my java code. I have to log in to Kofax Total Agility using REST API. For this I tried to use postman to test if my json was correctly built. Here is my login JSON : { "userIdentityWithPassword": { …
davidvera
  • 1,292
  • 2
  • 24
  • 55
0
votes
1 answer

Call a Java JAR file from Kofax TotalAgility (KTA)

I have a BPMN for document management in KTA. The steps are the following : Create a TIFF file (scan) Classify document Convert to PDF ... Electronic signature with chambersign etc. My issue is the following : I was asked to develop a Java…
davidvera
  • 1,292
  • 2
  • 24
  • 55
0
votes
1 answer

validation script for multiple document classes

We are working on a validation script and know how to set things up. Currently we create validation scripts based on each customer. Of course we have to ensure that each batch/document uses the same fields but is there a way to decouple the script…
user9945420
0
votes
1 answer

How to open .xls file in kofax RPA 10.4?

I have extracted a .xls(OLD file format of Excel) file form SAP application and trying to open .xls(not .xlsx) file in Kofax RPA 10.4. But it give's me an error. I have added a step and select Action as "load file". Please see screenshot for batter…
Anjan Biswas
  • 701
  • 1
  • 10
  • 23
0
votes
1 answer

How to add wait within workflow of Kofax RPA Desktop Automation?

Sometimes Kofax RPA Design Studio can't fill up data correctly on SAP application. Like I have Input from excel "abcd". Robot can put "abc". Here "d" is missing. Most of the time it occur for last character. I think wait step can solve this problem.…
Anjan Biswas
  • 701
  • 1
  • 10
  • 23
0
votes
0 answers

How to fix blank data problem using kofax rpa DA or loop over browser content using DA?

I need to loop over on DHL courier service add multiple package section. There are multiple row of input from Excel for add packaging. I use Chrome browser and add the required data using Kofax RPA Desktop automation from that Excel file. I loop…
Anjan Biswas
  • 701
  • 1
  • 10
  • 23
0
votes
1 answer

How to solve error: "Flash plugin is not installed." in Kofax Kapow RPA 10.4.0.1?

After loaded a web URL in Kofax Kapow RPA 10.4.0.1, I am getting this error("Flash plugin is not installed.") How to solve this error please help me. Screenshot
Anjan Biswas
  • 701
  • 1
  • 10
  • 23
0
votes
1 answer

How to email exception logs at the end of robot run

Email logs only if there was an exception at any point in the run. I only want this for a specific robot, not all robots under management console. I know there is an option under management console, but that emails for every robot and every log.I…
Ashar
  • 5
  • 2
0
votes
1 answer

Rename PDF file

I would like to create a custom module that renames the generated PDF files by taking a generated filename string containg some field values from index fields, batch fields etc. So when it comes to batch processing i could go for this…
user9945420
0
votes
1 answer

Kofax KScanLib Reference Guide

I'm trying to find a developers reference/api reference/sample app or anything along the lines that would help with the Kofax Scan Lib. I've been trying to get hold of Kofax on behalf of a client to resolve a issue to no avail. Google doesn't seem…
0
votes
1 answer

Custom Module is being used by batch classes and cannot be removed

I would like to remove my custom module from the Kofax administration module but I can't because I get the following error Using the module multiple times increases the amount of batch classes listed there. But there is only one batch class so this…
user9945420
0
votes
1 answer

detect if Kofax launched custom module or User

When the custom module gets launched I can use if (Environment.UserInteractive) { // Run as WinForms app } else { // Run as service } to switch between a background service and a WinForms app. But I can also run the .exe file without…
Question3r
  • 2,166
  • 19
  • 100
  • 200
0
votes
1 answer

Run Custom Module as Service instead of launching a WinForms application

I created a custom module for Kofax. This module is a WinForms application with a runtime Form and a setup form (administration module). For the runtime application I use this code Program.cs - launch the runtime form internal static class…
Question3r
  • 2,166
  • 19
  • 100
  • 200
0
votes
1 answer

access indexfields, batchfields and batch variables in custom module

In my setup form I configure some settings for my custom module. The settings are stored in the custom storage of the batch class. Given the variable IBatchClass batchClass I can access the data by executing string data =…
user9945420
0
votes
1 answer

create setup form for custom module

I have a custom module getting executed right after the PDFGenerator finished. I followed this guide on how to create a custom module https://stackoverflow.com/a/55799101/9945420 When processing a batch document I want to manipulate the generated…
user9945420