View previous topic :: View next topic |
Author |
Message |
Anand_R Intermediate

Joined: 24 Dec 2002 Posts: 189 Topics: 60
|
Posted: Wed Aug 06, 2003 12:03 pm Post subject: Can we trigger rexx program from online cobol program. |
|
|
Hi,
Is it possible to trigger REXX program from the online cobol program?.. any help is really appreciated..
Thanks
Anand |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Wed Aug 06, 2003 3:53 pm Post subject: |
|
|
Anand,
You can execute rexx commands within CICS itself rather than calling an exec with cics.check this link
REXX for CICS/ESA R1V1 Guide and Reference
Hope this helps...
cheers
kolusu |
|
Back to top |
|
 |
Anand_R Intermediate

Joined: 24 Dec 2002 Posts: 189 Topics: 60
|
Posted: Thu Aug 07, 2003 10:55 am Post subject: |
|
|
Koluse,
Actually I have dc cobol program runs in IDMS. So I want to know whether it is possible in the IDMS-dc/cobol program.
Thanks
Anand |
|
Back to top |
|
 |
ofer71 Intermediate
Joined: 12 Feb 2003 Posts: 358 Topics: 4 Location: Israel
|
Posted: Thu Aug 07, 2003 11:06 am Post subject: |
|
|
You can submit a batch REXX job (IKJEFT01) from CICS.
________
iolite review
Last edited by ofer71 on Sat Feb 05, 2011 11:01 am; edited 1 time in total |
|
Back to top |
|
 |
Anand_R Intermediate

Joined: 24 Dec 2002 Posts: 189 Topics: 60
|
Posted: Thu Aug 07, 2003 11:55 am Post subject: |
|
|
Ofer,
You mean to say, It cannot be done in IDMS-dc/cobol? |
|
Back to top |
|
 |
ofer71 Intermediate
Joined: 12 Feb 2003 Posts: 358 Topics: 4 Location: Israel
|
Posted: Thu Aug 07, 2003 9:20 pm Post subject: |
|
|
Why not ?
________
Yamaha XJ600
Last edited by ofer71 on Sat Feb 05, 2011 11:02 am; edited 1 time in total |
|
Back to top |
|
 |
Anand_R Intermediate

Joined: 24 Dec 2002 Posts: 189 Topics: 60
|
Posted: Thu Aug 14, 2003 2:00 pm Post subject: |
|
|
Ofer,
Can you explain me ..
Thanks |
|
Back to top |
|
 |
ofer71 Intermediate
Joined: 12 Feb 2003 Posts: 358 Topics: 4 Location: Israel
|
Posted: Thu Aug 14, 2003 10:40 pm Post subject: |
|
|
Anand:
Use the SPOOL interface of CICS to generate a job like this:
Code: |
//Your job cards...
//*
//STEP01 EXEC PGM=IKJEFT01
//SYSEXEC DD DSN=your.rexx.pds,DISP=SHR
//SYSTSPRT DD SYSUOT=*
//SYSTSIN DD *
%your_rexx
/*
|
O.
________
Carlo Chiti
Last edited by ofer71 on Sat Feb 05, 2011 11:02 am; edited 1 time in total |
|
Back to top |
|
 |
Anand_R Intermediate

Joined: 24 Dec 2002 Posts: 189 Topics: 60
|
Posted: Mon Aug 18, 2003 1:54 pm Post subject: |
|
|
Ofer71,
Thanks a lot Ofer71, I didn't think abt it at all..
Thanks
Anand |
|
Back to top |
|
 |
|
|