DBA Data[Home] [Help]

APPS.JTF_TERR_USGS_BIUD dependencies on FND_MSG_PUB

Line 11: --Following variables are used to replace inputs to FND_MSG_PUB.Add_Exc_Msg

7: terr_id NUMBER;
8: Trigger_Mode varchar2(20);
9: source_id NUMBER;
10:
11: --Following variables are used to replace inputs to FND_MSG_PUB.Add_Exc_Msg
12: lo_tr_name varchar2(25):='JTF_TERR_USGS_BIUD';
13: lo_message varchar2(50):='Others exception inside TERR trigger: ';
14:
15: BEGIN

Line 37: FND_MSG_PUB.Add_Exc_Msg(lo_tr_name, lo_message || sqlerrm);

33: ,Trigger_Mode);
34:
35: EXCEPTION
36: when others then
37: FND_MSG_PUB.Add_Exc_Msg(lo_tr_name, lo_message || sqlerrm);
38: END JTF_TERR_USGS_BIUD;