1,343 questions
Advice
1
vote
2
replies
98
views
Progress ABL - Creating a multi-line text box with an Editor widget
I have a collection of long comments fields that I would like to display in consecutive editor widgets, with controlled space between them, and no need for scrollbars. In other words, I need to be ...
1
vote
3
answers
353
views
Secure Socket Layer (SSL) failure - error code 0: Unknown SSL error (9318) on HTTP GET Request
This is my first time using any kind of HTTP request in OpenEdge ABL, so I am pretty confused with the error message.
I have the following code:
using OpenEdge.Net.HTTP.*.
using OpenEdge.Net.URI.
...
0
votes
1
answer
81
views
OpenEdge Replication - Time to Replicate? [closed]
For the last couple days, I've been monting a structure to apply replication across 3 databases (Will be more than 20 in the next couple months).
The replication process is OK, both databases (Source ...
0
votes
1
answer
95
views
Freeform query - How to get clicked column index?
I'm currently creating a report program with a freeform query.
Some users requested about the possibility of sorting by any of these columns. This part itself is done, and it´s working.
My question is:...
0
votes
1
answer
36
views
Progress compile option 'requireReturnValues' fails with error throwing
I have set the compile option requireReturnValues="Error".
I tried to compile the following example code but it doesn't pass the option:
METHOD PUBLIC LOGICAL checkValue(i_cValue AS CHAR):
...
0
votes
1
answer
91
views
PCTCompile and strict compile options
Im trying to make PCTCompile fail compilation with the following settings:
requireFullNames="true"
requireFieldQualifiers="true"
requireReturnValues="true"
However, ...
0
votes
0
answers
73
views
adm2 dynfilter.w will not allow me to filter back to all records on a logical if a true/false value was filtered
I am not an expert on smart objects and yet I have inherited a few windows that contain such and at the moment I have been asked to add a filter option on a logical field. Which I was able to achieve....
1
vote
1
answer
117
views
Get All TempTables in Class
I'm using Progress 12.8 to create a custom class that will work as an object to communicate our system into some APIs for another web system.
The program itself is already working, but now I'm doing ...
0
votes
1
answer
222
views
Basic REST GET in Progress OpenEdge
I am suffering to create a single REST GET API in the Progress OpenEdge. Someone have a simple example?
DEFINE VARIABLE cResponse AS LONGCHAR NO-UNDO.
DEFINE VARIABLE cJson AS LONGCHAR NO-UNDO.
DEFINE ...
0
votes
1
answer
260
views
How to monitor memory usage? - Progress 4GL
I have defined 5 temp-tables with multiple indexes (Necessary). Each time I execute a program; a proper cleanup is happening before and after the completion of the program. On running the program, I ...
0
votes
2
answers
216
views
Appserver for 32bit in OpenEdge 12.8
I have a 32-bit GUI on-premises application currently running on OpenEdge 11.7 that uses AppServer. I am planning to upgrade to OpenEdge 12.8 (32-bit) but have noticed that PASOE is only available in ...
0
votes
1
answer
221
views
Migrating from Progress v11.xx to v12.xx and still supporting 32 ocx's
We are trying to migrate off of Progress V11 to V12 before the spring when v11 will no longer be supported. Currently our application relies on several 32bit ocx's, and we have been told by Progress ...
0
votes
1
answer
148
views
OE11.7 to OE12.8 - Field name was not found on table
After migrating from Progress 11.7 to Progress 12.8, I started having some problems while opening some .W files on App Builder.
This only occurs to a few programs, in multiple databases, with ...
-1
votes
4
answers
180
views
File not getting delete through code flow in Progress4GL
If i run OS-DELETE using the same procedure editor it deletes but if i run through application it copies the file but the delete is not happening.
Code below:
WHEN "Processed" THEN
DO:
...
1
vote
1
answer
779
views
Progress 4GL: Problems with SSL when performing HTTP request
I am trying to use OpenEdge.Net.pl for making a call over https, and I am getting the next error message:
Secure Socket Layer (SSL) failure. Error code 17424: SSL routines (9318)
I've been reading ...