Hi,
try this coding........
PHP Code:
<?php
if (!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
require_once('data/SugarBean.php');
require_once('include/entryPoint.php');
class save_class
{
function save_method(&$bean, $event, $arguments=null)
{
if ($event != 'after_save') return;
// Insert your custom logic between these comments
$sql = "insert into CVN_Details (CVNBookno, CVNno) values ('1','2')";
$result = $bean->db->query($sql,true);
or
$result = $GLOBALS['db']->query("insert into CVN_Details (CVNBookno, CVNno) values ('1','2')
", false, 'Failed to load user preferences');
// Insert your custom logic between these comments
}
}
?>
Bookmarks