Oracle Apps Shell Host Concurrent program can accept more than 9 parameters but when passed 10,11 and so on to unix variable as $10 or $11 it only gets the $1 parameter which is apps username and password.
To use $10, $11 parmaters it has to be assigned as ${10}, ${11},,,
Eg: Assign 10th or 11th parameter to unix variable in shell script
tenthparam=${10}
eleventhparam=${11}
thanks
ReplyDelete