DBA Data[Home] [Help]

APPS.QA_PARENT_CHILD_COPY_PKG dependencies on FND_MSG_PUB

Line 858: fnd_msg_pub.initialize;

854: end if;
855: --fnd_log.string(FND_LOG.LEVEL_UNEXPECTED, 'qapccpb.pls', 'entered setup_plans');
856:
857: --reinitialize the message list for this attempt at duplication
858: fnd_msg_pub.initialize;
859:
860: --parse the source_plan_id, dest_plan_name tokens from the flat_string into
861: --a name hash table
862: ret_code := parse_flat_string(p_plans_flatstring, false, phtable);

Line 892: fnd_msg_pub.add();

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;
896: