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.
To answer the question, yes, I *SRVPGM similar to how APIs are bound to our *PGM and SRVPGM objects that contains the conversion APIs would be great.
So if you're thinking to create a service program or add to one, and create an set of APIs that do the CCSID conversions for us, that would be just as useful and more to be utilized. Since we can't convert from 0 (job CCSID) to UTF-16 (1200) it would be nice to have one of those new API do that 2-step process for us.
QxxJobTo1200( char *pOutput, int *outLen, const char *pInput, int inLen);
Qxx1200ToJob( char *pOutput, int *outLen, const char *pInput, int inLen);
QxxJobTo1208( char *pOutput, int *outLen, const char *pInput, int inLen);
Qxx1208ToJob( char *pOutput, int *outLen, const char *pInput, int inLen);
Qxx1208To1200( char *pOutput, int *outLen, const char *pInput, int inLen);
Qxx1200To1208( char *pOutput, int *outLen, const char *pInput, int inLen);
pOutput - Output (result) Buffer
outLen - Input/Output Length of result buffer on input, number of bytes converted on output
pInput - Input Buffer
inLen - Number of bytes for input buffer (input buffer length)
Power Systems Development
Would it be possible to centralize your conversion logic in a service program rather than have each application program perform the table loading individually? (If I understand your requirement correctly)