Hola Gagan,
Anteriormente, configuré el EV CPIC_MAX_CONV en 500 en la línea de comandos. Sin embargo, al reiniciar el sistema, el valor se pierde.
Luego, configuré el EV en los archivos sapenv_hostname.sh/csh. Esto generó algún conflicto en el usuario sidadm.
La nota de SAP dice que debo configurar el EV, pero no indica dónde.
Gracias por tu ayuda.
Saludos cordiales,
Adjunto los contenidos de los archivos
.sapenv_sappdv.csh
-
@(#) $Id: //bc/701-1_REL/src/ins/SAPINST/impl/tpls/ind/ind/SAPENV.CSH#1 $ SAP
-
Entorno SAP R/3 - por favor no editar
setenv SAPSYSTEMNAME PDV
setenv DIR_LIBRARY /usr/sap/PDV/SYS/exe/run
setenv CPIC_MAX_CONV 500
foreach d ( /usr/sap/PDV/SYS/exe/run $HOME . )
set i=0
foreach p ( $path )
if ( "$p" == "$d" ) then
set i=1
break
endif
end
.........
.sapenv_sappdv.sh
-
@(#) $Id: //bc/701-1_REL/src/ins/SAPINST/impl/tpls/ind/ind/SAPENV.SH#1 $ SAP
-
Entorno SAP R/3 - por favor no editar
SAPSYSTEMNAME=PDV; export SAPSYSTEMNAME
DIR_LIBRARY=/usr/sap/PDV/SYS/exe/run; export DIR_LIBRARY
CPIC_MAX_CONV=500; export CPIC_MAX_CONV
for d in /usr/sap/PDV/SYS/exe/run $HOME .; do
i=0
for p in `echo $PATH | sed 's/:/ /g'`; do
..........