Search results

  1. KMoody

    Dynamic Forms

    I have a form that looks like this: FORM cust AT 15 cname AT 20 SKIP(1) "The program created the file with the Products listed below. If you desire" AT 5 "more products to be added to the file, answer the question Yes below" AT 5 "and enter the products." AT 5 SKIP(1)...
  2. KMoody

    Changing a Field's Extent

    Yes, we plan on doing that someday. :)
  3. KMoody

    Changing a Field's Extent

    Darn. Thanks!
  4. KMoody

    Changing a Field's Extent

    Progress: 10.2b SP7 OpenEdge Architect: 3.4.2.R342_v20090122-9I96EiWElHi8lheoJKJIvhM3JfVsYbRrgVIWL OpenEdge OS: Windows 7 Professional 2009 SP1 I want to change the extent of a field in my database, but it looks like it's locked in the Data Dictionary. (See attachment.) Is it possible to change...
  5. KMoody

    Detecting Unused Code

    Progress: 10.2b SP7 OpenEdge Architect: 3.4.2.R342_v20090122-9I96EiWElHi8lheoJKJIvhM3JfVsYbRrgVIWL OpenEdge OS: Windows 7 Professional 2009 SP1 Are there any utilities that can detect unused OpenEdge code? We have a lot of legacy code mixed in with currently used code, and separating the two...
  6. KMoody

    Changing Field Labels and Formats

    Doh! Of course. Thanks.
  7. KMoody

    Changing Field Labels and Formats

    Thanks! I think we might take a similar route - except we might not be able to get third party tools. What does CPO stand for, by the way?
  8. KMoody

    Security in OpenEdge

    Thanks! These are really good resources. I'll check them out. Actually, I did read the documentation some time ago (must have slipped my mind!). The most useful document I found was "Deploying a Progress Application in a Secure Environment." My biggest takeaways from that were: Don't allow any...
  9. KMoody

    Security in OpenEdge

    (I thought I'd make a new thread since my last one was getting off topic.) Aside from setting _File and _Field permissions for users, what mechanisms are built-in to the Progress DB and the OpenEdge language to handle security that are considered best practice in 2013?
  10. KMoody

    Changing Field Labels and Formats

    Thanks, Cringer. And Tom, that's a very good solution, especially since our existing code doesn't use _User or setuserid() at all. :D However, one downside would be any future OpenEdge features that use _User in unexpected ways.
  11. KMoody

    Changing Field Labels and Formats

    Thanks, everyone. I'll look into Progress Developer Studio. It's a separate issue; I want to implement group-based table security. (Please see my thread titled "Using Groups with Procedure and Data Security. Unfortunately, I can't include the link. :() The only way I can do this (to my...
  12. KMoody

    Changing Field Labels and Formats

    Thanks, Cringer. I'll try to do that. This may seem obvious, but why can't we change the schema when users are connected? I understand why we shouldn't try deleting or radically changing tables, but changing a field label seems like a cosmetic change. Is it always dangerous to change _File and...
  13. KMoody

    Changing Field Labels and Formats

    Progress: 10.2b SP7 OpenEdge Architect: 3.4.2.R342_v20090122-9I96EiWElHi8lheoJKJIvhM3JfVsYbRrgVIWL OpenEdge OS: Windows 7 Professional 2009 SP1 If someone is connected to a database, I cannot use the Data Dictionary to change any field labels or formatting in that database; even if no user is...
  14. KMoody

    Static Instance Failed to Load

    Sorry for the late reply! Yes, the PROPATH needed to include the directory containing the compiled files.
  15. KMoody

    Static Instance Failed to Load

    Oops, forgot my specs: Progress: 10.2b SP7 OS: SUSE Linux Enterprise Server 11
  16. KMoody

    Static Instance Failed to Load

    string_util.cls /* PROGRAM I.D. = string_util.CLS 06/20/2013 ** ** Provides standard string/character manipulation functions. ** */ CLASS string_util: CONSTRUCTOR STATIC string_util(): END CONSTRUCTOR. METHOD PUBLIC STATIC CHARACTER EXTENT...
  17. KMoody

    How to load _User.d?

    In Progress 10, I'm using load_d.p. Just as /prodict/dump_d.p dumps a single table, /prodict/load_d.p loads a single table. RUN /usr/dlc/src/prodict/load_d.p ("_User", "/location/to/dump/to/").
  18. KMoody

    "OUTPUT TO" and Folder Creation

    Recreating the entire directory structure wouldn't be too hard - except that we have hundreds human-created folders mixed in with progress folders in our current environment. Currently, we cannot tell which folders our progress programs need to run and which are "garbage." To do this, I would...
  19. KMoody

    "OUTPUT TO" and Folder Creation

    Progress: 10.2b SP7 OpenEdge Architect: 3.4.2.R342_v20090122-9I96EiWElHi8lheoJKJIvhM3JfVsYbRrgVIWL OpenEdge OS: Windows 7 Professional 2002 SP1 I need to recreate our current live environment in two other environments, and our team has discovered a potential problem. If a folder in an "OUTPUT...
  20. KMoody

    Backing Up Archived AI Files

    So if I want to copy my previous backup file and its aiarchive files to the same folder AND I'm continuously archiving ai files on a running database, how do I ensure that I don't pick up archive files that actually belong to my current backup file? Do I have to parse the archive log? I suppose...
Back
Top