Personalization on Post Journals Form in GL.
n Post Journals form in GL. We have made Personalization to have Batch Name, Batch ID and Journal Voucher Created User
Trigger Event: WHEN-NEW-ITEM-INSTANCE
Trigger Object : BATCHES.DEFAULT_PERIOD_NAME
Condition: :BATCHES.STATUS <> 'P'
Seq: 1
Type: Message
Message Type: Hint
Message text
=(select distinct a.batch_name||' Creator = '||c.user_name||' Batch ID = '||a.je_batch_id
from GL_JE_HEADERS_V a,
fnd_user c where c.user_id = a.created_by and a.JE_BATCH_ID = :BATCHES.JE_BATCH_ID)
------------------
is it safe to do Personalization here like above