Tagged Questions

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 ...
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
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 ...
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
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
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
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
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
973 views

Problem connecting Reporting Services 2005 to Progress OpenEdge 10.2A Driver

Background: Progress based ERP system called QAD 2008.1 (formerly MFGPRO. SQL Server 2005 Enterprise SP2. Reporting Services 2005 SP2. Progress OpenEdge 10.2A Driver. ODBC System DSN created using the ...