DBA Data[Home] [Help]

APPS.PQH_SAT_SHD dependencies on FND_MESSAGE

Line 337: fnd_message.set_name(8302,'PQH_INVALID_ATTRIBUTE');

333: --
334: open csr_attribute_id(p_column_name => p_attribute_column_name, p_table_id => l_table_route_id);
335: fetch csr_attribute_id into l_attribute_id;
336: if csr_attribute_id%notfound then
337: fnd_message.set_name(8302,'PQH_INVALID_ATTRIBUTE');
338: fnd_message.set_token('ATTRIBUTE_COLUMN_NAME',p_attribute_column_name);
339: fnd_message.raise_error;
340: end if;
341: close csr_attribute_id;

Line 338: fnd_message.set_token('ATTRIBUTE_COLUMN_NAME',p_attribute_column_name);

334: open csr_attribute_id(p_column_name => p_attribute_column_name, p_table_id => l_table_route_id);
335: fetch csr_attribute_id into l_attribute_id;
336: if csr_attribute_id%notfound then
337: fnd_message.set_name(8302,'PQH_INVALID_ATTRIBUTE');
338: fnd_message.set_token('ATTRIBUTE_COLUMN_NAME',p_attribute_column_name);
339: fnd_message.raise_error;
340: end if;
341: close csr_attribute_id;
342: --

Line 339: fnd_message.raise_error;

335: fetch csr_attribute_id into l_attribute_id;
336: if csr_attribute_id%notfound then
337: fnd_message.set_name(8302,'PQH_INVALID_ATTRIBUTE');
338: fnd_message.set_token('ATTRIBUTE_COLUMN_NAME',p_attribute_column_name);
339: fnd_message.raise_error;
340: end if;
341: close csr_attribute_id;
342: --
343: open csr_txn_cat_att_id(p_attribute_id => l_attribute_id, p_transaction_category_id => l_transaction_category_id);