diff --git a/modules/org.openbravo.client.application/src/org/openbravo/client/application/example/ExecuteActionHandler.java b/modules/org.openbravo.client.application/src/org/openbravo/client/application/example/ExecuteActionHandler.java
new file mode 100644
--- /dev/null
+++ b/modules/org.openbravo.client.application/src/org/openbravo/client/application/example/ExecuteActionHandler.java
@@ -0,0 +1,48 @@
+/*
+ *************************************************************************
+ * The contents of this file are subject to the Openbravo  Public  License
+ * Version  1.1  (the  "License"),  being   the  Mozilla   Public  License
+ * Version 1.1  with a permitted attribution clause; you may not  use this
+ * file except in compliance with the License. You  may  obtain  a copy of
+ * the License at http://www.openbravo.com/legal/license.html
+ * Software distributed under the License  is  distributed  on  an "AS IS"
+ * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
+ * License for the specific  language  governing  rights  and  limitations
+ * under the License.
+ * The Original Code is Openbravo ERP.
+ * The Initial Developer of the Original Code is Openbravo SLU
+ * All portions are Copyright (C) 2011 Openbravo SLU
+ * All Rights Reserved. 
+ * Contributor(s):  ______________________________________.
+ ************************************************************************
+ */
+package org.openbravo.client.application.example;
+
+import java.util.Map;
+
+import javax.enterprise.context.ApplicationScoped;
+
+import org.codehaus.jettison.json.JSONObject;
+import org.openbravo.client.kernel.BaseActionHandler;
+
+/**
+ * @author iperdomo
+ * 
+ */
+@ApplicationScoped
+public class ExecuteActionHandler extends BaseActionHandler {
+
+  @Override
+  protected JSONObject execute(Map<String, Object> parameters, String content) {
+    JSONObject o = new JSONObject();
+    try {
+      o.put("ex1",
+          "(function(){var v = isc.ask('Agree?', function(v){if(v){alert('hello world')}});}())");
+    } catch (Exception e) {
+      e.printStackTrace();
+    }
+
+    return o;
+  }
+
+}
