DBA Data[Home] [Help]

APPS.OE_QUERY dependencies on FND_MESSAGE

Line 1796: nvl(substr(fnd_message.get_string('OE','OE_MSG_CANCELLED'),1,30),

1792: where result_id = p_id;
1793: begin
1794: if p_cancelled_flag = 'Y' then
1795: p_entry_status_name :=
1796: nvl(substr(fnd_message.get_string('OE','OE_MSG_CANCELLED'),1,30),
1797: 'OE_MSG_CANCELLED');
1798: elsif nvl(p_open_flag,'N') = 'N' then
1799: p_entry_status_name :=
1800: nvl(substr(fnd_message.get_string('OE','OE_MSG_CLOSED'),1,30),

Line 1800: nvl(substr(fnd_message.get_string('OE','OE_MSG_CLOSED'),1,30),

1796: nvl(substr(fnd_message.get_string('OE','OE_MSG_CANCELLED'),1,30),
1797: 'OE_MSG_CANCELLED');
1798: elsif nvl(p_open_flag,'N') = 'N' then
1799: p_entry_status_name :=
1800: nvl(substr(fnd_message.get_string('OE','OE_MSG_CLOSED'),1,30),
1801: 'OE_MSG_CLOSED');
1802: else
1803: open c_entry_status(p_s1_id);
1804: fetch c_entry_status into p_entry_status_name;