Search results

  1. R

    How To Convert Base64 Encoding To Ascii Text?

    hi all, i am working on a tool which reads email files from different clients .some emails from yahoo and gmail are getting encoded with base64 content-transfer-encoding. i am trying to find a solution to decode these files into readable text format . i have tried to convert the files by the...
  2. R

    How To Get Screen Value Of A Pervious Field In The Next Field In A Form?

    Def var v-loc as char no-undo. Def var v-enddate as date no-undo. Def var v-routerpubs as char initial “/homs/cbcbc/” no-undo. Def var v-newrouter as char initial “/home/hgda/” no-undo. repeat: form " LOCATION : " v-Loc help "Enter Product, or Press F2 for lookup."...
  3. R

    Reading Input File Issue

    i am reading an email file in linux server.i am reading the file line by line and extracting the data which i need from the file.i am using an state machine to process these files.My current desing is based on a particular orde of the data. code snippet. input from value(v-File). vState =...
  4. R

    How To Add Two Double Quotes Inside A Variable?

    i need to pass the variable to shell script fot ftp process. the password has some redirection () characters like T563()_g563. from command line i can use separator lke 't563\(\)_g563' and it works fine. But when i try to run using the script and .p i need to have value as "'t563\(\)_g563'" two...
  5. R

    Not able to compile code which updates the database.

    I am getting the below eror. Error (490) running 4GL / ABL source code using a query version of Progress / OpenEdge Error when compiling ABL/4GL program. You may not compile programs that update the database in this version. (490) As per Kb, it uses query license which wont allow compile query...
  6. R

    Administration module not avalialble in the menu in RESULTS tool.

    Please suggest why Administration module is not available in the menu in results tool.is it due to some installation error.? openedge 11.3 unix environment chui
  7. R

    Does promon have option to find db table size and free spaces?

    i would like to find each table size in progress db.Is there any options in promon or in VST Tables?
  8. R

    How to exclude multiple records from a table

    i am reading a config file and getting the exclusion list with space separator like conv custreq payment etc. i am using the below code to loop through each exclusion list. do i = 1 to num-entries(tt-process.reason, " "): v-reasonexc = entry(i,tt-process.reason, " "). for each...
  9. R

    how to get next line of a particular line while reading a text file?

    i am reading a text file line by line with unformatted. i am able to get the particular line which contains some string "comply" in the line.i need to get next line followed by particular string "comply". def var vrow as char no-undo. def var v-comply as char format "x(15)" no-undo. input from...
  10. R

    Doccument or sample code to read email from progress 4gl in unix.

    could someone point me some documnets for reading email through progress.I see lot of information for sending email but not for reading email through progress in unix.
  11. R

    How to extract Integer and character seperately from char variable?

    I have tried with the below code.But it will fail if we have multiple words in the character field. def var i as char format "x(30)" no-undo. def var v as char format "x(30)" no-undo. def var b as int no-undo. def var c as int no-undo. def var v-cleanstring as char no-undo. set i. v=...
  12. R

    How to avoid a down frame?

    Hello, i am using a frame inside an repeat loop.Based on user input i am running two different programs.But the issue is i am getting an down frame from the second iteration of the repeat loop. i tried HIDE ALL statement to overcome this down frame.But i wonder is this the correct solution to...
Top