export shell variables into SPS variables

I am looking for a way to assign shell variables which are defined in the "exec native" step, as a N1 variable.I will use this variable to generate a more userfriendly output in the "raise message" Has anyone an idea?Thanx
[250 byte] By [michPa] at [2007-11-27 9:47:22]
# 1

Do you mean that you want to assign a value from within a shell variable to an N1 variable? If so, then you can use the <assignOutput> element in execNative. Here's an example:

...

<varList>

<var name="var1" default="not assigned"/>

</varList>

<simpleSteps>

<execNative>

<assignOutput varName="var1"/>

<exec cmd="echo">

<arg value="${my_shell_var}"/>

</exec>

</execNative>

<raise message=":[var1]"/>

</simpleSteps>

...

colinduplantisa at 2007-7-12 23:59:32 > top of Java-index,Administration Tools,N1 Service Provisioning System...