VishalMistry
6th January 2015, 08:02
Hello everyone,

I am trying to block display of record for item groups. for that I have created user exit dal (tcmcs023ue) and i am returning false boolean value in before open.object.set(). still the record is being displayed.

can you help what could be the problem ?

Vishal

sachinbaan
6th January 2015, 08:23
Hi vishal,

UE executes only before or after insert or delete operation on table.

VishalMistry
6th January 2015, 10:24
Hello,

thanks for your update.I suspect you don't understand my problem. Here the problem is creating the user exit DAL

Vishal

JaapJD
6th January 2015, 12:06
Sachin gave the correct answer. You can only add functionality in the user exit DLL for insert, update and delete.

If you want to skip records in the DAL itself, you should do the in the after.get.object() hook.