Search results

  1. V

    Question How to store 123456789.12345678901 decimal value to the decimal field?

    Hello All, Progress Version: 10.2B How to store 123456789.12345678901 decimal value to the decimal field? define variable l_dec like xx_dec format "999999999.99999999999" no-undo. l_dec = 123456789.12345678901. for each xx_mstr exclusive-lock: xx_dec = l_dec. end. Thanks in advance.
  2. V

    Question How to find the .p's and .i's inside a program

    Hi All, Anyone have any suggestions please,.
  3. V

    Error Error:ScException

    Hi All, We got error ScException while executing bcinvoice.p in .NETUI . Please help us about the error.
  4. V

    Find a word and Replace in a Sentence

    Hi, Try this example, DEFINE VARIABLE l_name AS CHARACTER format "x(30)" NO-UNDO. l_name = "aaaaaa bcd efg". l_name = replace(l_name,"efg","abc") . DISPLAY l_name.
  5. V

    what is jump functionality?

    Hello, Please explain about jump functionality.
Top