This portal is to open public enhancement requests against IBM Power Systems products, including IBM i. 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).
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:
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 an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
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.
If you really, really want to do this, you can do it today, just place the tags as comments after the source line:
IF (cond1); // IF#1
{ Set-of-statements;}
IF (inner-condition 1); // IF#1-1
{ Set-of-statements;}
ENDIF; // IF#1-1
ENDIF; // IF#1
Personally, I think indenting the source is a better way of showing conditional blocks of code.
The compile listing has a column that indicates the nesting level of every statement in a structured group.
- B indicates the beginning of the group.
- E indicates the end of the group.
- X indicates a statement in the structured group such as ELSE, or WHEN, or ON-ERROR
- Ordinary statements within the group just have the nesting level number
- Statements that are not in a group do not have anything in this column of the listing
if 1 = 1; B01
if 2 = 2; B02
return; 02
endif; E02
return; 01
else; X01
return; 01
endif; E01
return;
- IBM Power Systems Development