Add PGMINFO option to command strings in package.jso - #3442
Closed
anandsha20 wants to merge 3 commits into
Closed
Conversation
Why Needed: When adding a service program or RPG program to an IWS server, a PCML file is required. Currently, generating the PCML file is not included by default in the compile commands, which makes it harder to add newly compiled or updated programs to IWS. Additonal Info: According to IBM documentation, specifying PGMINFO(*PCML *MODULE) causes the compiler to generate an XML (PCML) description of the program's parameter interface and embed it inside the compiled module object (*MODULE). When that module is later bound into a *PGM or *SRVPGM, the PCML travels with it into that object too. This change will not cause any issue with non-IWS programs
…thPgminfo Add PGMINFO option to command strings in package.json
Member
|
This is not a parameter which I have used before, but given the description this sounds like it is applicable for specific use cases as you mention for IWS. Thus, this to me looks like it should be configured by the user if needed in their actions rather than in the defaults shipped with the extension. |
Member
|
Sorry @anandsha20 but @SanjulaGanepola is right. Actions are meant to be customized by the users to fit their needs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
Why Needed:
When adding a service program or RPG program to an IWS server, a PCML file is required. Currently, generating the PCML file is not included by default in the compile commands, which makes it harder to add newly compiled or updated programs to IWS.
Additonal Info:
According to IBM documentation, specifying PGMINFO(*PCML *MODULE) causes the compiler to generate an XML (PCML) description of the program's parameter interface and embed it inside the compiled module object (*MODULE). When that module is later bound into a *PGM or *SRVPGM, the PCML travels with it into that object too.
This change will not cause any issue with non-IWS programs
How to test this PR
Checklist
console.logs I added