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

latest posts

Hi everyone,

I’m trying to display numeric values in WEBCON BPS Word printouts with thousand separators (for example, 1.000,00€ instead of 1000,00€).

Interestingly, in Item Lists (tables) the formatting is shown correctly with thousand separators.
However, in regular form fields (for example, floating-point numbers), the values are displayed without the separator.

Is there a way to configure this for standard form fields as well?

Any advice or best practices on how to achieve consistent number formatting across forms would be greatly appreciated.

Best regards,
Michael Fabrizius

Hi everyone,

I'm looking for an out-of-the-box solution or a workflow I can build that automatically sends users a weekly email summarizing all their pending tasks across various applications. Ideally, this would consolidate tasks from multiple applications and deliver a clear, actionable list.

If anyone has ideas, suggestions, or experience with similar setups, I'd really appreciate your input!

Thanks in advance!

You need to use wfelems.WFD_ID because WFD_ID alone isn’t recognized inside the subquery.
At that level, SQL doesn’t know which table the column belongs to.

By adding the alias wfelems (which i think refers to the V_WFElements view in the main query), SQL can correctly link both tables.
So the correct version is:

(
SELECT
dbo.ClearWFElemAdv(DET_Att3)
FROM WFElementDetails
WHERE DET_WFCONID = 9579
AND DET_WFDID = wfelems.WFD_ID
AND dbo.ClearWFElemID(DET_Att1) = 1
)