DBA Data[Home] [Help]

APPS.CSTPSISC dependencies on FND_MESSAGE

Line 418: FND_MESSAGE.set_name('BOM','CST_API_MESSAGE');

414:
415: if (l_return_status <> fnd_api.g_ret_sts_success) then
416: FND_FILE.put_line(FND_FILE.log, l_msg_data);
417: l_api_message := 'get_zeroCostIssue_flag returned unexpected error';
418: FND_MESSAGE.set_name('BOM','CST_API_MESSAGE');
419: FND_MESSAGE.set_token('TEXT', l_api_message);
420: FND_MSG_pub.add;
421: raise fnd_api.g_exc_unexpected_error;
422: end if;

Line 419: FND_MESSAGE.set_token('TEXT', l_api_message);

415: if (l_return_status <> fnd_api.g_ret_sts_success) then
416: FND_FILE.put_line(FND_FILE.log, l_msg_data);
417: l_api_message := 'get_zeroCostIssue_flag returned unexpected error';
418: FND_MESSAGE.set_name('BOM','CST_API_MESSAGE');
419: FND_MESSAGE.set_token('TEXT', l_api_message);
420: FND_MSG_pub.add;
421: raise fnd_api.g_exc_unexpected_error;
422: end if;
423:

Line 757: FND_MESSAGE.set_name('BOM', 'CST_RULES_ERROR');

753: o_err_msg := 'CSTPSISC.INS_STD_COST:' || l_err_msg;
754: when moh_rules_error THEN
755: o_err_num := 9999;
756: o_err_code := 'CST_RULES_ERROR';
757: FND_MESSAGE.set_name('BOM', 'CST_RULES_ERROR');
758: o_err_msg := 'CSTPSISC.INS_STD_COST:'||FND_MESSAGE.Get;
759: when others then
760: o_err_num := SQLCODE;
761: o_err_msg := 'CSTPSISC.INS_STD_COST (' || to_char(l_stmt_num) || '): '

Line 758: o_err_msg := 'CSTPSISC.INS_STD_COST:'||FND_MESSAGE.Get;

754: when moh_rules_error THEN
755: o_err_num := 9999;
756: o_err_code := 'CST_RULES_ERROR';
757: FND_MESSAGE.set_name('BOM', 'CST_RULES_ERROR');
758: o_err_msg := 'CSTPSISC.INS_STD_COST:'||FND_MESSAGE.Get;
759: when others then
760: o_err_num := SQLCODE;
761: o_err_msg := 'CSTPSISC.INS_STD_COST (' || to_char(l_stmt_num) || '): '
762: || substrb(SQLERRM,1,150);