Skip to Main Content
Integration


This is an IBM Automation portal for Integration products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.


Status Future consideration
Workspace App Connect
Created by Guest
Created on Jul 3, 2023

Improvements for ESQL Code Formatting

There is 'Format' option in ESQL editor, but it is slightly dumb :) so some enhancement would be appreciated:
* configuration for indenting multi-line commands
* readability options: like comma + space; operator + space; keywords + space should be configurable
* removing of empty lines are automatic now, but it could be configurable
* adding 2 empty lines in the beginning of ESQL is automatic - why?
* 'label:statement' is not handled properly only 'label: statement' is identified

Idea priority Medium
  • Guest
    Reply
    |
    Jul 31, 2023

    Wow, my code lines were formatted by comment engine 😀

    It was the original example:

    SET rowTemp.businessIdentifierList[] = LIST{
    'asnHeader.asnNumber',
    'asnHeader.customerPONumber',
    'asnHeader.expectedDeliveryDate',
    'asnHeader.billOfLading'
    };
  • Guest
    Reply
    |
    Jul 31, 2023

    1. multi-line command could a very long code line with line breaks:

    SET rowTemp.businessIdentifierList[] = LIST{

    'asnHeader.asnNumber',

    'asnHeader.customerPONumber',

    'asnHeader.expectedDeliveryDate',

    'asnHeader.billOfLading'

    };

    Now, that command above after a "Format" will be flattened to the position of "SET ..." which spoiles readability.

    4. two empty lines in the beginning of ESQL file: the main problem is with that, it is happening a repeated way, adding 2 more lines with every Formatting.

    5. label with or without space: editor and ESQL parser works fine both way, but Formatting cannot indent a loop properly with label without a space after the colon separator, for example:

    LABEL:WHILE i < 1 DO

    SET i = 1;

    END WHILE;

    will be indented a wrong way.


    Regards,

    Tibor

  • Admin
    Ben Thompson
    Reply
    |
    Jul 31, 2023

    Thank you for taking the time to raise this enhancement request. Some comments on the details:


    1. "configuration for indenting multi-line commands". It is possible to highlight multiple lines and from the right-click options choose "Shift right" or "Shift left" to indent multiple lines. Is this what you had in mind or is something further needed?


    2. "readability options: like comma + space; operator + space; keywords + space should be configurable"

    Our understanding is that this is asking for auto beautification of adding spaces around a plus sign or around a comma or clause etc. Good suggestion.


    3. "removing of empty lines are automatic now, but it could be configurable". Could see how this could be helpful and automatable.


    4. "adding 2 empty lines in the beginning of ESQL is automatic - why?

    This is to intentionally help make it clear that variables can be declared at the global scope outside a module ... with enhancement suggested in item 3 they could be removed easily if users don't like this styling.


    5 'label:statement' is not handled properly only 'label: statement' is identified

    This is an editor enhancement to allow the lack of a space after the label.


    Status of the idea is updated to Future Consideration.