Search results

  1. M

    Rounding problem

    Hello , thank you...
  2. M

    Rounding problem

    HI , Thank you very much... Regards M.Prabu
  3. M

    Rounding problem

    Hi All, I am running the below small query in progress editor. I am having two memory variable , which having 2 different formats. If enter the same value in both the fields it displays the different results. {mfdtitle.i} define variable a as decimal format "->>,>>>,>>9.9<<<<<<". define...
  4. M

    Rounding issue

    Hi All, I am facing the following problem in progress. When I run the folllwing query in the progress editor display 900000000 * ( 100 / (100 - 10)) format "9999999999.99". It given the following results 999999999.99 But if I do the same calculation in excel sheet or calculator I got...
  5. M

    MODULO Function behaves differently for decimal values

    Hi Casper, Thank you.. Prabu
  6. M

    MODULO Function behaves differently for decimal values

    Hi All, I have run the following query in progress session {mfdtitle.i} display 78.75 modulo 26.25. Result: 1 {mfdtitle.i} display 78 modulo 26. Result: 0 Anybody can explain why MODULO function behaves differently for decimal values... I think for both the cases it should display 0...
  7. M

    Can we use TAB as a delimiter while exporting?

    Joel W, Thanks a lot for your reply. I got my expected result. Thanks Regards M.Prabu
  8. M

    Can we use TAB as a delimiter while exporting?

    Hi All, Can we use the TAB as a delimiter while exporting the values to file from one table? For example I am having the below piece of code.. output to <file>. for each pt_mster where pt_part = "Item" no-lock: export delimiter "," pt_mstr. end. Instead of delimiter "," i want to use...
  9. M

    Progress 'entered' function behaves differently in CHUI & .NET UI

    HI All, I am using entered function , to know the user entered the value in one field or not. But 'entered' function behaves differently in progress CHUI & .NET UI. In progress CHUI, the entered function fires If the field value is unchanged but the user enter the old value itself...
  10. M

    Regarding Temp Table Logic

    Hi All, I have 1500,000 lacs records in my Permanant table. Now I want to copy some records (which are satisfied 2 conditions) to one temp table. How I copy the Records. Now I use the following condition, for each xx_table where xx_table_field1 = "A" and...
  11. M

    -L Parameter Error

    Hi, Thanks for your reply. can you please explain what is COMPILE XREF? Usually i use the commend "compile ./xxcust.p save into us/xx". What is different b/w these two? Are you having any document to see about COMPILE XREF. Thanks. Prabu.
  12. M

    -L Parameter Error

    HI tamhas, Thanks for your reply. it is very useful for me? . Please clarify me the following also I ma haveing 27 lacks(2,712,782) data in our custom table. But i want only certain "OK" status record only. i have checked in the table "OK" record is nearly 27000 records only. I have created...
  13. M

    -L Parameter Error

    HI All, In our program we have using the commend "REPEAT TRANSACTION ON ERROR UNDO mainloop,RETRY mainloop" instead of "REPEAT ON ERROR UNDO mainloop , RETRY mainloop": When we using the "REPEAT TRANSACTION" it shows the error message "Lock Table overflow -L " but, it did'nt show any error...
  14. M

    -L Parameter Error

    Hi All, I am using Progress 9.1 version. When i run the program it shows the error message "Lock Table Over flow - L ". Any one can you please explain what is the meaning of this error?
  15. M

    Help: Table Creation

    Hi, Thanks for your reply. I want to upload some records in the exsisting table. so the syntax is create pt_mstr assign pt_part = "ABCD" But i know the table name at run time only. Can i Pass the table name as parameter.
  16. M

    Help: Table Creation

    Dear All, Please clarify the below statement. -------------------------------------- Enter thr Table Name: -------- -------------------------------------- The above one is my input screen . when i enter the table name in the input field i want to create the that table. Is this...
  17. M

    how to load the record at run-time using dynamci query?

    hi all, i want to load the data at run-time. if i use BUFFER-CREATE() method, i don't know how to assign the value. (all values available in file).
Top