View previous topic :: View next topic
|
Author |
Message |
Digvijay Singh
Active User
Joined: 20 Apr 2022 Posts: 148 Location: India
|
|
|
|
Hi Team,
I have an automation requirement. below are manual steps performed by operation team.
1> Login in to cics region using command L HLCqa106.
2>Issue EFT1 command or transaction just after successful login
3>Hit enter again.
That is it.
I am looking for way to automate above steps using rexx or JCL anything new into rexx with cics situation. If anyone can help here. I have tried till now below code.
I am able to login through below command in rexx
TSO ADDRESS "LU" "HLCqa106"
but i am not sure how to execute the EFT1 transaction how to issue that command in rexx and hit enter basically 2nd and 3rd step. If anyone help here would be great help. any rexx code as hint is also fine. |
|
Back to top |
|
|
Pedro
Global Moderator
Joined: 01 Sep 2006 Posts: 2594 Location: Silicon Valley
|
|
|
|
re: I am able to login through below command in rexx
TSO ADDRESS "LU" "HLCqa106"
Doubtful.
1. Your ADDRESS command is wrong. Maybe this would work somewhat:
Code: |
Address TSO 'LU HLCqa106' |
2. LU is different than the L command you originally stated.
Maybe start here: www.ibm.com/docs/en/cics-ts/5.1?topic=cics-enabling-rexx
Note: I do not know CICS, so you might be correct after all. |
|
Back to top |
|
|
|