Hi necmigocek,
Did you mean by calling validate / modified-like
methods of a specific field in form datasource?
I tried this method on Axapta SP3 and worked well.
public boolean validate()
{
boolean ret;
ret = super();
info("X");
return ret;
}
void clicked()
{
FormDataObject myField;
super();
myField =
SalesTable_ds.object(fieldNum(SalesTable,CustAccount));
myField.validate();
}
Remember to use FormDataObject variable as pointer
holder, if didn't then "X" won't be shown in infolog.
(i.e. SalesTable_ds.object(...).validate(); will call
validateField)
Regards,
Sonny Wibawa Adi, MBSCP, MCAD.NET, MCSD.NET, MCP
--- necmigocek <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
__________________________________
Discover Yahoo!
Stay in touch with email, IM, photo sharing and more. Check it out!
http://discover.yahoo.com/stayintouch.html
---- LSpots keywords ?> ---- HM ADS ?>
YAHOO! GROUPS LINKS
- Visit your group "development-axapta" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

