Baan_James_Baan
14th September 2001, 22:01
We have users in non-finance groups that we want to give access to the blocking of invoices in tfacp200 but we don't want to allow them to modify all records. Also, we don't want to use DB level authorizations. So, I am attempting to create a session that will allow them to modify just the records in tfacp200 where bloc is not null, by using skip.io in the main.table section of my code. It works great except the tfacp200 table has 530K+ records in it so if you hit the first or last button it can take 5 minuts + to get a response.
Is there a way to speed this process up?
Right now the code looks like this:
main.table.io:
after.read:
get.blck.desc()
if (isspace(tfacp200.bloc)) then
skip.io("")
endif
I would like to be able to create a session similar to tfacp2532m000 (display registered invoices) except as a maintain session and I thought about copying the code and modifying it (but we do not have source).
Is there a way to speed this process up?
Right now the code looks like this:
main.table.io:
after.read:
get.blck.desc()
if (isspace(tfacp200.bloc)) then
skip.io("")
endif
I would like to be able to create a session similar to tfacp2532m000 (display registered invoices) except as a maintain session and I thought about copying the code and modifying it (but we do not have source).