DBA Data[Home] [Help]

APPS.QA_PARENT_CHILD_COPY_PKG dependencies on FND_MESSAGE

Line 890: fnd_message.set_name('QA', 'QA_PC_COPY_DUPLICATE_NAME');

886: --check here first and make sure that we check only the first 25 chars
887: ret_code := check_plan_name(this_plan.dest_name);
888: IF (ret_code < 0) THEN
889: ROLLBACK TO setup_plans_pub;
890: fnd_message.set_name('QA', 'QA_PC_COPY_DUPLICATE_NAME');
891: fnd_message.set_token('DESTPLANNAME', this_plan.dest_name);
892: fnd_msg_pub.add();
893: x_return_msg := 'dupilicate dest name:'||this_plan.dest_name||', retcode: '||ret_code;
894: RETURN -1;

Line 891: fnd_message.set_token('DESTPLANNAME', this_plan.dest_name);

887: ret_code := check_plan_name(this_plan.dest_name);
888: IF (ret_code < 0) THEN
889: ROLLBACK TO setup_plans_pub;
890: fnd_message.set_name('QA', 'QA_PC_COPY_DUPLICATE_NAME');
891: fnd_message.set_token('DESTPLANNAME', this_plan.dest_name);
892: fnd_msg_pub.add();
893: x_return_msg := 'dupilicate dest name:'||this_plan.dest_name||', retcode: '||ret_code;
894: RETURN -1;
895: END IF;