Questions tagged [progress-4gl]

The Progress 4GL is a multi-platform interpreted language typically used to build business applications and is now known as ABL.

With a first official commercial release in 1984, Progress 4GL was initially a procedural language and has since had object-oriented extensions added to the language starting with the OpenEdge 10.1 version. The language offers tight data binding to the Progress OpenEdge database and also runs on the OpenEdge AppServer.

The Progress 4GL is now known as the OpenEdge ABL (Advanced Business Language) and is produced by the OpenEdge division of Progress Software Corporation.

Hello World

DEFINE VARIABLE msg AS CHARACTER   NO-UNDO.
msg = "Hello World!".
MESSAGE msg VIEW-AS ALERT-BOX INFORMATION.

Useful links
Progress Software

Progress Official Developer Network

The OpenEdge Hive

Progress KnowledgeBase

Progress E-mailing list (PEG)

ProgressTalk Forums

Wikipedia
http://en.wikipedia.org/wiki/Progress_Software http://en.wikipedia.org/wiki/OpenEdge_Advanced_Business_Language

1293 questions
-4
votes
1 answer

Hourly production data (Progress 4gl)

I am creating a dashboard to show the hourly production data. Need to use the logic to show last 12 hours data. Example: Column 1: >= 01:00:00 and < 02:00:00 Column 2: >= 02:00:00 and < 03:00:00 Below is the logic I use: DEFINE TEMP-TABLE tt_data…
-4
votes
1 answer

Best testing tool to be used with OpenEdge 4GL Client

Currently, I am working with AutoIT tool for automating the test cases and my client is OpenEdge 4GL (Progress). I have few problems in finding the elements on the screen like Instance changing frequently. Can someone suggest me any other Testing…
-5
votes
1 answer

Parse into Website

I have a file (text or csv) that I generate that has a list of part numbers. I need to take this list, and download some spec sheets for these parts automatically and then print. Once on the website, I need to input the part number, then print the…
Jim S.
  • 203
  • 8
  • 24
1 2 3
86
87