Search results

  1. B

    export delimited decimal fields

    Try EXPORT DELIMITER ";" string(igr,"999.999") txt.
  2. B

    ???Logic behing BY - Progress Sorting???

    Try adding an index to the temp table. It might make a difference.
  3. B

    mxp's powertools

    Don't worry about this request. I was able to find answers to my questions.
  4. B

    mxp powertools

    Hello everyone, I was trying to compile the powertools under Progress V7. Everything goes okay except, pt/sethelp1 does not compile. It complains about "help" key is not legal. I am unable to determine what might be causing it. If somebody out there could help me, it will be greatly...
  5. B

    mxp powertools

    Hi everybody, I have a crazy request. I am trying to build MXP powertools (version 6.2) under Progress version 7. I am almost successful except not every program is getting compiled. Can somebody help me? Do I need a key to decrypt the source?. The only programs that don't get compiled are...
  6. B

    mxp's powertools

    Hi everybody, I have a crazy request. I am trying to build MXP powertools (version 6.2) under Progress version 7. I am almost successful except not every program is getting compiled. Can somebody help me? Do I need a key to decrypt the source?. The only programs that don't get compiled...
  7. B

    read index only

    I know which fields make up the index. There is a way to go through the file to know the number of index entries in a table without reading each record. For example, if a table has 10 records, you can count the primary index entries on that table and it would return 10. I want to know how to...
  8. B

    read index only

    Has anybody ever read just the index on a table. I don't want to read the data but only the primary index.
  9. B

    Find first Problem

    I would make the following changes to your code: for EACH cust.m2t2f2aM NO-LOCK: FIND FIRST cust.xartikel WHERE m2t2f2aM.kombi_kz = xartikel.glas AND xartikel.geloescht = false NO-LOCK NO-ERORR. IF AVAILABLE cust.xartikel THEN ASSIGN Produkt-Combo:add-last(m2t2f2am.liefertext).
  10. B

    MAX LENGTH of a PUT Field

    Try to define a variable with view-as phrase as 'editor'. You have the ability to say number of lines and number of char per line. Then use this variable in the put statement and see if it works.
Top