Top "Progress-4gl" questions

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

How to get table schema from Progress database via odbc

I have a linked server set up between sql 2008 and a Progress OpenEdge 10.1b server. How do I get the …

schema progress-4gl openedge
How to get Current Time in Progress (OpenEdge)

I am coding in Progress (aka OpenEdge ABL). I have a variable that holds a time and I want to …

progress-4gl openedge
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 …

progress-4gl openedge
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: …

progress-4gl openedge
Use of Break by keyword in progress 4GL

What is the exact use of break by keyword in Progress 4GL? I am not getting a clear idea from …

progress-4gl openedge
How to get end of month date in progress 4gl

How can I get the last day of the month in progress 4gl?

progress-4gl
Publish a zip file to Nexus (Maven) with Gradle

Say you have a PL file you want to upload to Nexus with Gradle. How would such a script look …

maven gradle nexus progress-4gl openedge
How to test if string is numeric using Progress 4GL

Does Progress 4GL have a function for testing whether a string is numeric, like PHP's is_numeric($foo) function? I've …

progress-4gl isnumeric
Deleting all special characters from a string in progress 4GL

How can I delete all special characters from a string in Progress 4GL?

progress-4gl openedge
running a loop on a comma delimited list of items progress 4GL

def var cList as char no-undo. assign cList = "one,two,three,four". <Loop> cList logic... </Loop> …

progress-4gl openedge