Tagged Questions
The Progress 4GL is a multi-platform interpreted language typically used to build business applications. It was initially a procedural language, but has had object-oriented extensions added to the language. It offers tight data binding to the OpenEdge database, and also runs on the OpenEdge AppServer. The Progress 4GL is now known as the ABL, and is produced by the OpenEdge division of Progress Software Corporation.
4
votes
1answer
465 views
Progress ODBC Problem with Sql-width (DBTool?)
I have been given the task of getting some data out of a third party progress database. The problem is that, some tables are reporting an error "Column <column> in table <table> has value ...
3
votes
3answers
493 views
Implementing assertions in Progress 4GL
What is the best way of implementing assertions using Progress 4GL or WebSpeed?
3
votes
2answers
970 views
ROWID and RECID
what is ROWID and RECID actually in progress.Can we use the RECID instead of ROWID.what is the diffrrence between them??
2
votes
1answer
147 views
Return a value to Progress 4GL from C SL function
I have been working with some interaction between Progress 4GL programs and C functions invoked from a Shared Library.
I need to write a new fuction and add it to the SL, so my question is:
Can ...
2
votes
1answer
171 views
Using sax writer to create line feeds in a xml 2003 workbook
Hi stackoverflow comunity,
using a sax writer with the progress-4gl language i succeeded in creating an a xml 2003 workbook.
My problem began when i wanted to add a linefeed to a cell.
The normal ...
2
votes
1answer
249 views
Change the default lock in Progress instead of Share-lock
How can we change the default lock in Progress instead of Share-lock?
2
votes
2answers
1k views
How can I calculate the total no of records using Progress 4GL
How can I calculate the total no. of records in a table? I want to show all table names in a DB along with the no. of records in each table
1
vote
1answer
94 views
How to document a complex Progress 9.1D DB Schema?
The project I am working has as its main "component" a fairly old Progress 9.1D DB which has grown piecemeal for 15 years or so.
We never used the SQL "interface", so the tables have no explicit ...
1
vote
1answer
91 views
Variable variables in Progress 4GL
Is there a way to dynamically reference a variable? Apparently value() does not work on a variable reference.
def var export-columns as char extent.
def var i as int.
def var my-columns as char ...
1
vote
3answers
268 views
Getting first 100 records from the table in Progress OpenEdge database (e.g. SELECT TOP 100..)
How can I get a limited number of records from the table in Progress OpenEdge database?
Something like in SQL:
SELECT TOP 100 * FROM MyTable
The only ugly solution I can find is looping through ...
1
vote
1answer
278 views
Creating a Buffer with the Same Name as the Database Table
I've run across this code in a number of places:
DEFINE BUFFER Customer FOR Customer.
I have two questions:
What is the purpose of this? Why is it beneficial to create a buffer with the same ...
1
vote
3answers
295 views
Progress 4GL code analysis tool
I know the community around Progress 4GL is highly lacking in activity, but the people on SO are a surprisingly resourceful bunch of guys!
I'm looking for a tool that is capable of creating a ...
1
vote
2answers
86 views
Progress 4L SET-SIZE statement and C - malloc
We have a Shared Library that allocates ( using malloc ) memory for a char array which is returned via a MEMPTR to a Progress procedure.
In an OpenEdge manual I read that to free a Progress MEMPTR ...
1
vote
3answers
110 views
how can we sniff traffic between two ports of same machine?
I am testing a thick client which is connected to a database, need to sniff traffic b/w tcp port on same machine
1
vote
1answer
692 views
Transaction & Locks Problem
with in do transaction, i defined a label and in this label i am accessing a table with exclusive-lock.and at the end of label i have done all the changes in that table. bt now i am with in ...
1
vote
1answer
272 views
converting progress 4GL procedures to oracle stored procedures
I need to convert procedures written in Progress 4GL to Oracle stored procedures. Is there any tool other than SQLWays using which I can achieve this?
1
vote
4answers
1k views
Progress 4GL and .Net
I'm trying to get data out of a Progress 4GL database, into SQL Server.
Ideally, I'd like to do this directly and within .NET, rather than through an ODBC driver since the ODBC driver gateway in ...
1
vote
2answers
2k views
How do I do HTTP GET and POST in Progress/OpenEdge ABL?
The Progress docs spill plenty of ink on SOAP, but I'm having trouble finding the example for a simple HTTP GET/POST with Progress ABL.
How do I GET and POST strings to/from a URL?
Can the URL be ...
1
vote
1answer
398 views
String comparison oddities in 4GL
OK, so I've learned the hard way that string comparison works ... differently in Progress 4GL. For example, "x " and "x" seem to be the same thing, and "ß" is equal to "ss" - but "ö" is not equal to ...
1
vote
2answers
221 views
How do I fetch files with HTTP using Progress ABL?
Is there an easy way to fetch a file using an HTTP URL with Progress ABL 10.1B without external dependencies? If so, what is the most elegant way of doing so?
I tried the documentation, but didn't ...
1
vote
4answers
716 views
Good literature on Progress 4GL
I am in search for good literature to learn Progress 4GL. This is a workspace-related project, and funding for training is not available. I've tried the documentation, but it is inaccurate and pretty ...
1
vote
3answers
387 views
How To Send a PDF File to a Progress AppServer?
I have a PDF file at client and i want to send this PDF file on AppServer. How can i send this pdf file at AppServer?
1
vote
4answers
2k views
How to get the ROWID from a Progress database
I have a Progress database that I'm performing an ETL from. One of the tables that I'm reading from does not have a unique key on it, so I need to access the ROWID to be able to uniquely identify the ...
0
votes
1answer
98 views
Is there a Microsoft SQL Server Profiler equivalent for Progress OpenEdge ABL?
I am looking for an equivalent of Microsoft SQL Profiler for a Progress 4GL database.
0
votes
1answer
173 views
Progress ODBC INSERT INTO fails after upgrade from 9.1E To 10.2B
I have some sql scripts to move data from our SQL Server to our Progress box. But it stopped working.
This worked in 9.1E but fails after upgrade to 10.2B
INSERT INTO OPENQUERY(linkedserver, 'select ...
0
votes
1answer
133 views
Progress dbtool errors
I am trying to run the Progress dbtool on our database but it is not working. I get to the proenv prompt as suggested by the documentation that I have. When I execute the dbtool against our database ...
0
votes
1answer
66 views
Displaying progress records by sorting using any one attribute
Displaying progress records by sorting using any one attribute.
I am new to progress so I want to know that how records in table can be displayed according to sorting on one attribute.
0
votes
0answers
78 views
progress retrieve pdf file through web request
I'm writing a web application to retrieve file through progress appserver. Instead of getting the file from a web-server, I would like store it in a safer place. How can I do it?
0
votes
1answer
68 views
Memory Leak in Progress 4GL Proxy Assemblies
Progress Version: 10.0B05.32
A few years ago, we used the Progress Proxy Generator to generate .NET assemblies that would allow us to connect C# code to our appserver processes. When developing this ...
0
votes
2answers
243 views
Progress ABL procedure to SQL Insert
We have a software solution that involves syncing some data between a Progress database and SQL server. Unfortunately, we do not have any Progress gurus in house, so I'm working kinda blind here and ...
0
votes
1answer
189 views
how to list all databases in progress-4gl 9.1 D?
i'm trying to get all databases like in the DataDictionary, but in a programmatic way! Is that possible?
0
votes
2answers
469 views
How do I convert strings to title case in OpenEdge ABL / Progress 4GL?
How do I convert a string to title case in OpenEdge ABL (aka Progress 4GL)?
I know I can get upper case with CAPS(), and lower case with LC(), but I can't find the title case (sometimes called proper ...
0
votes
2answers
687 views
Crystal Reports: How to pass a parameter from a subreport to the parent report?
I have a number of subreports in which I calculate totals. In the main report I need the sum of those totals.
I don't know how to get acces to the totals in the subreports.
0
votes
2answers
625 views
Problem running legacy program in Windows 7 using DDE
My admin folks have encountered a big problem, and I'm relaying their plight to SO:
We have a legacy database application (written in Progress 4GL/OpenEdge) that invokes WordPerfect X3 in order to ...
0
votes
1answer
125 views
Call Progress Procedure in kSoap
I'm completely new with Progress. I'm trying to access my Progress Procedure (which works when I export it as an XML-page) in my Android app. I'm using kSoap to do the trick, because I've had some ...
0
votes
1answer
171 views
Final/const keyword equivilant in Progress-4GL
If I had a class with immutable members in Java, I would do this:
class MyClass {
private final String name;
private final int id;
myClass(String name, int id) {
this.name = name;
...
0
votes
2answers
219 views
Progress 4GL that calls a C function
I have been working in some C language function that is going to be called from a Progress 4GL application and I found myself with the following doubts:
The C function uses malloc to dynamically ...
0
votes
1answer
260 views
Office 2007 upgrade breaks 4GL Progress code
I'm supporting some legacy 4GL Progress code. One of our servers that runs 4GL was upgraded to Office 2007 without my knowledge (nice, right?). Anyway, the upgrade broke a segment of code that's ...
0
votes
1answer
157 views
folks, can anybody help me to convert Progress procedure to SQL server stored procedure [closed]
If yes, I can send the progress sp snippet , which needs to be converted.
0
votes
2answers
158 views
Publish-subscribe over clients in Progress 4GL
Is is there some way to put a publish between clients in the network in Progress 4GL.
An (ugly) way would be to "publish" (write) to the db and let all clients poll the db - but of course I would ...
0
votes
2answers
208 views
How can I display and manipulate record arrays?
Looking for the following forms functionality with INFORMIX 4GL?, ISQL with ESQL/C?, PROGRESS-4GL?, ORACLE? etc?
I have a CRUD form which displays a customer[master] with all of their asociated ...
0
votes
1answer
169 views
How are record arrays displayed and manipulated in Progress 4GL/non-GUI screens?
I currently have an INFORMIX-SQL app I wish to re-write in OpenEdge/4GL(non-GUI) client with the Personal engine and would like to know the methods and details for dealing with record arrays where I ...
0
votes
2answers
363 views
ISQL app migration option, Progress - “OpenEdge” Personal RDBMS with 4GL(ABL) development system?
Back in 1985, when I was a Product Planner for AT&T-IS Labs (Unix Product Management), one of my primary duties was to evaluate emerging 4GL/RDBMS products, submit product plans and recommend ...
0
votes
1answer
89 views
Transaction & Locks Problem
with in do transaction, i defined a label and in this label i am accessing a table with exclusive-lock.and at the end of label i have done all the changes in that table. bt now i am with in ...
0
votes
3answers
630 views
Delphi connection to OpenEdge Progress-4GL Database
Folks:
Has anyone had success connecting to a Progress-4GL database with Delphi? I've been unable to establish any connection with the ODBC driver provided by the vendor (Progress OpenEdge ...
0
votes
3answers
853 views
Connecting to Progress database from Mac OSX
Does anyone know how to connect to a Progress 9.1E database from a Mac (or even from Linux)?
I can connect successfully from Windows but the JDBC driver requires that the Progress install directory ...
0
votes
1answer
481 views
Progress ABL: How to have windows open in same position on the screen as they opened last time
We currently use this logic to center every new window:
ASSIGN {&WINDOW-NAME}:X =
(SESSION:WIDTH-PIXELS - {&WINDOW-NAME}:WIDTH-PIXELS) / 2
{&WINDOW-NAME}:Y =
...
0
votes
1answer
128 views
Effects of modiflying Progress database field validation
I'm working on a Progress Version 9 OpenEdge system and would like to change the database field validation.
Can you tell me if this will have any knock on effects? I've been warned not to modify the ...
0
votes
4answers
2k views
Is there any Progress 4GL statement used for editing an ASCII files?
Is there any 4GL statement used for editing an ASCII files from the disk, if so how?
0
votes
3answers
752 views
How to list text files in a directory in Progress 4GL?
I have a folder in c drive,whicn contain 1000 txt file,i want
to get the list of all these txt file. How can i get this list?