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 807: FND_MESSAGE.set_name('BOM', 'CST_RULES_ERROR');

803: o_err_msg := 'CSTPSISC.INS_STD_COST:' || l_err_msg;
804: when moh_rules_error THEN
805: o_err_num := 9999;
806: o_err_code := 'CST_RULES_ERROR';
807: FND_MESSAGE.set_name('BOM', 'CST_RULES_ERROR');
808: o_err_msg := 'CSTPSISC.INS_STD_COST:'||FND_MESSAGE.Get;
809: when others then
810: o_err_num := SQLCODE;
811: o_err_msg := 'CSTPSISC.INS_STD_COST (' || to_char(l_stmt_num) || '): '

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

804: when moh_rules_error THEN
805: o_err_num := 9999;
806: o_err_code := 'CST_RULES_ERROR';
807: FND_MESSAGE.set_name('BOM', 'CST_RULES_ERROR');
808: o_err_msg := 'CSTPSISC.INS_STD_COST:'||FND_MESSAGE.Get;
809: when others then
810: o_err_num := SQLCODE;
811: o_err_msg := 'CSTPSISC.INS_STD_COST (' || to_char(l_stmt_num) || '): '
812: || substrb(SQLERRM,1,150);