Skip to Content (Press Enter)
Training
Training
Online Training
Developer Schools
Boot Camps
Certifications
Tech Talks
Documentation
Documentation
Overview
ODC
O11
Forums
Forge
Get Involved
Get Involved
Home
Jobs
Ideas
Members
Mentorship
User Groups
Platform
Platform
ODC
O11
Platforms
OutSystems.com
Personal Edition
Community
Resources
Support
Search in OutSystems
Log in
Get Started
Community
/
Ideas
Ideas
Show advanced filters
Status
(All Statuses)
New
On our radar
Working on it
Not right now
Implemented
Out of scope
Category
(All Categories)
1CP
Aggregates & Queries
AI/ML
App Feedback
Architecture & Governance
Backend
Builtin & User functions
Cloud
Collaboration
Community
Components
COVID-19
Data & Integrations
Database
Debugger
Documentation
End-user Management
Forge
Forums
Frontend (App Interfaces)
Ideas
Install Processes
Jobs
Licensing
Lifetime
Mobile
Other
OutSystems Developer Cloud
OutSystems UI
References
Service Center
Service Studio
Training
10910
ideas
Trending
Latest
Most liked
Add Comment Field to OML Upload
Created on 12 Jun
Nihaal
1
Overview OutSystems' 1-Click Publish with comment is a great addition that helps development teams maintain traceability — especially during hotfixes or production changes were knowing why a module was published is just as important as what changed. However, there's a gap in the workflow when publishing through OML upload and Service Center, which undermines this traceability. The Problem In regulated or collaborative environments, teams often follow a change management process where a developer must: Upload the OML file in advance Wait for approval/permission before going live Then publish the module once permission is granted Currently, when uploading an OML via Service Studio, there is no option to attach a comment. This means: If a developer uploads and publishes directly through Service Center (bypassing Service Studio), no publish comment is recorded The permission details, change reason, or hotfix context are permanently lost from the audit trail Teams lose the very traceability that the 1-Click Publish comment feature was designed to provide The only workaround today is: upload the OML, wait for permission, re-open the uploaded module in Service Studio, and then publish with a comment The Proposal Add a Comment Field to the OML Upload Screen: When uploading an OML file via Service Studio, provide an optional comment/reason field. This comment should be associated with the module version and recorded in the publish history if the module is subsequently published. Why This Matters Audit & Compliance: Many enterprises and regulated industries require documented reasons for every production change. A missing comment on a PROD publish is a compliance gap. Team Collaboration: Other developers monitoring deployments via Service Center have no context for why a module was published — especially critical during incidents or hotfixes. Consistency: The comment feature exists in one publish path but not others, creating an inconsistent and incomplete audit trail.
73
Views
0
Comments
New
Service Studio
Performance impact with NLS_SORT= binary
Created on 10 Dec 2017
Vijay Malviya
42
Setting the Oracle Parameters for case insensitive searchingWe need to set NLS_COMP=LINGUISTIC and NLS_SORT=BINARY_CI in order to use 10gR2 case insensitivity. Since these are session modifiable, it is not as simple as setting them in the initialization parameters.We can set them in the initialization parameters but they then only affect the server and not the client side. The following PL/SQL was used for a search screen:execute immediate 'alter session set NLS_COMP=LINGUISTIC';execute immediate 'alter session set NLS_SORT=BINARY_CI';
1254
Views
1
Comments
On our Radar
Database
setCurrentLocal()
Created on 21 Jul 2023
Yuri Fontes
15
"setCurrentLocal" is an action that allows us to choose the language of the application. For example, if I want the application's local language to be Portuguese, I would put "pt-PT" in the input of this action. Once we choose the language, it would be interesting if the built-in functions of OutSystems returned the output in the chosen local language, in this case, Portuguese. For example, using the formatDateTime(date, "ddMMMMyyyy") function would return "01Julho2023" instead of "01July2023" if the application's local language is set to Portuguese. This way, we wouldn't have to translate the function's output.
280
Views
3
Comments
New
Builtin & User functions
Warning about possible vulnerable components based on CVE (Common Vulnerabilities and Exposures)
Created on 30 Dec 2023
Lucas Soares
13
Based on the public CVE database, OutSystems Estudio could notify you when a component, library or other external item has a public CVE (Common Vulnerabilities and Exposures). Example: I found a javascript library that allows you to upload and manipulate images, and I implemented it in my OutSystems application. But I didn't know that this library in the version I implemented was vulnerable, publicly known. So, just as the studio today shows some warnings during development, it would be interesting now that it uses AI, for the platform to somehow visually show that the version of the library I implemented has a CVE (Common Vulnerabilities and Exposures). This would increase the level of security and help developers or projects that do not have a security team to validate or do pentesting. Imagine, a warning appears in the studio: Component XYZ has a CVE registered in this version. :)
417
Views
3
Comments
New
Architecture & Governance
Service Studio - Play sound on done or erro during run or publish
Created on 14 Nov 2011
Ricardo dos Santos
58
Web developing means having to working in many aplications including many browsers that makes us lose focus on service studio Playing sound on done or erro during run or publish could help keeping notion on the state of the application while on other windows
1413
Views
24
Comments
On our Radar
Service Studio
Certifications Diploma | New badges
Created on 17 Aug 2020
Miguel Verdasca
28
Hi guys,A question that everyone has been asking after changing the certifications, and with this I think that was pleasing to many ... is why the specialization in Mobile does not appear in the Diploma that we download. I think it would be an asset to have this information also present in our certifications (and specializations) diploma from OutSystems.Cheers,Miguel
887
Views
5
Comments
New
Training
ODC SAP Connector with GROUP LOGON
Created on 16 Jan
Rui Félix
3
OS11 can connect with SAP using SAP Group Logon, but that is not available on ODC. On ODC only SAP Direct Connection is available. It's important because many clients only have SAP Group Logon active in Production environments for load balancing.
58
Views
1
Comments
On our Radar
Data & Integrations
[Lifetime] Retry deployment on failure
Created on 29 Mar 2018
Caio Santana Magalhães
37
Please add a magical button to retry a failed deployment.It would be a time-saver to not have to create a new staging, validate the plan again and re-deploy.
2044
Views
9
Comments
Implemented
Lifetime
Image preview using javascript
Created on 08 Dec 2017
Vijay Malviya
42
SyntaxEditor Code Snippet$('input[id*=Image1]').change(function(){ readURL(this); }); }); function readURL(input) { debugger; var validExtensions = ['jpg','png','jpeg']; //array of valid extensions var fileName = input.files[0].name; var fileNameExt = fileName.substr(fileName.lastIndexOf('.') + 1); if ($.inArray(fileNameExt, validExtensions) == -1) { input.type = '' input.type = 'file' alert("Only these file types are accepted : "+validExtensions.join(', ')); } else { if (input.files && input.files[0]) { var filerdr = new FileReader(); filerdr.onload = function (e) { $('.ImgReviewClass').attr('src', e.target.result); } filerdr.readAsDataURL(input.files[0]); } } }
930
Views
0
Comments
On our Radar
Frontend (App Interfaces)
Honour your Speakers
Created on 13 Dec 2024
Inge van Gemert
8
I have been going through the conference videos at https://learn.outsystems.com/training/decision/tech-talks It would be nice to have the speaker name and company in the caption to give them the credit they deserve. Then also make it searchable so you can follow your favourite speaker. Thank you.
130
Views
3
Comments
New
Training
691 to 700 of 10910 records
previous
...
69
70
...
next
Top Idea Creators
High Five to the top 5 idea creators in the last 30 days
dex2dot0
2 ideas
2
Jeremiah Cruz
2 ideas
3
Abed Al Banna
1 ideas
4
Alessandro Olavo Gama
1 ideas
5
Franciel Oliveira
1 ideas
Top Brainstormers
High Five to the top 5 brainstormers in the last 30 days
Dorine Boudry
6 comments
2
Daniël Kuhlmann
2 comments
3
dex2dot0
2 comments
4
Christopher Bautista
1 comments
5
Damian Fonville
1 comments
Code of Conduct
The guidelines we live by that make
this Community amazing!
Code of Conduct
Stay Up-To-Date
Keep on top of what's happening in the Developer Community.
Forum, Forge, Training, Documentation, and more!
Developer Newsletter
Loading...