Recent content by fdumlao

  1. F

    Cycle in procedure! (Or Progress Ping-Pong)

    Basicly the setup started like this (when I took it over): TableA Write Rule: Do Some stuff... RUN otherProcedure.p Do Some more stuff.. otherProcedure.p DISABLE TRIGGERS ON LOAD OF TableB ASSIGN TableB.Field = "Some Value". TableB Write Trigger ASSIGN TableA.Field = "Some...
  2. F

    Cycle in procedure! (Or Progress Ping-Pong)

    Ok, so I have a cycle in procedure error, I have refactored the code and attempted different logic, but to no avail. I attempted to disable the write triggers of the offending table, but that of course does not work (As I learned from experience and from the KB). I decided then to manually...
  3. F

    ASP and ODBC (Gasp!)

    That is exactly what I was trying to work out, but it proves to be difficult. Calling the database from the command line still creates GUI error output, which I obviously cannnot parse with ASP :(. I was hoping to find some middle ground. I would love to find a way to run 4GL procedures from...
  4. F

    ASP and ODBC (Gasp!)

    Thanks Casper. With that in mind I think we are going to use a different solution. I have a web interface where loan officers are reviewing information that was entered by potential loan customers. After the customer is "prequalified" the loan officer should be able to hit a button and have...
  5. F

    ASP and ODBC (Gasp!)

    Not that we necessarily want to, but it looks like we are going to be using ASP to "dump" data into our Progress 9.1d database! The idea is to connect to the database via ODBC, and create new records and get out. No data should be retrieved. I have read through about 20 posts that mention...
  6. F

    Total of a Browse Column

    Ok. My idea does NOT work. NUM-ITERATIONS only returns the value of the rows that are currently visible in the browse, and since my browse has a couple hundred records displayed, but only 9 visible at any time, this is WAY off. I tried using the NUM-RESULTS('query') function, but it also does...
  7. F

    Total of a Browse Column

    It is a temp table that I am querying. The table is filled with all records "belonging" to a user. Initially, all records are displayed in the browse. The user has a couple of combo boxes and some fill ins that they can use to filter the data, so for example the user can see all of the loans...
  8. F

    Total of a Browse Column

    I think I came up with a solution, tell me what you think. It appears to be working... DEFINE VAR iRow AS INTEGER NO-UNDO. fiTotalDollars = 0.00. DO iRow = 1 TO brow-lt-master:NUM-ITERATIONS: brow-lt-master:SELECT-ROW(iRow). fiTotalDollars = fiTotalDollars +...
  9. F

    Total of a Browse Column

    Hi all, this is my first post, however I have been using this site as a resource for almost a month now. I am an experienced programmer, but am new to Progress, and have run into an interesting challenge. We are running Progress 9.1d on Windows. Our application is UNIFI if anyone here is...
Top