Errors in XML Call to NER

Zaki Ahmed

Well Known Member
We are getting following errors when we do XML call to NER. These errors just started coming up after we modified NER to do some additional logic. Attached is the NER and JDE Log file. In NER, the new logic we just added start from line 88-165. Everything was working fine before this change on XML Side. Also, this NER works find if called from within JDE application. The issue is with just XML call object.

JDE.lOG

14516 Tue Feb 14 15:01:31 2012 ipcpub.c3135
process 14516 <jdenet_k> registered in entry 24

14516 Tue Feb 14 15:01:31 2012 jdekdisp.c973
INITIALIZING CALL OBJECT KERNEL

14516 Tue Feb 14 15:01:35 2012 ipcpub.c4141
ipcSawImpRegisterBSFNV1: Error: BSFN table full for index 24

14516 Tue Feb 14 15:01:35 2012 ipcpub.c4144
: registering <libCCORE.so/UNKNOWN/GetAuditInfo> (32) size 1007 limit 1024

14516 Tue Feb 14 15:01:35 2012 ipcpub.c4141
ipcSawImpRegisterBSFNV1: Error: BSFN table full for index 24

14516 Tue Feb 14 15:01:35 2012 ipcpub.c4144
: registering <libPLCUSTOM.so/N5541025/AddtlXRefForF4104> (41) size 1007 limit 1024

14516 Tue Feb 14 15:01:35 2012 ipcpub.c4141
ipcSawImpRegisterBSFNV1: Error: BSFN table full for index 24

14516 Tue Feb 14 15:01:35 2012 ipcpub.c4144
: registering <libCCORE.so/UNKNOWN/GetAuditInfo> (32) size 1007 limit 1024

14516 Tue Feb 14 15:01:35 2012 ipcpub.c4141
ipcSawImpRegisterBSFNV1: Error: BSFN table full for index 24


XML Call:

callMethod app="XML" name="AddtlXRefForF4104" runOnError="yes">
<returnCode code="0" />
- <params>
<param name="mnAddressNumber">00029999</param>
<param name="szTypeCrossReferTypeC">D</param>
<param name="mnIdentifierShortItem">907800</param>
<param name="jdDateExpiredJulian1">131365</param>
<param name="jdDateEffectiveJulian1">100001</param>
<param name="szCostCenter">440</param>
<param name="szItemNoCustomerVendor">008-273-ELC-2M-31086-060</param>
<param name="szDescriptionLine1">COORDINATE DRAWING</param>
<param name="szDescriptionLine2">@3-04</param>
<param name="szSearchTextCompressed" />
<param name="szIdentifier2ndItem">31086-060ADW-524</param>
<param name="szIdentifier3rdItem">31086-060ADW-524</param>
</params>
</callMethod>


Thanks,

XE B7333
SP23
Oracle 9
Sun Solaris
 

Attachments

  • 174966-N5541025.txt
    33.8 KB · Views: 114
It can be trivial but did you tried to submit the same request without the "@" char?

Are you able to submit the same transaction with the same data on JDE app?

Can you provide a jdedeb.log?
 
Hello
We had the same error message in a NER called by an UBE :
ipcSawImpRegisterBSFNV1: Error: BSFN table full for index XX

The NER was a recursive BSFN, and in the case of the error, the recursive process had no end : it was an infinite loop.
At the 100th BSFN level call, the process falls in error with the message above
The resolution was to correct the algorithm to have a correct end condition for recursive process.
 
XML Reading Issue from F70XMLZ1 table

Hi,
I am unable to read the tag of XML string if size of the BLOB (where I store XML String) is above 10KB.
Infact it gives error unable to create idDoc.

Shall you help me on this?

I followed following steps:
1. Uploaded XML files (Strings ) to F70XMLZ1 table BLOB field, using custom BSFN (used XML API)
2. Upload is sucessful..... But at the time of reading this BLOB fields I am getting above mentioned issue.

Thank you
Shrikanth Hegde
 
Back
Top