Recent content by Rajendran_

  1. Rajendran_

    Question How to increase decimal limit?

    Thank you @Stefan and @Osborne !
  2. Rajendran_

    Question How to increase decimal limit?

    Hello @Patrice Perrot , I always want the format to be "->,>>>,>>9.9<<<<<<<<", Since I don't what to display tailing 0's for decimals less than 5
  3. Rajendran_

    Question How to increase decimal limit?

    Hello, I have a piece of code which has decimal value with 4 whole-number and 5 decimal value (5608.90585). When I display this decimal value, its displayed as 5,608.9059. But I want to display it as 5608.90585. It might be a silly question but I couldn't find anything to increase it's limit...
  4. Rajendran_

    Answered How to expand include files content in a procedure file

    Do we have an in-built mechanism to expand the include files content in a procedure file? Let's say I have a procedure with 10 lines of code. I include a .i file with 5 lines of code at line 6 and that .i includes another .i with 10 lines of code. How can we generate a .p file with all the .i's...
  5. Rajendran_

    Question Can we remove the space allocated for a table field in a frame when the field values is empty in CHUI?

    Hello Marco, This works for me but the format of cs-cmnt is 40 and cs-id is 5. I'm able to only see the first 5 character for cs-cmnt. Is there any work around for this? I tried adding a format option with display but this effects the actual cs-id on the first display. Thanks you!
  6. Rajendran_

    Question Can we remove the space allocated for a table field in a frame when the field values is empty in CHUI?

    Hi Tom, It's not an unwanted blank line. I'm displaying the record in 2 line, where the first 6 fields are on first line and 7th field on 2nd line. But when the last field(7th field) value is blank I don't want that blank line to be displayed. I tried using put and FRAME [FRAME_NAME]:LINE to put...
  7. Rajendran_

    Question Can we remove the space allocated for a table field in a frame when the field values is empty in CHUI?

    Can you please explain me in more detail please? I don't want that blank line if, field7 is blank. Display the field 7 in 2nd line of record row only if it has a value. I want to display it like cs-id cs-name ..... cs-ind3 cs-cmnt cs-id cs-name ..... cs-ind3 --> for this record the cs-cmnt is...
  8. Rajendran_

    Question Can we remove the space allocated for a table field in a frame when the field values is empty in CHUI?

    Hi Tamhas, The display is inside a for loop, Yes I tried that by displaying the first 6 items in with one display statement and checked if the 7th field is not null and then displayed it with a second display. It doesn't works for me since I'm using the same frame. I just created this same...
  9. Rajendran_

    Question Can we remove the space allocated for a table field in a frame when the field values is empty in CHUI?

    Hello Tom, Yes, I'm using a frame width which should not be extended more. So the field label and it's value are wrapping to the second line. I'm just thinking if there would a way to remove the space allocation for a field in a frame for particular record or if there is any hack code that I can...
  10. Rajendran_

    Question Can we remove the space allocated for a table field in a frame when the field values is empty in CHUI?

    Hello everyone, I have table with certain number of fields, let's say for example 7 fields. My 7th field would have value for some records and would be empty for some records. I created a simple frame with a particular width that fits the first 6 fields and the 7th field is displayed on the...
Top