DBA Data[Home] [Help]

APPS.CN_MESSAGE_PKG dependencies on FND_MESSAGE

Line 95: fnd_message.set_name (Appl_Short_Name,Message_Name);

91:
92: -- Always set the passed message in case we want to fail processing
93: -- and issue the message in the form.
94:
95: fnd_message.set_name (Appl_Short_Name,Message_Name);
96:
97: -- protecting unused tokens prevents display of an "=" character in the
98: -- message
99:

Line 101: fnd_message.set_token(token_name1, token_value1);

97: -- protecting unused tokens prevents display of an "=" character in the
98: -- message
99:
100: if token_name1 is not null then
101: fnd_message.set_token(token_name1, token_value1);
102: end if;
103: if token_name2 is not null then
104: fnd_message.set_token(token_name2, token_value2);
105: end if;

Line 104: fnd_message.set_token(token_name2, token_value2);

100: if token_name1 is not null then
101: fnd_message.set_token(token_name1, token_value1);
102: end if;
103: if token_name2 is not null then
104: fnd_message.set_token(token_name2, token_value2);
105: end if;
106: if token_name3 is not null then
107: fnd_message.set_token(token_name3, token_value3);
108: end if;

Line 107: fnd_message.set_token(token_name3, token_value3);

103: if token_name2 is not null then
104: fnd_message.set_token(token_name2, token_value2);
105: end if;
106: if token_name3 is not null then
107: fnd_message.set_token(token_name3, token_value3);
108: end if;
109: if token_name4 is not null then
110: fnd_message.set_token(token_name4, token_value4);
111: end if;

Line 110: fnd_message.set_token(token_name4, token_value4);

106: if token_name3 is not null then
107: fnd_message.set_token(token_name3, token_value3);
108: end if;
109: if token_name4 is not null then
110: fnd_message.set_token(token_name4, token_value4);
111: end if;
112:
113: /* Set_Name ( Appl_Short_Name
114: ,Message_Name);