cancel
Showing results for 
Search instead for 
Did you mean: 

How to... fetch SeeBurger Mapping Variables from a BPM

Former Member
0 Kudos

Hi,

I am currently having a problem in fetching some values on the Seeburger Mapping Variables from an BPM. What I currently do is the normal way of fetching the value using an UDF in my message mapping: below is the sample code that I did on my function:

import seeburger.functions.permstore.impl.;com.seeburger.functions.permstore.;

......

try {

VariableBeanServlet vbs;

vbs = (VariableBeanServlet)VariableFactory.getVariableInstance(VariableFactory.PROPERTY_CLASSNAME_DEFAULT);

return vbs.getStringVariable(a);

}catch(PermstoreException e){

return "";

}

did i missed something on my code?

best regards,

mike

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi mike,

as you want to read values: Are values written! When and where?

Regards Mario

Former Member
0 Kudos

The values are written on the Seeburger --> MappingVariables under Variables section. These has been predefined by me beforehand. I've checked the code without passing thru the BPM and it works but when it was used with the BPM the values doesn't turn up..

best regards,

Mike