cole_hng
10th July 2023, 12:24
Hi,
I had create function name abc in package = tc, module = mcs, function = 0001.
Example : ws.test.text = tcmcs.0001.abc("test")
and get below error when compile report
rcisli240500001( 662): Error: Unresolved reference to function 'tcmcs.0001.abc'.

Any one can help?

OmeLuuk
10th July 2023, 15:09
1) Are you familiar with the concept DLL?
2) A "function" in LN terms are a predecessor of a DLL and thus a SLL (Statically Linked Library). So when you want to use this (old style) function library (with all its drawbacks) you will have to use #include (see programmers manual) to include the function code compile time to your source.

cole_hng
11th July 2023, 07:35
Hi OmeLuuk,

can your share programmers manual for me?

mark_h
11th July 2023, 14:44
There is one attached to the board http://www.baanboard.com/programmers_manual_baanerp, but you can always go download it from infor.

cole_hng
12th July 2023, 04:17
Hi OmeLuuk and mark_h,

Thanks:)