Quantcast
Channel: OutSystems Community
Viewing all 1476385 articles
Browse latest View live

[Forums] error in running configurationtool.sh

$
0
0

How have you configured java_home?

What do you get when you run echo $JAVA_HOME? 


[Forums] Is it the outsystems bug ? "B List" auto-created after converting json to a structure

$
0
0

Hi Buddy,

Note that once you've consumed everything, you can manually correct whatever the Platform decided wrongly. It's a bit of a pain, but it's doable.

[Forums] Transpose rows into column to write into excel sheet

$
0
0

Hi Monika,

Can you explain exactly where you are stuck in this? And perhaps a bit of background, like how is your "sample table" stored in the database?

[Forums] Mobile - Custom Menu Buttons

$
0
0

Hi OZOZ,

I'm not too versed in Mobile development, so I can't directly help you. Is this happening in the browser too? If so, did you check the CSS in your devtools, to see what's going on?

[Forge] Agencia de Viajes Core

[Forge] Agencia de Viajes Empleados

[Forums] Get a specific timer from the current tenant.

$
0
0

Hi,


I want to get/check if a multi-tenant timer is currently running from the current tenant.


The reason for this is I have a big process that will take 10-30mins depending on the number of items it needs to process, using Process BPM is quite good but sometimes the Process was getting aborted. So, the best way to handle this case is a timer and adjust the default timeout (Let me know if I'm wrong.).



Now, How I can check if the timer is currently running to prevent another invocation of the timer from the web app?


Thanks,

Jovvy

[Forums] How to handle 11 numeric characters with two decimal places.

$
0
0

Hi,

Good day,

Please help us on our problem handling 11 numeric characters with two decimal places. 

Our objective is when a user input numberic value with two decimal places. The systems detect that is already 11 characters and user cannot anymore input a value. Thank you


[Forums] Get a specific timer from the current tenant.

$
0
0

If you invoke the timer while it is currently running, it will simply run again after the current run completes. If you invoke it more than one time while it is running, it will still only run once. The best pattern for this is to have the web app write rows into an entity that represents a job queue, with a status on them and the needed data for the job. Have the timer check for any un-run jobs when it starts, loop over them, and do the needed actions for each one, marking them as complete (and probably running CommitTransaction at the end of each loop, to make sure the job only gets run once)... have the per-job work performed inside a separate action that catches errors and marks the job as failed, so this way an exception doesn't cause the whole timer to fail, just the job that failed to get marked as failed and let the rest process. At the end of the timer, you can re-launch it to make sure it doesn't let things sit in the job queue too long.


J.Ja

[Forums] Get a specific timer from the current tenant.

$
0
0

But, if you REALLY want to check it, the System entities around "Cyclic_Job", "Cyclic_Job_Shared", and the entities they tie to, have the timer information.

J.Ja

[Forums] Get a specific timer from the current tenant.

$
0
0

Yeah, What I'm actually doing is a create a multi-tenant table that will store the status of the timer and it has 3 status.

Completed
Failed

Running

So, if the user tried to trigger the timer from the web UI and then there is a running timer for that tenant, it will prevent it.

[Forums] how to update device id with same user id use javascript

$
0
0

i want to update device id with same userid, and i using this script but don't effect in mobile. so, is there any another script for mobile ?

[Forums] Get a specific timer from the current tenant.

$
0
0

Gotcha. I would definitely use a separate entity for this then (especially so you can view failures).

J.Ja

[Forums] error in running configurationtool.sh

$
0
0

João Melo wrote:

How have you configured java_home?

What do you get when you run echo $JAVA_HOME? 



[Forums] Expecting a IRecord event argument, none was provided

$
0
0

leonardo.fernandes wrote:

Hi Christopher.

The way you are using GetArgumentRecord and ProvideArgumentRecord is almost correct, but they should only be used with the Event System actions (Invoke and Trigger). Using them with the Notify system action does not work.

Another thing you would need to change is that you're passing a record list, and not a record: Var1 data type is Wine, WinePicture Record List.


If you need to use the system action Notify, then I suggest you to convert your data structure to JSON, and pass the JSON on the Message parameter of the Notify. Then use the NotifyGetMessage system action to retrieve the JSON and convert it back to your data structure.


Hi Leo,


Apologies for the very late response.

Will apply changes.


Thank you very much for the help.


Kind regards,

Chris


[Forums] How to handle 11 numeric characters with two decimal places.

[Forums] How to Inactive Group in Outsystem

$
0
0

I want to inactive group so all users belongs to that group is inactive ,all permission of that group is revoke in that case,

when i  want to active that group again so all users belongs to that group its all permission is resume again.


[Forums] search filter Assignment

$
0
0

Hi, guys!

I try to make search function filter in assignment test.

filter for booking status already work.

but filter for by first and last name still isn't work.

I using this code for filter by first and last name guest. anyone have better suggestion?

SyntaxEditor Code Snippet

Booking.GuestFirstName like "%" + GuestSearch + "%" and Booking.GuestLastName like "%" + GuestSearch + "%"

Thanks for response before.

[Forums] SQL Injection Warning in SilkUI sample, please advise how I can solve this...

$
0
0

Hi, I'm using one of silkUI templates and I have encountered the following warning that I am unable to solve. Can somebody please point me to the right direction please?

----------

SQL Injection
Ensure the expand inline argument is protected by using EncodeSql(), or VerifySqlLiteral() from the Sanitization extension, to avoid security flaws.

----------


When I double clicked to see what the warning is referring to, it refers me to something named:

SyntaxEditor Code Snippet



ColaboratorsToDelete

and the statement is:


DELETE FROM {ProjectColaborator}
WHERE {ProjectColaborator}.[ColaboratorId] IN (@ColaboratorsList)
AND {ProjectColaborator}.[ProjectId] = VerifySqlLiteral(@ProjectId)

[Forums] Can I use this for mobile app?

$
0
0

Suraj Borade wrote:

Hi Raul,

Can I use this component for mobile app?

Thanks and Regards,

Suraj Borade


Hi Suraj,

At this time, all the authorization flow is accomplished in the WEB blocks that this component provides, so the quick answer would be that you can't use it in a mobile app. At the moment, I have no immediate plans to explore a mobile version of this.

Best Regards,
Raul

Viewing all 1476385 articles
Browse latest View live