"SEND ''FD FILE HAS BEEN RECEIVED' USER(USR54) NOW'"

in this, " started with SEND and then two single quote start with FD and
then one closed after received and then one single and one double quote
ended after NOW.


Can you please help to correct this .


On Sun, May 13, 2018 at 9:17 PM, Chris Hoelscher <choelsc...@humana.com>
wrote:

> Well I see 3 double quotes and 2 single quotes .....
>
> Chris Hoelscher
> Technology Architect, Database Infrastructure Services
> Technology Solution Services
> Humana Inc.
> 123 East Main Street
> Louisville, KY 40202
> Humana.com
> (502) 476-2538 or 407-7266
>
> -----Original Message-----
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of venkat kulkarni
> Sent: Sunday, May 13, 2018 2:10 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: [IBM-MAIN] Netview Submit JCL
>
> Hello Mike,
>
> I dont have uneven number ob " and ' . If you notice
>
>  "SEND ''FD FILE HAS BEEN RECEIVED' USER(USR54) NOW'"
>
> I also tried
>
>  SEND 'FD FILE HAS BEEN RECEIVED' USER(USR54) NOW
>
> but all the time i get error
>
>
>
> On Sun, May 13, 2018 at 8:57 PM, Mike Beer <m...@beer.at> wrote:
>
> > Hi,
> > You have an uneven number of " and ' in your command.
> > " or ' have to be in pairs. They can be nested, if necessary.
> >
> > Best regards
> > Mike
> >
> > -----Ursprüngliche Nachricht-----
> > Von: IBM Mainframe Discussion List <IBM-MAIN@LISTSERV.UA.EDU> Im
> > Auftrag von venkat kulkarni
> > Gesendet: 13 May, 2018 19:07
> > An: IBM-MAIN@LISTSERV.UA.EDU
> > Betreff: Re: Netview Submit JCL
> >
> > Hello Lucas,
> >
> > Your solution worked for me
> >
> > "SUBMIT 'USR1.REXX.CNTL(REXXJCL)'" .
> >
> > Now, I am trying to issue tso send command using this rexx  as below
> > using netview but i am getting below errror
> >
> >
> > /*  REXX     */
> >
> >  ADDRESS TSO
> >
> >  SAY 'HELLO WORLD!'
> >
> >  "SEND ''FD FILE HAS BEEN RECEIVED' USER(USR54) NOW'"
> >
> >
> >
> > Error
> >
> > EF404I USR54 LC - ENDED - TIME=14.29.07
> >
> > HELLO WORLD!
> >
> >      4 *-* "SEND ''FDI FILE HAS BEEN RECEIVED' USER( USR54 )
> >
> >        +++ RC(-3) +++
> >
> >
> >
> > I am unable to find correct syntax for this. I didnt find anything in
> > manual . Can you please help.
> >
> >
> >
> > On Sat, May 12, 2018 at 7:14 PM, Lucas Rosalen
> > <rosalen.lu...@gmail.com>
> > wrote:
> >
> > > Try changing FDIREXX script to the following:
> > >
> > > /* REXX */
> > >
> > > "SUBMIT 'USR1.REXX.CNTL(REXXJCL)'"
> > >
> > >
> > > ------------------------------------------------------------
> > > -------------------------------------------------------------------
> > > *Lucas Rosalen*
> > > rosalen.lu...@gmail.com / lucas.rosal...@ibm.com
> > > http://br.linkedin.com/in/lrosalen
> > >
> > >
> > > 2018-05-12 12:57 GMT-03:00 Steve Horein <steve.hor...@gmail.com>:
> > >
> > > > SUBMIT is a native NetView command, and you don't need (or want)
> > > > to use ADDRESS TSO.
> > > > https://www.ibm.com/support/knowledgecenter/SSZJDU_6.2.1/
> > > > com.ibm.itnetviewforzos.doc_6.2.1/dqc_submit.htm
> > > >
> > > > Specifics to NetView Rexx can be found here:
> > > > https://www.ibm.com/support/knowledgecenter/SSZJDU_6.2.1/
> > > > com.ibm.itnetviewforzos.doc_6.2.1/dqgmst.htm
> > > >
> > > >
> > > > Specifics to NetView Automation can be found here:
> > > > https://www.ibm.com/support/knowledgecenter/SSZJDU_6.2.1/
> > > > com.ibm.itnetviewforzos.doc_6.2.1/dqamst.htm
> > > >
> > > >
> > > > On Sat, May 12, 2018 at 9:46 AM, venkat kulkarni <
> > > > venkatkulkarn...@gmail.com
> > > > > wrote:
> > > >
> > > > > Hello Group,
> > > > >
> > > > > We have requirement to trigger one Job upon receiving one msg id
> > > > > like below in
> > > > >
> > > > >
> > > > > netview automation table.
> > > > >
> > > > >
> > > > > IF MSGID = 'IEF404I'  THEN
> > > > >
> > > > >      EXEC(CMD('FDIREXX')) NETLOG(Y) SYSLOG(Y);
> > > > >
> > > > >
> > > > > in CNMCLST, we have FDIREXX member as below.
> > > > >
> > > > > sssssssssssssssssssssssssssssssssssssssssssssss
> > > > >
> > > > > BROWSE    NETVIEW.CNMCLST(FDIREXX) - 01.08
> > > > >
> > > > > ********************************* Top of Data **
> > > > >
> > > > > /*  REXX     */
> > > > >
> > > > >  ADDRESS TSO
> > > > >
> > > > >  SUBMIT 'USR1.REXX.CNTL(REXXJCL)'
> > > > >
> > > > > ******************************** Bottom of Data
> > > > >
> > > > > On this event trigger,I am getting below error message in
> > > > > netview log
> > > > >
> > > > >
> > > > > 13:35:50 - CNM493I DSITBL01 : #0000241 : FDIREXX
> > > > >
> > > > > 13:35:50 E IEF404I USR1LC - ENDED - TIME=13.35.50
> > > > >
> > > > > 13:35:50 C      3 *-* SUBMIT 'USR1.REXX.CNTL(REXXJCL)'
> > > > >
> > > > > 13:35:50 C        +++ RC(-3) +++
> > > > >
> > > > > 13:35:57 C BR NETLOGA
> > > > >
> > > > >
> > > > > and JCL as below.
> > > > >
> > > > >   USR1.REXX.CNTL(REXXJCL) - 01.04
> > > > >
> > > > > ***************************** Top of Data **********
> > > > >
> > > > > //USRSYS JOB (660),VENKAT,CLASS=A,NOTIFY=&SYSUID
> > > > >
> > > > > //STEP010  EXEC PGM=IKJEFT01,REGION=0M
> > > > >
> > > > > //SYSEXEC  DD DSN=USR1.REXX.CNTL,DISP=SHR
> > > > >
> > > > > //SYSTSPRT DD SYSOUT=*
> > > > >
> > > > > //SYSTSIN  DD *
> > > > >
> > > > >  %SAMPLE
> > > > >
> > > > >
> > > > > and rexx as below
> > > > >
> > > > >  USR1.REXX.CNTL(SAMPLE) - 01.01
> > > > >
> > > > > ***************************** Top of Dat
> > > > >
> > > > > /*  REXX     */
> > > > >
> > > > >  SAY 'HELLO WORLD!'
> > > > >
> > > > > **************************** Bottom of D
> > > > >
> > > > >
> > > > > I am not sure, where I made any mistake in this process.
> > > > >
> > > > > Can you please help.
> > > > >
> > > > > ----------------------------------------------------------------
> > > > > --
> > > > > ---- For IBM-MAIN subscribe / signoff / archive access
> > > > > instructions, send email to lists...@listserv.ua.edu with the
> > > > > message: INFO IBM-MAIN
> > > > >
> > > >
> > > > ------------------------------------------------------------------
> > > > --
> > > > -- For IBM-MAIN subscribe / signoff / archive access instructions,
> > > > send email to lists...@listserv.ua.edu with the message: INFO
> > > > IBM-MAIN
> > > >
> > >
> > > --------------------------------------------------------------------
> > > -- For IBM-MAIN subscribe / signoff / archive access instructions,
> > > send email to lists...@listserv.ua.edu with the message: INFO
> > > IBM-MAIN
> > >
> >
> > ----------------------------------------------------------------------
> > For IBM-MAIN subscribe / signoff / archive access instructions, send
> > email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
> >
> > ----------------------------------------------------------------------
> > For IBM-MAIN subscribe / signoff / archive access instructions, send
> > email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
> >
>
> ----------------------------------------------------------------------
> For IBM-MAIN subscribe / signoff / archive access instructions, send email
> to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> The information transmitted is intended only for the person or entity to
> which it is addressed
> and may contain CONFIDENTIAL material.  If you receive this
> material/information in error,
> please contact the sender and delete or destroy the material/information.
>
> Humana Inc. and its subsidiaries comply with applicable Federal civil
> rights laws and
> do not discriminate on the basis of race, color, national origin, age,
> disability or
> sex. Humana Inc. and its subsidiaries do not exclude people or treat them
> differently
> because of race, color, national origin, age, disability or sex.
>
> English: ATTENTION: If you do not speak English, language assistance
> services, free
> of charge, are available to you. Call 1‐877‐320‐1235 (TTY: 711).
>
> Español (Spanish): ATENCIÓN: Si habla español, tiene a su disposición
> servicios
> gratuitos de asistencia lingüística. Llame al 1‐877‐320‐1235 (TTY: 711).
>
> 繁體中文(Chinese):注意:如果您使用繁體中文,您可以免費獲得語言援助
> 服務。請致電 1‐877‐320‐1235 (TTY: 711)。
>
> Kreyòl Ayisyen (Haitian Creole): ATANSION: Si w pale Kreyòl Ayisyen, gen
> sèvis èd
> pou lang ki disponib gratis pou ou. Rele 1‐877‐320‐1235 (TTY: 711).
>
> Polski (Polish): UWAGA: Jeżeli mówisz po polsku, możesz skorzystać z
> bezpłatnej
> pomocy językowej. Zadzwoń pod numer 1‐877‐320‐1235 (TTY: 711).
>
> 한국어 (Korean): 주의: 한국어를 사용하시는 경우, 언어 지원 서비스를 무료로
> 이용하실 수 있습니다. 1‐877‐320‐1235 (TTY: 711)번으로 전화해 주십시오.
>
>
> ----------------------------------------------------------------------
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Reply via email to