Search results

  1. P

    How to use font after creating it at runtime

    Hey guys. The problem is pretty simple. I'm trying to use a font after creating and i keep getting the same error and i don't know why: Can anyone spot the error in the following code? DEFINE TEMP-TABLE tt-test NO-UNDO FIELD oui AS CHAR FIELD croissant AS CHAR. CREATE...
  2. P

    Question Define trigger for all tables

    Hi there! I wanted to ask if there's a way to create a trigger for all tables ("write" for example). I was thinking on using the following code in a persistant procedure: ON WRITE OF Customer DO: END. But I don't want to have to have a block of code for each table. Is there a way to do the...
  3. P

    Question Run non-existant program in a existing program without error

    Hey there! I already posted a similar question a while back but I came back with a better one... How could I catch an error on a program without editing that program? I added 3 attachments (3 .p ). I want to be able to run the custom1.p and press the button that runs custom2.p that then runs...
  4. P

    Question Show dialog behind main window

    Hi Guys! I wanted to do the following, but behind the current program/window: DEFINE FRAME X WITH VIEW-AS DIALOG-BOX TITLE "":U FONT 4. VIEW FRAME X. ASSIGN FRAME X:X = 0 FRAME X:Y = 0 FRAME X:WIDTH = 0...
  5. P

    Answered Run non-existant program without error

    Hello guys! I wanted to ask if there's a way to run a program and that program ends up not existing and the program shows a message saying that BUT it doesn't break like the following code does: DEFINE VAR temp-hand AS WIDGET-HANDLE. DEFINE BUTTON make-btn LABEL "Make new button". DEFINE FRAME...
  6. P

    Error Error in Consuming Service (v11.3.3)

    Hey there! Some weeks back, this site 'https://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml' passed from "http" to "https" so I was tasked with fixing the original code so it would work in every client. I managed to do so, but i realised that the code wasn't compatible with some of the...
  7. P

    Error SOAP - POSTMAN to ABL/4GL CODE

    Hi there! I have a SOAP request in my postman that works perfectly However, when I try to convert it to ABL/4GL code it doesn't work. I'm 100% doing something wrong but i can't seem to find it. I already talked to some colleagues of mine but nobody seems to find the problem. I used the...
  8. P

    Resolved DataSet on Class ERROR

    Hello there! I used a progress tool to convert a xml file to a .i (temp-tables + dataset). After doing it, i tried reading a xml file with data and export it again to see if everything was as expected and it was. However, when i referenced that include in a class i get the following error...
  9. P

    Trigerring Progress 4GL Triggers from Java Data Update

    Hello! I've been developing Java code with the purpose of creating an API to be used by my company clients. I reached a point where i need to create a POST and this particular POST is supposed to apply certain changes to a table. This table has some triggers defined in his table definition...
Top