WELCOME TO THE COMMUNITY
find what you are looking for or ask a new question
Home > Forum > Latest posts

latest posts

MVP

Hi Paweł,

you could crate a form rule in JavaScript mode which clicks on the button.

I used the below logic to refresh all data tables / rows after closing my modal dialog.
In 2022 you could use the commented lines without the 122/99 numbers.

// Will trigger reload of any data tables.
// switched from element.click() to setTimeout(() => { element.click() }, index * 122) and used a "random" interval
// executing the refresh button simultaneously breaks the refresh as of BPS 2023 R2
// Needs to be revisited at later version.
// $(".reload-button-container").find("button").each((index, element) => { element.click() });
// $(".reload-button-container").find("span").each((index, element) => { element.click() });
$(".reload-button-container").find("button").each((index, element) => { setTimeout(() => { element.click() }, index * 122) });
$(".reload-button-container").find("span").each((index, element) => { setTimeout(() => { element.click() }, index * 99) });

Best regards,
Daniel

I try to find option to trigger refresh button in "data table" .
OK I can click arrow .. but I would like to refresh to have no data ...

So I have form rule when some field value is changed (deleted) then is clearing fields but not reloading whole form ...
so because data is not saved or the full form is not reloaded ...
the data table stays with "old data" - i can click refresh and then will be empty or pick other value then will be reloaded full form (pass by path) .

but there is any opinion to "press button" in background ?

[webcon 2022.1.4.404.]

Dzień dobry,

sposób zwolnienia licencji zależy od tego jakie licencje mamy na środowisku (wieczyste vs subskrypcje).
W przypadku subskrypcji zarządzanie odbywa się zgodnie ze wskazaniem od Dariusza w wiadomości wyzej. -tutaj można swobodnie przepinać licencje przez portal.

W przypadku gdy mamy do czynienia z licencjami wieczystymi sprawa jest nieco bardziej skomplikowana:
- opcja 1. wykonanie resetu licencji o których wspomina Karol - resetuje wszystkie użycia (w tym użytkowników CAL)
- opcja 2. kontakt na support.webcon.com - mamy administracyjne / interwencyjne możlwości zwolnienia licencji

W modelu licencji wieczystych nie ma możliwości jawnego przydzielenia licencji konkretnemu uzytkowikowi (działa tu zasada "kto pierwszy ten lepszy")

In reply to: Wojtek

Hi,

I came across issue with generating xlsx file from item list. I created xlsx template having a table named Tabela1 consisting of 5 columns and item list with exacly same column names. I actualy exported the item list to xlsx and converted it to a template. After setting up a mapping on the 'Generate excel file' action and running it I keep getting 'Invlid cell name' error. Full error log below. When I use cell adress in mapping (A2) there is no error but only last row of item list is exported which is not what I'm trying to achieve. Am I missing something?

Log
Error code: 100
Invalid cell name
at Aspose.Cells.CellsHelper.CellNameToIndex(String cellName, Int32& row, Int32& column)
at WebCon.WorkFlow.Base.Actions.GenerateExcelWorksheet.InsertValueFromTag(ITagParser tagParser, String tag, TupleEx`2 address, Workbook workbook, ExcelDataTimeHelper excelDataTimeHelper)
at WebCon.WorkFlow.Base.Actions.GenerateExcelWorksheet.FillExcelFileOrReturnError(XmlActionsConfig config, WorkFlowObject wfObject, ITagParser tagParser, Workbook workbook, ExcelDataTimeHelper excelDataTimeHelper)
at WebCon.WorkFlow.Base.Actions.GenerateExcelWorksheet.FireAction(WorkFlowObject wfObject, IWFAction wfAction, ITagParser tagParser, IAutomationDataHelper automationDataHelper, String& message, String& logMessage)
at WebCon.WorkFlow.Base.Automations.Engine.Evaluators.ActionEvaluator.FireAction(ActionBase actionObject, String& userLogMessage, String& adminLogMessage)
at WebCon.WorkFlow.Base.Automations.Engine.Evaluators.ActionEvaluator.Evaluate()

Hi, try this:
add the table in Excel and name the table. Then configure it correctly in WEBCON BPS. A screenshot is attached. The name of the attribute must be the same as in Excel.