Recent content by Rajendran_

  1. Rajendran_

    How to release record locks in a repeat block inside a do transaction block

    Yes, when the functionality was built, the main focus was on making it work as expected, and details like this were overlooked. We are currently in the process of fine-tuning and optimizing the application. Thank you very much for your suggestions.
  2. Rajendran_

    How to release record locks in a repeat block inside a do transaction block

    Hello Tom, Thank you for your helpful suggestions. The reason the repeat was inside the "do transaction" is because "internalCustProcedure" and "internalOrdProcedure" also make updates to the database table. We first gather the data for the given order, then do the road mapping. Currently, we...
  3. Rajendran_

    How to release record locks in a repeat block inside a do transaction block

    Yes Tamhas, our objective is to reverse the entire procedure due to the modifications made to the Customer, Order, and Orderline tables within the repeat block. Another alternative I considered was incorporating generateFlowAndReport within the repeat block, but this disrupts the functionality...
  4. Rajendran_

    How to release record locks in a repeat block inside a do transaction block

    The generateFlowAndReport procedure calls several other procedures, both locally and on an appserver. So the error can be of both data and connection.
  5. Rajendran_

    How to release record locks in a repeat block inside a do transaction block

    Hello everyone, I have an issue with a batch process program that takes a bunch of orders as input, allocates the required order line items, and creates a delivery flow and exports them as a report. When dealing with orders with huge order lines, I see a huge amount of records being locked...
  6. Rajendran_

    Question How to increase decimal limit?

    Thank you @Stefan and @Osborne !
  7. 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
  8. 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...
  9. 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...
  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 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!
  11. 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...
  12. 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...
Back
Top