display int64 getNumOfAttachments()
{
DocuRef docuRef;
select count(RecId)
from docuRef
where docuRef.RefCompanyId == this.DataAreaId
&& docuRef.RefTableId == this.tableId
&& docuRef.RefRecId == this.RecId;
return docuRef.RecId;
}
display int64 getNumOfAttachments()
{
DocuRef docuRef;
select count(RecId)
from docuRef
where docuRef.RefCompanyId == this.DataAreaId
&& docuRef.RefTableId == this.tableId
&& docuRef.RefRecId == this.RecId;
return docuRef.RecId;
}
Comments
Post a Comment