Linux Platform - NDM Script - && Operator


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Linux Platform - NDM Script - && Operator
# 1  
Old 02-27-2013
Linux Platform - NDM Script - && Operator

Hi All,

I have a requirement where i need to NDM 3 files from LINUX to Mainframe system & trigger a job in mainframe once the 3 files are transmitted successfully.

I am getting an error message in the && operator (the code component where i am checking whether step 1/2/3 are completed).

Pls find the code below.

Quote:
STEP1 copy from (file=$FILE_PATH/$FILE1_DS pnode)
ckpt=no
to (file=$FILE1_MF
DCB=(RECFM=FB,LRECL=500,BLKSIZE=0,DSORG=PS)
DISP=(NEW) SPACE=(CYL,(000478,0000250,),RLSE,,) snode)
STEP2 copy from (file=$FILE_PATH/$FILE2_DS pnode)
ckpt=no
to (file=$FILE2_MF
DCB=(RECFM=FB,LRECL=500,BLKSIZE=0,DSORG=PS)
DISP=(NEW) SPACE=(CYL,(000478,0000250,),RLSE,,) snode)
STEP3 copy from (file=$FILE_PATH/$FILE3_DS pnode)
ckpt=no
to (file=$FILE3_MF
DCB=(RECFM=FB,LRECL=100,BLKSIZE=0,DSORG=PS)
DISP=(NEW) SPACE=(CYL,(000500,0000250,),RLSE,,) snode)
TEST if [[ STEP1 -eq 0 && STEP2 -eq 0 && STEP3 -eq 0 ]]; then
STEP4 run task (PGM=U7SVC) sysopts="'CA7=CA72;D=CA7TRIGT.WCCT.$WCC1SDAR.DUPTIN.ART'" snode
Error Message:

Quote:
XPAS001I Return Code: 8 Feedback: 0
Symbolic Not Found at "&&".
XPAS001I Return Code: 8 Feedback: 0
Symbolic Not Found at "&&".
XPAM001I Return Code: 8 Feedback: 0
Errors Parsing
Can somebody help me resolve this issue.

Thanks Much
Freddie
Can
# 2  
Old 02-27-2013
single quote the &&.
This User Gave Thanks to binlib For This Post:
# 3  
Old 03-01-2013
Hi Binlib,

The Single quotes didnt work either.

Quote:
TEST if (STEP1 eq 0) '&&' (STEP2 eq 0) '&&' (STEP3 eq 0) then
STEP4 run task (PGM=U7SVC) sysopts="'CA7=CA72;D=CA7TRIGT.abc.$abcd.DUP.ARE'" snode
Error Msg :
Quote:
STAR=20130301 00:11:13|CCOD=8|RECI=XPAS|RECC=CAEV|TZDI=-21600|MSGI=XPAS001I|MSGT=ndm_error_set(): rc=8 fdbk=0 msgid=XPAS001I stext= Symbolic not found.
Any other thoughts will be greatly appreciated.

Thanks - Freddie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Xalan & Xerces issues for Oracle Linux 6.6 & Solarisstudio12.3 C++ compiler for Linux

Hi Team, I am facing issue while using Xalan & Xerces for my application. Below are my environment details i am using :- Platform:- Oracle Linux 6.6 Compiler :- solarisstudio12.3 C++ compiler for Linux Below are the versions of Xalan & Xerces source code used to build the shared object... (0 Replies)
Discussion started by: agrachirag
0 Replies

2. Shell Programming and Scripting

SFTP Shell Script Get & Delete && Upload & Delete

Hi All, Do you have any sample script, - auto get file from SFTP remote server and delete file in remove server after downloaded. - only download specify filename - auto upload file from local to SFTP remote server and delete local folder file after uploaded - only upload specify filename ... (3 Replies)
Discussion started by: weesiong
3 Replies

3. UNIX for Dummies Questions & Answers

Magic numbers '&' operator problem

Hello everyone, on the man page of "magic(5)" There is explanation "&, to specify that the value from the file must have set all of the bits that are set in the specified value" . My question is that what is the difference between '&' and equal operator '=' ? I tested it with file... (6 Replies)
Discussion started by: segmentation
6 Replies

4. Shell Programming and Scripting

How to write If statement using && and operator in Unix

Hi What is the syntax for if statement using && and || operator? if && ] || here its giving me an error to this if statement any suggestion?? (2 Replies)
Discussion started by: Avi
2 Replies

5. Shell Programming and Scripting

Alternative to && operator

"Both cases have to be true for the expression to evaluate "true". is that not so. the following code does a read from a txt file, an then suppose to do the deletion ,but although the condition exists, its not performing the deletion && echo "\n\t Deleting printer ${prt} !!!" if !... (5 Replies)
Discussion started by: ggoliath
5 Replies

6. Shell Programming and Scripting

PHP read large string & split in multidimensional arrays & assign fieldnames & write into MYSQL

Hi, I hope the title does not scare people to look into this thread but it describes roughly what I'm trying to do. I need a solution in PHP. I'm a programming beginner, so it might be that the approach to solve this, might be easier to solve with an other approach of someone else, so if you... (0 Replies)
Discussion started by: lowmaster
0 Replies

7. UNIX for Dummies Questions & Answers

Problem with xterm & tcsh & sourcing a script in a single command

Hi friends, I have a script that sets the env variable path based on different conditions. Now the new path variable setting should not done in the same terminal or same shell. Only a new terminal or new shell should have the new path env variable set. I am able to do this only as follows: >cd... (1 Reply)
Discussion started by: sowmya005
1 Replies

8. Shell Programming and Scripting

multiple conditions in if using && operator

VARIABLE="project" if && ] then echo "VARIABLE is not empty" fi this is not working what is wrong in the syntax?? (2 Replies)
Discussion started by: codeman007
2 Replies

9. UNIX Desktop Questions & Answers

ATI && XFree86 (Linux)

Anyone who have any ideas how-to make X faster. I have a ATI Rage Mobility P/M AGP 2x card and I wanto get it fast, mostly for movie playback and so. Is there OpenGL and GLX support? regards Esaia (1 Reply)
Discussion started by: Esaia
1 Replies

10. UNIX Desktop Questions & Answers

what is the difference between Unix & linux, what are the advantages & disadvantages

ehe may i know what are the difference between Unix & Linux, and what are the advantages of having Unix as well as disadvantages of having Unix or if u dun mind i am dumb do pls tell me what are the advantages as well as the disadvantages of having linux as well. thanks (1 Reply)
Discussion started by: cybertechmkteo
1 Replies
Login or Register to Ask a Question