Hola Nibu,
Aquí tienes el código que estoy utilizando...
BigDecimal imp = new BigDecimal (
wdContext.currentContextElement().getImporte());
wdThis.wdGetVR_ControllerController.executeRFC(imp);
Luego, en VR_Controller, he creado un método llamado executeRFC de la siguiente manera...
public void executeRFC (java.math.BigDecimal importe)
{
try {
wdContext.currentZbapi_createVR_InputElement().modelObject.setImp(importe);
wdContext.currentZbapi_createVR_InputElement().modelObject.execute(),
}
catch (Exception e) {
}
Gracias.
Jesús.