Recent content by dlangschied

  1. D

    Progress OpenEdge 11.7 and RHEL7 with symbolic links

    The repair worked, but the database still needed to be restored from backup to get everything to function. All worked and I thank both of you for your help.
  2. D

    Progress OpenEdge 11.7 and RHEL7 with symbolic links

    Thanks! I was going in that direction and now have two confirming posts. Regards, David
  3. D

    Progress OpenEdge 11.7 and RHEL7 with symbolic links

    All, I have an issue where I need to refresh my QAD test environment. I am running out of space, but I do have another file system that I can use. With QAD2014SE, I have a great number of scripts that refer to the database directory as /db/env. I cannot create any new databases there, so I...
  4. D

    Error in document load

    Yeah, I started doing that. I am getting closer. It appears that the NODES do not contain the information that I was expected. I'll be drinking early tonight!
  5. D

    Error in document load

    I got a new issue. Now, I am trying to check the value of a node and it does not seem to work: IF hPar:NODE-VALUE = "43241" THEN DO: RUN logError IN pMessageLogger ("This sucks!"). RUN cleanup IN THIS-PROCEDURE. RETURN ERROR. END. I added this code to the bottom and it should find...
  6. D

    Error in document load

    Sorry, I copied the base code from a QAD QXtend session. I did make the bad assumption that the code was written correctly. I have done similar coding in the past, but I was having difficulty finding a good example. I initialized the node hChild and the error is gone! Thanks!
  7. D

    Error in document load

    All, I am loading an XML document and I am getting errors. The syntax is correct, but I get the error below when I try to run the code. I don't code for XML document loads too often, so i thought that I would pass this by the experts. Progress 11.7 Error: The GET-CHILD attribute on the...
  8. D

    wrapper

    Agreed. Taking that tack. If I disable it on go of the frame I still face the problem of disabling a field that is a variable in the encrypted program. Any ideas on that point?
  9. D

    wrapper

    I have a program that I want to modify, but the code is encrypted. So I created a wrapper program to respond to activities in the program. Not a problem. However, I want to use this wrapper to disable a field (prod_rate) that is used in the base program to perform a different calculation than...
  10. D

    Save Output as an Excel file.

    I need to save my output as a file that can be opened in Excel. I am already saving output as CSV, but the latest version of Excel manipulates the inbound data in a way that is not desirable. We are on QAD2017EE, cloud-based, with the program running as a batch program on RHEL Linux. The file...
  11. D

    Reinstall does not create service

    Windows, backed up properties, Workgroup, ran as administrator. Is there a way to create the service only?
  12. D

    Reinstall does not create service

    All, I had a customer that needed a reinstall of Progress OpenEdge. I jumped in to help and uninstalled their OpenEdge application. Upon reinstalling, I found that the proadmin service was not created. They did not have the Enterprise Database license, but had the RDBMS license. Does that...
  13. D

    Action based on user hitting F1

    All, I have a need to capture the "F1" key to initiate an action. I have been looking for code that does this, but so far I have come up empty. This is for Eagle software so it will be something along the lines of: if rf_response_1 = "F1" then do: end. I do not know what to replace "F1" with...
  14. D

    Conditional Statement In A For Each

    Thanks to all of you for the help. I did a query dependent upon open or closed and then looped through the data that was produced and it worked perfectly. The procedure now runs in mere seconds.
  15. D

    Conditional Statement In A For Each

    I have a FOR EACH with which I need some help. It is a picklist table. I want to display records, but I have some records that are incomplete or open. If the user selects to see only these lines I want to restrict my FOR EACH on that information. The table has a small number of records...
Top