Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

migration to 8.0 issue

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I am doing migration process from 5.0 to 8.0 on windows .
I got a weired problem that the data file worked fine with the 5.0 version. But when the same file I run through 8.0 got an "input contains invalid data" error.
--------------------------------------
The typetree properties are :
item subclass: number
interpret as : character
presentation : Decimal
size Min: 0, Max = empty
Seperators: YES
Format: ####[.##]
fraction syntax: literal
value: "."
Sign= Yes
value: leading-
---------------------------
I checked the trace file attached the results out of trace: only the record with the following value casuing issue.

(Level 2: Offset 41343, len 17, comp 9 of 38, #1, DI 000002A0:)
Data at offset 41343 ('-000000000000000...') failed item presentation test for TYPE
X'0011' (ACCTBAL DecimalField EquityMTM CP216MTM).

(Level 2: Offset 41343, len 17, comp 9 of 38, #1, DI 000002A0:)
Data at offset 41343 ('-000000000000000') is INVALID data of TYPE
X'0011' (ACCTBAL DecimalField EquityMTM CP216MTM).


 
I found the solution for the Tricky issue.

In the 5.0 version type tree does have empty value at the "sign/value/if Number is 0" .
when you migrate this typetree to the 8.0 "sign/value/if Number is 0" defaults to "+" sign.
So,when you have "-0" in the input map get failed with the "input invalid " error.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top