Saydeelol
Member
I have a custom application that I've written and all of the table IO works flawlessly on the FAT client web environment, but when deployed to the Enterprise server (in test) none of the inserts or updates work. Here's one example of the code. I've never encountered something like this in the 70+ projects that I've worked on, but I imagine I'm just missing something simple. Thank you for any leads!
VA evt_ValueOf0_ROQI = 0
If FC Quantity on Hand is greater than or equal to <Zero>
F554312.Fetch Single
If SV File_IO_Status is equal to CO SUCCESS
F554312.Update
Else
F554312.Insert
End If
If SV File_IO_Status is equal to CO SUCCESS
Get Audit Information
VA evt_ValueOfADJ_NSTA = "ADJ"
VA evt_QtyOnHandPrimary_PQOH = [FC Quantity on Hand]-[FI mnQtyOnHandPrimaryUn]
Get Next Unique Key ID
F5543121.Insert
FI mnQtyOnHandPrimaryUn = FC Quantity on Hand
End If
End If
VA evt_ValueOf0_ROQI = 0
If FC Quantity on Hand is greater than or equal to <Zero>
F554312.Fetch Single
If SV File_IO_Status is equal to CO SUCCESS
F554312.Update
Else
F554312.Insert
End If
If SV File_IO_Status is equal to CO SUCCESS
Get Audit Information
VA evt_ValueOfADJ_NSTA = "ADJ"
VA evt_QtyOnHandPrimary_PQOH = [FC Quantity on Hand]-[FI mnQtyOnHandPrimaryUn]
Get Next Unique Key ID
F5543121.Insert
FI mnQtyOnHandPrimaryUn = FC Quantity on Hand
End If
End If