Hi !
I am using temporary tables to create a functionality based on Item Ledger entry Table. In some place I use DELETEALL on the temporary table.The problem is that a couple of times item ledger entry was totally deleted. I suspect that the problem comes from temporary table. (I assume that because I have another functionality that uses temp Tables and also there I lose my records from time to time.) Please if anyone knows anything that may occur by the use of Temporary table please inform me [-o< ... Thank you very much ! ](*,)
0
Comments
Find out where delete of Item Ledger entries occur.
There is probably one occasion where it is not temporary.
I've neve experienced problems useing temporary tables.
If you don;t trust it, you can make a copy of the 32 table and use this instead of the 32 table.
RIS Plus, LLC
Make sure, that you don't pass temporary record to a function with non-temporary parameter. In that case, if you call DELETEALL for this parameter within function, you will delete actual data from table.
This only works if you use the VAR option. Then the temp-property is inherited. If you use VAR you don;t have to make the parameter TEMP.
-a
Also very handy is the option to use tables outside the license range as a temporary record variable. It's just one way to store values in memory.
RIS Plus, LLC
Nothing.
At least, it does not make sense to do it. :?