cancel
Showing results for 
Search instead for 
Did you mean: 

SAP Profile parameters from command line

jay_b2
Participant
0 Kudos

Is there any way for me to find the active value of SAP profile parameters from command line. Say, if a parameter is not set up in instance profile and the default kernel value is being used.

I know of sappfpar but that is not displaying the parameters not setup in the instance profile.

Thanks,

Accepted Solutions (0)

Answers (3)

Answers (3)

sappfpar <Parameter Name> pf=<name of Instance profile>

Example 1)

su - sidadm

sappfpar FN_AUDIT pf=/sapmnt/SID/profile/SID_DVEBMGS00_hostname

Example 2)

#C-shell
su - sidadm
setenv tmp_var `sappfpar FN_AUDIT pf=/sapmnt/SID/profile/SID_DVEBMGS00_hostname`
echo $tmp_var

Example 3)

#from root<br>sudo su - sidadm -c "sappfpar FN_AUDIT pf=/sapmnt/SID/profile/SID_DVEBMGS00_hostname"

Example 4)

#Bash shell
#from root
export tmp_var=`sudo su - sidadm -c "sappfpar FN_AUDIT" pf=/sapmnt/SID/profile/SID_DVEBMGS00_hostname`
echo $tmp_var
Former Member
0 Kudos

Hi,

Execute report RSPARAM. It will show you those parameter values.

Thanks,

Siva Kumar

jay_b2
Participant
0 Kudos

How would we do that from command line. Its a standalone dispatcher that does not have sap web as running.

Former Member
0 Kudos

Try to find out the table name which stores RZ11 profile parameter values.

jay_b2
Participant
0 Kudos

I am not sure if that helps...

I have a webdispatcher (standalone) which does not have a database and uses kernel default values for some parameters.