Command in Solaris 10 to exlude more than one directory while creatinga tarfile

Hi,
I am using solaris 10.Could anyone please help me on command to create a tar file by excluding more than one directory.I have tried below command but it did not work.

 
tar -pcvf orderm_setup.tar . --exclude=/orderm/common/7.0/logs001

Advance thanks for your reply.

GNU tar is likely already installed:

/usr/sfw/gtar -pcvf orderm_setup.tar . --exclude=/orderm/common/7.0/logs001
/usr/sfw/bin/gtar -pcvf orderm_setup.tar . --exclude=./logs001

Or

echo ./logs001 > exclude_file
tar pcvfX orderm_setup.tar exclude_file .