Questions tagged [outsystems]

OutSystems is the company that develops the OutSystems Platform - a custom enterprise web and mobile app development solution.

OutSystems is the company that develops the OutSystems Platform - a low code platform to create custom enterprise web and mobile applications.

To get started with the OutSystems Platform:

  1. Review the OutSystems Platform home page.
  2. Experiment with demo apps.
  3. Start developing cloud apps for free.
  4. Follow the training videos.

Other links:

212 questions
1
vote
1 answer

Date Input field default value in Outsystems

I run into this problem where I would want the date field to display "YYYY-MM-DD" instead of the default 1900-01-01. I tried to to assign the date field variable, which is named ContractStart, with this value: If (ContractStart = NullDate(),…
mmahinay
  • 171
  • 5
  • 13
1
vote
3 answers

Issue understanding the Inner Join Or Left join

I am having an issue understanding the inner and left join I am having the below query in the outsystems SELECT {CLD}.[Id], {CLD}.[Name], {CLD}.[Comments] , {CLD}.[LastUpdateOn],min({Project}.[Number]) ,count({Project}.[Number]) FROM…
trx
  • 2,077
  • 9
  • 48
  • 97
1
vote
3 answers

Use Site Property in eSpace Javascript

I included Google Analytics (javascript) in my Outsystems website via de eSpace Javascript. Now I want to place the Analytics Key in my Site Properties so I can update it easily for every environment. How can I use a Site Property in my Javascript?
Jeroen
  • 307
  • 1
  • 6
  • 17
1
vote
2 answers

What's the best free resource to learn about Ms IIS?

I usually use IIS in conjunction with the OutSystems development platform, which does code-generation for web applications. As it does the compiling and deployment of the applications to IIS, I end up knowing very little on how it really works, and…
Gonçalo Veiga
  • 546
  • 1
  • 6
  • 14
1
vote
4 answers

OutSystems TimeZone Conversion

I need a hand here The default OutSystems timezone is UTC There's an Action called ConvertFromTimeZone(1,2,3) 1- You write the Date and Time, no problem here. 2 & 3 - You have to write the SourceTimeZone and the DestinationTimeZone, these must be…
1
vote
1 answer

Issue with the EnabledDays in the Calendar widget

I am using the Enabled days in the Calenadr widget , the enabled days are the days when the data load happens. Data Load dates are stored in the entity and whenever the dataload happended those dates needs to be enabled in calendar. I am using the…
trx
  • 2,077
  • 9
  • 48
  • 97
1
vote
1 answer

Using Dates - OutSystems

I am using these two local variables in Outsystems that returns the first day of current month and current year and the other one returns the last day of current month and current year. FirstDayMonth - …
Mara Pimentel
  • 317
  • 1
  • 8
  • 14
1
vote
2 answers

Validate mobile and phone number - outsystems

I have a mobile number field and I want to check if it has Any digit repeated 9 times, including zero and if Any phone number or mobile number only composed of two different digits. Is there any Regex or something to do this? In Portugal phone…
Mara Pimentel
  • 317
  • 1
  • 8
  • 14
1
vote
1 answer

Generate PDF file of page content in OutSystems

I am using OutSystems Platform, and I want to generate a PDF file of page content in OutSystems. I searched a lot on Google and got some extensions to generate PDF in OutSystems, but they are not working. Please help me how to do that.
user4728368
1
vote
2 answers

How to publish application in my environment that created in other environment

I want publish one application which is created in another environment. When I publish application it gives following error Foreign Module Error "Your OutSystems subscription only allows uploading modules developed in your environment, or downloaded…
Bankat
  • 65
  • 3
  • 12
1
vote
2 answers

How to assign structure to file content in download widget

I have created structure list of entity records using ListAppend. I have all the data in structure list i.e. around 11 records. At movement I am getting only [0]th record of structure list because of assigned File Content in the download widget…
Bankat
  • 65
  • 3
  • 12
1
vote
1 answer

Export data into text file in OutSystems

I am working with exporting data in OutSystems and would appreciate some help with it. Detailed description: I have data in an entity in my application. When the user is logged in (for example user is a borrower or co-borrower) , when the user…
Bankat
  • 65
  • 3
  • 12
1
vote
1 answer

Set the combo box special list value to other variable

How can I set the combo box special list value to other variable. For example for a combo box I have Value1 0 and Option1 Select. So on a refresh I have to set the Value 1 again to the combo box, sometimes it is having the old selected value. So on…
trx
  • 2,077
  • 9
  • 48
  • 97
1
vote
1 answer

Active directory user log in

I am working on a module which is using the Active Directory Integration. If the user logs in with the active directory credentials, the username field in table of the webpage is populeted with Domain\username (eg: ABC\username , where ABC is the…
trx
  • 2,077
  • 9
  • 48
  • 97
1
vote
2 answers

Select the maximum of field from different tables

I tried to run the query without selecting the max of LastUpdatedOn section. It works. But I am not sure how do I select the Maximum of LastUpdatedOn from the Document,Instruction,Question for the particular Project Id. SELECT…
trx
  • 2,077
  • 9
  • 48
  • 97