I need to add a new application to a group session list, but need to first add a new DEFLOGON as it is not yet defined.
How do I set this up?
I would also like to clean up Appl Ids defined on MAI menu that are not used, then add the new Appl Ids being implemented.
The Guide says to try with Primary command (L or LOGON) or line command (M-Modify or U-Update, R- Repeat) but that is only for one user with a unique session list.
If we want to make the changes at group level rather than at user level, what steps needs to be performed?
I could not see the CA Vantage Applids defined for my ID on MAI Session menu, whereas it was defined for other group profiles, so in that case, how to make or manage session list for particular group profiles?.
Release : 5.0
Component : CA SOLVE:Access Session Management
By default, DEFLOGON statements are defined in the $ACINIT member in your TESTEXEC.
You can verify what member is being used by going to /PARMS and checking the ACINIT parameter group and reviewing the contents of the 'User Initialization Procedure' field.
This will be the member to update.
General rules:
A DEFLOGON statement is required prior to defining a session in the MAI session list.
A new DEFLOGON statement can be added dynamically.
Existing definitions can be updated dynamically using REPLOGON if the definitions in $ACINIT use REPLOGON instead of DEFLOGON
Any dynamic changes are valid only as long as the region is active. To anchor changes across restarts, they must be added to the DEFLOGON section of the $ACINIT.
A sample statement could look like this
DEFLOGON INPUT=SYSVIEW APPL=SYSVJ DATA=INPUT1 MSHR=YES
To add it to your SOLVE:Access region dynamically:
You will receive a response back that it has been added.
For the exact parameters to use in your DEFLOGON statement, we recommend reviewing your existing statements and the doc noted under Additional Information as every environment has different requirements.
In general, if a session is not in your session list, you can access it from the command line in the MAI screen with L applid, as long as you have a DEFLOGON.
So for our new DEFLOGON, L SYSVJ should get you to the logon screen for the application.
If you go back to your MAI menu, the session will appear at the bottom of the list. It will remain until you log out of MAI.
NOTE: Be sure that the application is active when you issue the command to avoid errors.
Here is the URL
https://techdocs.broadcom.com/us/en/ca-mainframe-software/intelligent-operations/ca-solve-access-session-management/5-0/administering/defining-and-administering-applications/deflogon-table/how-mai-uses-the-deflogon-table.html
This section describes the DEFLOGON statement itself
https://techdocs.broadcom.com/us/en/ca-mainframe-software/intelligent-operations/ca-solve-access-session-management/5-0/administering/defining-and-administering-applications/deflogon-table/deflogon-table-entries.html
and syntax can be found here
https://techdocs.broadcom.com/us/en/ca-mainframe-software/intelligent-operations/ca-solve-access-session-management/5-0/administering/defining-and-administering-applications/deflogon-table/deflogon-table-entries/deflogon-command-define-logon-information.html
The REPLOGON statement is described here
https://techdocs.broadcom.com/us/en/ca-mainframe-software/intelligent-operations/ca-solve-access-session-management/5-0/administering/defining-and-administering-applications/deflogon-table/replogon-command-modify-logon-definition.html
It has the exact same syntax as DEFLOGON except that it allows you to dynamically add or change the statements.