Wierd Linker error in BSFN build

chakri

Member
HI I am trying to make a replica of B4210670

Everything is fine but getting Linker error and Build completes with 11 errors.

Please help me to come out of this.

Here are the list of errors

B5510670.c
Replacing B5510670.obj
jdertdll.c
Creating library d:\yenuganke811\DV811\lib32\CCUSTOM.lib and object d:\yenuganke811\DV811\lib32\CCUSTOM.exp
sCCUSTOM.lib(B5510670.obj) : error LNK2019: unresolved external symbol _SetServerErrorsOnControlId@12 referenced in function _IB4210670_EditSOHeaderShipTo@12
sCCUSTOM.lib(B5510670.obj) : error LNK2019: unresolved external symbol _SalesOrderApplicationController@32 referenced in function _IB4210670_EditSOHeaderShipTo@12
sCCUSTOM.lib(B5510670.obj) : error LNK2019: unresolved external symbol _GetSalesOrderHeaderDefaults@24 referenced in function _IB4210670_GetSOHeaderDefaults@12
sCCUSTOM.lib(B5510670.obj) : error LNK2019: unresolved external symbol _GetSalesOrderHeaderBusinessData@36 referenced in function _IB4210670_RefreshSOHeader@12
sCCUSTOM.lib(B5510670.obj) : error LNK2019: unresolved external symbol _IsAuditLoggingEnabled@16 referenced in function _IB4210670_GetHeaderFlags@16
sCCUSTOM.lib(B5510670.obj) : error LNK2019: unresolved external symbol _DoesHeaderHaveAttachments@16 referenced in function _IB4210670_GetHeaderFlags@16
sCCUSTOM.lib(B5510670.obj) : error LNK2019: unresolved external symbol _GetSalesOrderHeaderCurrencyFlags@24 referenced in function _IB4210670_GetHeaderFlags@16
sCCUSTOM.lib(B5510670.obj) : error LNK2019: unresolved external symbol _IsHeaderViewSelectionRequired@16 referenced in function _IB4210670_GetHeaderFlags@16
sCCUSTOM.lib(B5510670.obj) : error LNK2019: unresolved external symbol _GetSalesOrderHeaderProcessStatus@16 referenced in function _IB4210670_GetHeaderFlags@16
sCCUSTOM.lib(B5510670.obj) : error LNK2019: unresolved external symbol _DoesOrderHaveLines@16 referenced in function _IB4210670_SetSOHeaderViewProperties@16
sCCUSTOM.lib(B5510670.obj) : error LNK2019: unresolved external symbol _GetSalesOrderControlData@20 referenced in function _IB4210670_SetSOHeaderViewProperties@16
d:\yenuganke811\DV811\bin32\CCUSTOM.dll : warning LNK4088: image being generated due to /FORCE option; image may not run

Adjusting DLL load addresses . . .


************Build Finished************

CCUSTOM.dll - 11 error(s), 1 warning(s): Build forced to complete with errors.



Kalyan
E1/8.11/Oracle/Citrix/Win 2003 :
 
Kalyan,

I don't have that source file (B4210670) in my release at home, but these errors are probably because the functions you've listed in your post (all the IB4210670_ functions) are NOT exported functions. In other words they are probably declared as static, meaning you can not call them from outside of the DLL they reside in.

If this is the case, you will have to copy the code for each them into your B55 source and probably should rename to IB5510670_.

Good luck
 
Back
Top