Hi, I have written an applicaion in FoxPro (migrated over 20 years to VFP). I have been inserting records into SBT (now Accpac) tables for years without problems, but now I have problems with payment terms. The AccPac table ARPTRMXX table has a ptrules memo field with the following:
LPARAMETERS p
bject
WITH p
bject
AddProperty(p
bject, "SC_PTMETHOD", "D")
AddProperty(p
bject, "SL_DISCOUNT", .T.)
AddProperty(p
bject, "SN_DISCDAYS", 4)
AddProperty(p
bject, "SN_DISCMETHOD", 2)
AddProperty(p
bject, "SN_DISCOUNT", 2.000)
AddProperty(p
bject, "SN_MOVEDATES", 1)
AddProperty(p
bject, "SN_NETDAYS", 20)
ENDWITH
What I need to know is how much of this data is important for inserting invoice and detail records into AccPac, and how do I use this?
LPARAMETERS p
WITH p
AddProperty(p
AddProperty(p
AddProperty(p
AddProperty(p
AddProperty(p
AddProperty(p
AddProperty(p
ENDWITH
What I need to know is how much of this data is important for inserting invoice and detail records into AccPac, and how do I use this?