tdaly62
2nd October 2014, 00:06
I have a custom function, and when compiling, I'm receiving 'Unresolved reference to function 'get_nama'. I'm fairly new to Baan, so any help is appreciated.
Code snippet is below:
function read.main.table()
{
select adsls887.*
from adsls887
where adsls887._index1 inrange {:semno.f, :cplt.f, :icno.f, :stdt.f}
and {:semno.t, :cplt.t, :icno.t, :stdt.t}
order by adsls887._index1
selectdo
get_nama()
rprt_send()
endselect
}
function get.nama()
{
select tccom001.nama
from tccom001
where tccom001.emno inrange :semno.f and :semno.t
selectdo
selectempty
tccom001.nama = ""
endselect
}
Code snippet is below:
function read.main.table()
{
select adsls887.*
from adsls887
where adsls887._index1 inrange {:semno.f, :cplt.f, :icno.f, :stdt.f}
and {:semno.t, :cplt.t, :icno.t, :stdt.t}
order by adsls887._index1
selectdo
get_nama()
rprt_send()
endselect
}
function get.nama()
{
select tccom001.nama
from tccom001
where tccom001.emno inrange :semno.f and :semno.t
selectdo
selectempty
tccom001.nama = ""
endselect
}