Search results

  1. P

    How to convert UTF-8 to ASCII using CONVERT TARGET

    The one which is available converts my national character to the question mark '?' which is not what I am expecting. How can I create my own conversion? Any good solution if I am interested only in conversion of some of the characters from UTF-8 to 7-bit ASCII? How to apply that conversion...
  2. P

    How to convert UTF-8 to ASCII using CONVERT TARGET

    I was trying CONVERT TARGET “7-bit” but progress complains that code page conversion table from 'UTF-8' to '7-bit' can't be found in convmap.cp.
  3. P

    How to convert UTF-8 to ASCII using CONVERT TARGET

    I need to have output files in ASCII because I am sending it outside for let say 'analysis' and they can import only ASCII. I have only few national character that should be converted to their representatives in english like 'ś' to 's', 'ł' to 'l', 'ż' to 'z' etc. So such lose of data is fully...
  4. P

    How to convert UTF-8 to ASCII using CONVERT TARGET

    Hi All, I have a db where data is stored as UTF-8. I am extracting some data from it. Actually I am using a OUTPUT TO VALUE ("xxxx") NO-CONVERT but it produces me a UTF-8 with all special and national character. I would like to have my file in ASCII format without all special and especially...
  5. P

    What is the best practice to close procedure and corresponding gui?

    So, it doesn't resolved the issue. Still GUI with message press space bar to continue.
  6. P

    What is the best practice to close procedure and corresponding gui?

    I changed the code according to your hint. Checking the results right now. Thanks.
  7. P

    What is the best practice to close procedure and corresponding gui?

    No DISPLAY string in my code. The window is invoked every single time (or the graphical user interface is painted) because I am using a GUI application which is prowin32.exe.
  8. P

    What is the best practice to close procedure and corresponding gui?

    I have a procedure which I am invoking manually by using prowin32.exe application. Within this procedure I have several RUN statements to run another procedures. All procedures from RUN statements are finished by RETURN statement. Main procedure is finished by APPLY "CLOSE" to this-procedure...
  9. P

    Is OpenEdge Management console available for OE10.0B

    OK, thank you for all informations.
  10. P

    Is OpenEdge Management console available for OE10.0B

    I am using OE10.0B. I want to migrate to Windows Server 2008 but unfortunately PET (Progress Explorer Tool) doesn't work on WS2008. Is there a OpenEdge Management console available for OE10.0B? or any workaround that help me use PET on WS2008? regards
  11. P

    Calling progress procedure remotelly

    You're the man! Thank you very much. Now I need to install a progress tools on different machine. Currently it is Windows Server 2003 which doesn't support CredSSP. I found also some resolution based on the allowing a computer to be trusted for delegation for specific services. This one works...
  12. P

    Calling progress procedure remotelly

    It will not work from PC3 because there is no progress tolls installed on PC3. It works from PC1 where progress tools are installed.
  13. P

    Calling progress procedure remotelly

    Do you mean a shell on PC3 or shell (process - _progres.exe) which is invoked on PC1? The user is a domain user with access to network. I did some test and I found another strange thing: If I will put a command: D:\oe100b\bin\_progres.exe -db \\PC2\db\dab -S 8500 -H PC2 -N TCP -p...
  14. P

    Calling progress procedure remotelly

    PC3 know a PC2. PC3 need to know PC2 in order to be able invoke a remote command on it. The problem is - why a FILE which is a parameter to the _progress executable can't be found. I was already tried with IP addresses as well.
  15. P

    Calling progress procedure remotelly

    In this whole scenario 3 PC's will be involved. PC1 (win32 machine) - where the OE tools like prowin32.exe, _progres.exe are located PC2 (linux machine) - where the db engine, databases, and my *.p procedures are located PC3 (win32 machine) - from this machine I need to invoke remotely a *.p...
  16. P

    BREAK BY help needed

    I have a table like below: +-----------+ | Payments | +-----------+ |Amount | |CustID | |Country | |City | |AcctNum | +-----------+with the following data inside: Amount CustID Country City AcctNum -120 001 GER MUN 67241 -120 001...
  17. P

    Please HELP with converting SQL query to 4GL

    Sorry, maybe I was not enough precisely. I know that I need to use DATE to compare the same data types. And of course I did it. But as far as it's an 4GL OUTER-JOIN it doesn't change the number of rows in result, while SQL query (in given example) is reducing the number of rows in result.
  18. P

    Please HELP with converting SQL query to 4GL

    I have SQL Query which I need to conver to 4GL. I am strugling with two issues. First, the query behave in a strange way, second, conversion. The Query select RD.ponum, V.VendorNum, AH.invoicedate, AH.invoiceamt, AH.entryperson from pub.rcvhead RH inner join pub.rcvdtl RD on...
  19. P

    Reading a SET of records 'twice' from the same table in one Query

    I will need to use DYNAMIC QUERY. This is because with the same query I would like to use in some conditions ONE BUFFER, and in other conditions TWO BUFFERS. hQueryData:SET-BUFFERS (BUFFER chglog:HANDLE, BUFFER chglog2:HANDLE) is the answer. I will try it tommorow. Thanks for answer I still...
  20. P

    Reading a SET of records 'twice' from the same table in one Query

    Yes, you're right. And this is also the second part of previous answer Posted by MaximMonin. I did this way but I have one major issue with this resolution. I can't use it with my query. This is because this Query requires TWO BUFFERS and I am already using only ONE BUFFER DEFINE QUERY Changes...
Top