Skip to Main Content
IBM Power Ideas Portal


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).


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 Functionality already exists
Workspace IBM i
Categories Languages - RPG
Created by Guest
Created on Nov 2, 2022

Allow TEMPLATE keyword for standalone fields

The template keyword allows data structures to be defined as a custom complex type simply for the purpose of defining other data structures with the same structure.

Extending this to standalone variables will allow custom simple types to be defined in a similar manner with clarity of purpose of the declaration and compiler level enforcement.

e.g.

/COPY member:

dcl-s account_number_t dec(7,0) template;


Program:

dcl-s accno like(account_number_t);

Idea priority Low
  • Guest
    Reply
    |
    Nov 3, 2022

    How odd.. I only posted this because I tried to do it yesterday and RDi was erroring on the template keyword - with a packed field exactly as your example. I changed my code to base it on a null pointer as a result. Whereas it's now working fine today on the same variable.. never mind, apologies for wasting your time.

  • Guest
    Reply
    |
    Nov 3, 2022
    The TEMPLATE keyword can already be specified for standalone fields. When support for the TEMPLATE keyword was added for data structures in 6.1, it was also added for standalone fields and files. There is an example on this page of the ILE RPG Reference: https://www.ibm.com/docs/en/i/7.5?topic=template-rules-keyword-definition-specifications

    However, note that your example uses the "DEC" keyword which doesn't exist. The following definition will compile:
    dcl-s account_number_t packed(7:0) template;

    - IBM Power Systems Development