Search results

  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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?
  9. 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...
  10. 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