Spool setting in unix environment for SAP


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Spool setting in unix environment for SAP
# 1  
Old 01-05-2011
Spool setting in unix environment for SAP

Hi All,

Please help me regarding this.

we have our SAP system with unix environment.

Spool setting in unix ,we are not able to cancel any unix spool from SIDADM because the spool user is nor SIDADM. for example :-
Any idea how to make the spool from OS level as SIDADM, Please suggest.

Spool Request User ID/owner date Server

nb18-5950 USERWMEHUB priority 0 Dec 10 00:03 from cpsapv24
nb18-5952 USERWMEHUB priority 0 Dec 10 00:03 from cpsapv10
nb18-5953 USERWMEHUB priority 0 Dec 10 00:03 from cpsapv21
nb18-5955 USERWMEHUB priority 0 Dec 10 00:03 from cpsapv25
nb18-5954 USERWMEHUB priority 0 Dec 10 00:03 from cpsapv29
nb18-5956 USERWMEHUB priority 0 Dec 10 00:03 from cpsapv21
nb18-5957 USERWMEHUB priority 0 Dec 10 00:03 from cpsapv30
nb18-5958 USERWMEHUB priority 0 Dec 10 00:03 from cpsapv25

thanks & regards,
Ravi
# 2  
Old 01-05-2011
I'm a bit confused. Is this the output from an lpstat command? If so, you would either need to be the submitting user or the superuser (usually root) to cancel the request (see man cancel or man qcanfor more information)

If it is something else, can you clarify what you are after?



I hope that this helps

Robin
Liverpool/Blackburn
UK
# 3  
Old 01-05-2011
Hi Robin,
Thanku very much for your quick response,
This is the output from an lpstat command ,we want SIDADM to be able to cancel the request of all users. we donot want superuser (root ), because we do not have this user id. we have only sidadm id.

but my question is how can we change these spool users to SIDADm like spool should generate by sidadm.

thanks & regards,
Ravi kumar
# 4  
Old 01-10-2011
Well, you could either have the user process to switch to sidadm to issue the print command, perhaps a simple script to be called, owned by sidadm and permissions rwsr-xr-x with a chmod 4755

Flip it the other way and you can make account sidadm privileged. You could install sudo from Sudo Main Page to grant you the privilege or, depending on your operating system, there is probably a way to make sidadm part of the print admin group. Have a read of the manual pages for the cancel command or qcan, or whatever command you wish to execute to cancel the requests.



I hope that this helps.


Robin
Liverpool/Blackburn
UK
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Red Hat

Setting up LAMP environment

I wish to setup LAMP environment. Amongst, I have successfully installed Linux 6.1. I am looking fwd to install - Apace Web Server, My Sql Database & PHP environment. Say if I look for MySql, could see downloadable available in rpm format. But this must be copied over to Linux machine. As... (2 Replies)
Discussion started by: videsh77
2 Replies

2. UNIX for Dummies Questions & Answers

Setting up environment variables

Hi all, This is my first post here. I need to set up a few environment variables with a shell script. Some are hard-coded, but some should come from other commands or as input from the user. How do I do that? For example, I need to export a variable as such: export DISPLAY=127.0.0.1:8.0 ... (2 Replies)
Discussion started by: exchequer598
2 Replies

3. UNIX for Dummies Questions & Answers

Setting Environment Variables

#!/bin/bash if ; then ASS1_DATA_DIR=./ echo $ASS1_DATA_DIR export ASS1_DATA_DIR echo "data dir" fi if ; then ASS1_OUTPUT_DIR=./ export ASS1_OUTPUT_DIR fi I want to create a new environment variable ASS1_DATA_DIR and ASS1_OUTPUT_DIR in bash and set them to the current... (4 Replies)
Discussion started by: bigubosu
4 Replies

4. UNIX for Dummies Questions & Answers

Setting up your environment

Hi I am new to Solaris and was just given my id and need to setup my environment, what do i need to do to run certain commands without putting in the complete path. How do I create my .profile, I do not see under my login? Any help would be greatly appreciated. (5 Replies)
Discussion started by: sa_ken
5 Replies

5. Shell Programming and Scripting

Problem setting environment...

Hi All I'm attempting to automate the process of setting the DISPLAY environment variable when logging on (sourcing the .cshrc). I have a mixture of linux and solaris servers and this comnand: who -m | awk '{ print $6}' | tr -d '()' seems to work on all the servers. I want... (2 Replies)
Discussion started by: huskie69
2 Replies

6. Programming

Setting Environment variable..!

Hi, I already have one CPP program which invokes the C program.And the C program contains whole function definitions..!This is a working program..I have to enable the logs in both CPP as well as in the C program ..!So I am reading the enviornmental variable log path from the CPP and doing the... (2 Replies)
Discussion started by: Kattoor
2 Replies

7. Shell Programming and Scripting

Setting up Environment Variables

Hi all, I am trying to set up some variables in a shell script. The variables contain values of various paths needed to run a java module. The problem is the variables dont seem to be setting at all. here is what i am trying to do : JAR_HOME=/home/was5/bdcms/scheduledjobs/lib export... (6 Replies)
Discussion started by: rpandey
6 Replies

8. UNIX for Dummies Questions & Answers

setting environment variables ???

Hello, I want to set some environment variables with this script: ip=$@ echo Remote Computer: $ip PERLDB_OPTS="CallKomodo=$ip:9000 RemotePort=$ip:9010 PrintRet=0" export PERLDB_OPTS PERL5LIB=/opt/komodo export PERL5LIB echo PERLDB_OPTS: $PERLDB_OPTS echo PERL5LIB: $PERL5LIB But it... (5 Replies)
Discussion started by: Gargamel
5 Replies
Login or Register to Ask a Question