DBA Data[Home] [Help]

APPS.CSI_T_TXN_ATTRIBS_PVT dependencies on FND_MESSAGE

Line 98: FND_MESSAGE.set_name('CSI','CSI_TXN_NOT_CZ_CALLER');

94: = fnd_api.g_miss_num
95: THEN
96: IF p_txn_ext_attrib_vals_rec.api_caller_identity <> 'CONFIG'
97: THEN
98: FND_MESSAGE.set_name('CSI','CSI_TXN_NOT_CZ_CALLER');
99: FND_MESSAGE.set_token('API_CALLER',p_txn_ext_attrib_vals_rec.api_caller_identity) ;
100: FND_MSG_PUB.add;
101: RAISE FND_API.g_exc_error;
102: END IF ;

Line 99: FND_MESSAGE.set_token('API_CALLER',p_txn_ext_attrib_vals_rec.api_caller_identity) ;

95: THEN
96: IF p_txn_ext_attrib_vals_rec.api_caller_identity <> 'CONFIG'
97: THEN
98: FND_MESSAGE.set_name('CSI','CSI_TXN_NOT_CZ_CALLER');
99: FND_MESSAGE.set_token('API_CALLER',p_txn_ext_attrib_vals_rec.api_caller_identity) ;
100: FND_MSG_PUB.add;
101: RAISE FND_API.g_exc_error;
102: END IF ;
103: -- get the attrib_source_id

Line 120: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_txn_ext_attrib_vals_rec.attribute_level);

116: debug ('After calling get_ext_attrib_id : attrib id - attrib_source_table :'|| x_attribute_id || ' - '||p_txn_ext_attrib_vals_rec.attrib_source_table);
117: IF NOT (x_return_status = fnd_api.g_ret_sts_success)
118: THEN
119: debug ('Call to get_ext_attrib_id failed ..');
120: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_txn_ext_attrib_vals_rec.attribute_level);
121: fnd_msg_pub.add;
122: RAISE fnd_api.g_exc_error;
123: END IF ;
124: ELSIF NVL(p_txn_ext_attrib_vals_rec.attribute_code, fnd_api.g_miss_char) <> fnd_api.g_miss_char

Line 157: FND_MESSAGE.set_token('ATTRIB_LEVEL','');

153: IF NOT (x_return_status = fnd_api.g_ret_sts_success)
154: THEN
155: IF i=4 THEN
156: debug ('Call to get_ext_attrib_id failed ..');
157: FND_MESSAGE.set_token('ATTRIB_LEVEL','');
158: fnd_msg_pub.add;
159: RAISE fnd_api.g_exc_error;
160: END IF;
161: END IF ;

Line 174: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');

170:
171: debug ('After calling get_ext_attrib_id : attrib id - attrib_source_table :'|| x_attribute_id || ' - '||p_txn_ext_attrib_vals_rec.attrib_source_table);
172: ELSE
173: ---Attrib code is NOT passed.
174: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
175: fnd_message.set_token('MESSAGE',
176: 'No Attribute code is passed ');
177: fnd_msg_pub.add;
178: debug ( 'Attribute Code is null so raise the error :');

Line 175: fnd_message.set_token('MESSAGE',

171: debug ('After calling get_ext_attrib_id : attrib id - attrib_source_table :'|| x_attribute_id || ' - '||p_txn_ext_attrib_vals_rec.attrib_source_table);
172: ELSE
173: ---Attrib code is NOT passed.
174: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
175: fnd_message.set_token('MESSAGE',
176: 'No Attribute code is passed ');
177: fnd_msg_pub.add;
178: debug ( 'Attribute Code is null so raise the error :');
179: RAISE fnd_api.g_exc_error;

Line 186: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');

182: IF NVL(x_attribute_id,fnd_api.g_miss_num) <> fnd_api.g_miss_num
183: THEN
184: p_txn_ext_attrib_vals_rec.attribute_source_id := x_attribute_id ;
185: ELSE
186: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
187: fnd_message.set_token('MESSAGE',
188: 'Either no Attribute code is passed OR csi_t_extend_attribs_pkg.get_attrib_id failed');
189: fnd_msg_pub.add;
190: debug ( 'Attribute id is null so raise the error :');

Line 187: fnd_message.set_token('MESSAGE',

183: THEN
184: p_txn_ext_attrib_vals_rec.attribute_source_id := x_attribute_id ;
185: ELSE
186: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
187: fnd_message.set_token('MESSAGE',
188: 'Either no Attribute code is passed OR csi_t_extend_attribs_pkg.get_attrib_id failed');
189: fnd_msg_pub.add;
190: debug ( 'Attribute id is null so raise the error :');
191: RAISE fnd_api.g_exc_error;

Line 285: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');

281: p_context => p_txn_ext_attrib_vals_rec.context);
282:
283: EXCEPTION
284: WHEN others THEN
285: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
286: fnd_message.set_token('MESSAGE',
287: 'csi_t_extend_attribs_pkg.insert_row Failed. '||substr(sqlerrm,1,200));
288: fnd_msg_pub.add;
289: RAISE fnd_api.g_exc_error;

Line 286: fnd_message.set_token('MESSAGE',

282:
283: EXCEPTION
284: WHEN others THEN
285: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
286: fnd_message.set_token('MESSAGE',
287: 'csi_t_extend_attribs_pkg.insert_row Failed. '||substr(sqlerrm,1,200));
288: fnd_msg_pub.add;
289: RAISE fnd_api.g_exc_error;
290: END;

Line 440: FND_MESSAGE.set_name('CSI','CSI_TXN_NOT_CZ_CALLER');

436: fnd_api.g_miss_num) = fnd_api.g_miss_num
437: THEN
438: IF l_txn_ext_attrib_vals_tbl(l_ind).api_caller_identity <> 'CONFIG'
439: THEN
440: FND_MESSAGE.set_name('CSI','CSI_TXN_NOT_CZ_CALLER');
441: FND_MESSAGE.set_token('API_CALLER',l_txn_ext_attrib_vals_tbl(l_ind).api_caller_identity) ;
442: FND_MSG_PUB.add;
443: RAISE FND_API.g_exc_error;
444: END IF ;

Line 441: FND_MESSAGE.set_token('API_CALLER',l_txn_ext_attrib_vals_tbl(l_ind).api_caller_identity) ;

437: THEN
438: IF l_txn_ext_attrib_vals_tbl(l_ind).api_caller_identity <> 'CONFIG'
439: THEN
440: FND_MESSAGE.set_name('CSI','CSI_TXN_NOT_CZ_CALLER');
441: FND_MESSAGE.set_token('API_CALLER',l_txn_ext_attrib_vals_tbl(l_ind).api_caller_identity) ;
442: FND_MSG_PUB.add;
443: RAISE FND_API.g_exc_error;
444: END IF ;
445: -- get the attrib_source_id

Line 461: FND_MESSAGE.set_token('ATTRIB_LEVEL',l_txn_ext_attrib_vals_tbl(l_ind).attribute_level);

457:
458: IF NOT (x_return_status = fnd_api.g_ret_sts_success)
459: THEN
460: debug ('Call to get_ext_attrib_id failed ..');
461: FND_MESSAGE.set_token('ATTRIB_LEVEL',l_txn_ext_attrib_vals_tbl(l_ind).attribute_level);
462: fnd_msg_pub.add;
463: RAISE fnd_api.g_exc_error;
464: END IF ;
465: ELSIF NVL(l_txn_ext_attrib_vals_tbl(l_ind).attribute_code, fnd_api.g_miss_char) <> fnd_api.g_miss_char

Line 499: FND_MESSAGE.set_token('ATTRIB_LEVEL','');

495: IF NOT (x_return_status = fnd_api.g_ret_sts_success)
496: THEN
497: IF i=4 THEN
498: debug ('Call to get_ext_attrib_id failed ..');
499: FND_MESSAGE.set_token('ATTRIB_LEVEL','');
500: fnd_msg_pub.add;
501: RAISE fnd_api.g_exc_error;
502: END IF;
503: END IF ;

Line 515: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');

511: END IF ;
512: END LOOP ; --i IN 1..4
513: ELSE
514: ---Attrib code is NOT passed.
515: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
516: fnd_message.set_token('MESSAGE',
517: 'No attribute code is passed ');
518: fnd_msg_pub.add;
519: debug ( 'Attribute id is null so raise the error :');

Line 516: fnd_message.set_token('MESSAGE',

512: END LOOP ; --i IN 1..4
513: ELSE
514: ---Attrib code is NOT passed.
515: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
516: fnd_message.set_token('MESSAGE',
517: 'No attribute code is passed ');
518: fnd_msg_pub.add;
519: debug ( 'Attribute id is null so raise the error :');
520: RAISE fnd_api.g_exc_error;

Line 526: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');

522: IF NVL(l_attribute_id,fnd_api.g_miss_num) <> fnd_api.g_miss_num
523: THEN
524: l_txn_ext_attrib_vals_tbl(l_ind).attribute_source_id := l_attribute_id ;
525: ELSE
526: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
527: fnd_message.set_token('MESSAGE',
528: 'csi_t_extend_attribs_pkg.get_attrib_id failed');
529: fnd_msg_pub.add;
530: debug ( 'Attribute id is null so raise the error :');

Line 527: fnd_message.set_token('MESSAGE',

523: THEN
524: l_txn_ext_attrib_vals_tbl(l_ind).attribute_source_id := l_attribute_id ;
525: ELSE
526: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
527: fnd_message.set_token('MESSAGE',
528: 'csi_t_extend_attribs_pkg.get_attrib_id failed');
529: fnd_msg_pub.add;
530: debug ( 'Attribute id is null so raise the error :');
531: RAISE fnd_api.g_exc_error;

Line 550: FND_MESSAGE.set_name('CSI','CSI_TXN_EXT_ATTRIB_ID_INVALID');

546: x_return_status => l_return_status);
547:
548: IF l_return_status <> fnd_api.g_ret_sts_success THEN
549:
550: FND_MESSAGE.set_name('CSI','CSI_TXN_EXT_ATTRIB_ID_INVALID');
551: FND_MESSAGE.set_token('EXT_ATT_ID',l_ext_att_id);
552: fnd_msg_pub.add;
553: RAISE fnd_api.g_exc_error;
554:

Line 551: FND_MESSAGE.set_token('EXT_ATT_ID',l_ext_att_id);

547:
548: IF l_return_status <> fnd_api.g_ret_sts_success THEN
549:
550: FND_MESSAGE.set_name('CSI','CSI_TXN_EXT_ATTRIB_ID_INVALID');
551: FND_MESSAGE.set_token('EXT_ATT_ID',l_ext_att_id);
552: fnd_msg_pub.add;
553: RAISE fnd_api.g_exc_error;
554:
555: END IF;

Line 572: FND_MESSAGE.set_name('CSI','CSI_TXN_UPD_DEL_NOT_ALLOWED');

568: x_return_status => l_return_status);
569:
570: IF l_processing_status = 'PROCESSED' THEN
571:
572: FND_MESSAGE.set_name('CSI','CSI_TXN_UPD_DEL_NOT_ALLOWED');
573: FND_MESSAGE.set_token('LVL_ID', l_ext_att_id);
574: FND_MESSAGE.set_token('STATUS',l_processing_status);
575: fnd_msg_pub.add;
576: RAISE fnd_api.g_exc_error;

Line 573: FND_MESSAGE.set_token('LVL_ID', l_ext_att_id);

569:
570: IF l_processing_status = 'PROCESSED' THEN
571:
572: FND_MESSAGE.set_name('CSI','CSI_TXN_UPD_DEL_NOT_ALLOWED');
573: FND_MESSAGE.set_token('LVL_ID', l_ext_att_id);
574: FND_MESSAGE.set_token('STATUS',l_processing_status);
575: fnd_msg_pub.add;
576: RAISE fnd_api.g_exc_error;
577:

Line 574: FND_MESSAGE.set_token('STATUS',l_processing_status);

570: IF l_processing_status = 'PROCESSED' THEN
571:
572: FND_MESSAGE.set_name('CSI','CSI_TXN_UPD_DEL_NOT_ALLOWED');
573: FND_MESSAGE.set_token('LVL_ID', l_ext_att_id);
574: FND_MESSAGE.set_token('STATUS',l_processing_status);
575: fnd_msg_pub.add;
576: RAISE fnd_api.g_exc_error;
577:
578: END IF;

Line 714: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');

710: p_context => l_ea_rec.context);
711:
712: exception
713: when others then
714: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
715: fnd_message.set_token('MESSAGE',
716: 'csi_t_extend_attribs_pkg.update_row Failed. '||substr(sqlerrm,1,200));
717: fnd_msg_pub.add;
718: raise fnd_api.g_exc_error;

Line 715: fnd_message.set_token('MESSAGE',

711:
712: exception
713: when others then
714: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
715: fnd_message.set_token('MESSAGE',
716: 'csi_t_extend_attribs_pkg.update_row Failed. '||substr(sqlerrm,1,200));
717: fnd_msg_pub.add;
718: raise fnd_api.g_exc_error;
719: end;

Line 855: FND_MESSAGE.set_name('CSI','CSI_TXN_EXT_ATTRIB_ID_INVALID');

851: x_return_status => l_return_status);
852:
853: IF l_return_status <> fnd_api.g_ret_sts_success THEN
854:
855: FND_MESSAGE.set_name('CSI','CSI_TXN_EXT_ATTRIB_ID_INVALID');
856: FND_MESSAGE.set_token('EXT_ATT_ID',l_ext_att_id);
857: fnd_msg_pub.add;
858: RAISE fnd_api.g_exc_error;
859:

Line 856: FND_MESSAGE.set_token('EXT_ATT_ID',l_ext_att_id);

852:
853: IF l_return_status <> fnd_api.g_ret_sts_success THEN
854:
855: FND_MESSAGE.set_name('CSI','CSI_TXN_EXT_ATTRIB_ID_INVALID');
856: FND_MESSAGE.set_token('EXT_ATT_ID',l_ext_att_id);
857: fnd_msg_pub.add;
858: RAISE fnd_api.g_exc_error;
859:
860: END IF;

Line 885: FND_MESSAGE.set_name('CSI','CSI_TXN_LINE_DTL_ID_INVALID');

881: x_return_status => l_return_status);
882:
883: IF l_return_status <> fnd_api.g_ret_sts_success THEN
884:
885: FND_MESSAGE.set_name('CSI','CSI_TXN_LINE_DTL_ID_INVALID');
886: FND_MESSAGE.set_token('LINE_DTL_ID',l_line_dtl_id);
887: fnd_msg_pub.add;
888: RAISE fnd_api.g_exc_error;
889:

Line 886: FND_MESSAGE.set_token('LINE_DTL_ID',l_line_dtl_id);

882:
883: IF l_return_status <> fnd_api.g_ret_sts_success THEN
884:
885: FND_MESSAGE.set_name('CSI','CSI_TXN_LINE_DTL_ID_INVALID');
886: FND_MESSAGE.set_token('LINE_DTL_ID',l_line_dtl_id);
887: fnd_msg_pub.add;
888: RAISE fnd_api.g_exc_error;
889:
890: END IF;

Line 1615: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');

1611: END LOOP ;
1612: IF l_loop_count > 1
1613: THEN
1614: x_error_msg := 'Unable to derive attribute id .....';
1615: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');
1616: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1617: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);
1618: fnd_msg_pub.add;
1619: RAISE fnd_api.g_exc_error ;

Line 1616: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);

1612: IF l_loop_count > 1
1613: THEN
1614: x_error_msg := 'Unable to derive attribute id .....';
1615: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');
1616: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1617: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);
1618: fnd_msg_pub.add;
1619: RAISE fnd_api.g_exc_error ;
1620: END IF ;

Line 1617: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);

1613: THEN
1614: x_error_msg := 'Unable to derive attribute id .....';
1615: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');
1616: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1617: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);
1618: fnd_msg_pub.add;
1619: RAISE fnd_api.g_exc_error ;
1620: END IF ;
1621: ELSIF p_attrib_level = 'CATEGORY'

Line 1636: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');

1632: END LOOP ;
1633: IF l_loop_count > 1
1634: THEN
1635: x_error_msg := 'Unable to derive attribute id .....';
1636: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');
1637: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1638: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);
1639: RAISE fnd_api.g_exc_error ;
1640: END IF ;

Line 1637: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);

1633: IF l_loop_count > 1
1634: THEN
1635: x_error_msg := 'Unable to derive attribute id .....';
1636: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');
1637: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1638: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);
1639: RAISE fnd_api.g_exc_error ;
1640: END IF ;
1641: ELSIF p_attrib_level = 'ITEM'

Line 1638: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);

1634: THEN
1635: x_error_msg := 'Unable to derive attribute id .....';
1636: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');
1637: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1638: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);
1639: RAISE fnd_api.g_exc_error ;
1640: END IF ;
1641: ELSIF p_attrib_level = 'ITEM'
1642: THEN

Line 1653: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');

1649: END LOOP ;
1650: IF l_loop_count > 1
1651: THEN
1652: x_error_msg := 'Unable to derive attribute id .....';
1653: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');
1654: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1655: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);
1656: RAISE fnd_api.g_exc_error ;
1657: END IF ;

Line 1654: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);

1650: IF l_loop_count > 1
1651: THEN
1652: x_error_msg := 'Unable to derive attribute id .....';
1653: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');
1654: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1655: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);
1656: RAISE fnd_api.g_exc_error ;
1657: END IF ;
1658: ELSIF p_attrib_level = 'INSTANCE'

Line 1655: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);

1651: THEN
1652: x_error_msg := 'Unable to derive attribute id .....';
1653: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');
1654: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1655: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);
1656: RAISE fnd_api.g_exc_error ;
1657: END IF ;
1658: ELSIF p_attrib_level = 'INSTANCE'
1659: THEN

Line 1671: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');

1667: END LOOP ;
1668: IF l_loop_count > 1
1669: THEN
1670: x_error_msg := 'Unable to derive attribute id .....';
1671: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');
1672: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1673: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);
1674: RAISE fnd_api.g_exc_error ;
1675: END IF ;

Line 1672: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);

1668: IF l_loop_count > 1
1669: THEN
1670: x_error_msg := 'Unable to derive attribute id .....';
1671: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');
1672: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1673: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);
1674: RAISE fnd_api.g_exc_error ;
1675: END IF ;
1676: END IF ; --p_attrib_level

Line 1673: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);

1669: THEN
1670: x_error_msg := 'Unable to derive attribute id .....';
1671: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT');
1672: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1673: FND_MESSAGE.set_token('ATTRIB_LEVEL',p_attrib_level);
1674: RAISE fnd_api.g_exc_error ;
1675: END IF ;
1676: END IF ; --p_attrib_level
1677:

Line 1698: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT_VALS');

1694: l_loop_count := l_loop_count+1 ;
1695: END LOOP ;
1696: IF l_loop_count > 1
1697: THEN
1698: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT_VALS');
1699: FND_MESSAGE.set_token('ATTRIB_ID',x_attribute_id);
1700: FND_MESSAGE.set_token('INSTANCE_ID',l_instance_id);
1701: RAISE fnd_api.g_exc_error ;
1702: END IF ;

Line 1699: FND_MESSAGE.set_token('ATTRIB_ID',x_attribute_id);

1695: END LOOP ;
1696: IF l_loop_count > 1
1697: THEN
1698: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT_VALS');
1699: FND_MESSAGE.set_token('ATTRIB_ID',x_attribute_id);
1700: FND_MESSAGE.set_token('INSTANCE_ID',l_instance_id);
1701: RAISE fnd_api.g_exc_error ;
1702: END IF ;
1703: IF l_attribute_value_id IS NOT NULL

Line 1700: FND_MESSAGE.set_token('INSTANCE_ID',l_instance_id);

1696: IF l_loop_count > 1
1697: THEN
1698: FND_MESSAGE.set_name('CSI','CSI_TXN_TOO_MANY_EXT_ATT_VALS');
1699: FND_MESSAGE.set_token('ATTRIB_ID',x_attribute_id);
1700: FND_MESSAGE.set_token('INSTANCE_ID',l_instance_id);
1701: RAISE fnd_api.g_exc_error ;
1702: END IF ;
1703: IF l_attribute_value_id IS NOT NULL
1704: THEN

Line 1713: FND_MESSAGE.set_name('CSI','CSI_TXN_EXT_ATT_NOT_FOUND');

1709: END IF ; --l_attribute_value_id
1710: END IF ; --l_instance_id
1711: ELSE
1712: l_attrib_param := 'Item ID:'||l_inv_item_id||' Orgn ID:'||l_inv_orgn_id||'Category ID: '||l_item_category||'Instance ID: '||l_instance_id;
1713: FND_MESSAGE.set_name('CSI','CSI_TXN_EXT_ATT_NOT_FOUND');
1714: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1715: FND_MESSAGE.set_token('ATTRIB_PARAM',l_attrib_param);
1716: RAISE fnd_api.g_exc_error ;
1717: END IF ;

Line 1714: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);

1710: END IF ; --l_instance_id
1711: ELSE
1712: l_attrib_param := 'Item ID:'||l_inv_item_id||' Orgn ID:'||l_inv_orgn_id||'Category ID: '||l_item_category||'Instance ID: '||l_instance_id;
1713: FND_MESSAGE.set_name('CSI','CSI_TXN_EXT_ATT_NOT_FOUND');
1714: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1715: FND_MESSAGE.set_token('ATTRIB_PARAM',l_attrib_param);
1716: RAISE fnd_api.g_exc_error ;
1717: END IF ;
1718: EXCEPTION

Line 1715: FND_MESSAGE.set_token('ATTRIB_PARAM',l_attrib_param);

1711: ELSE
1712: l_attrib_param := 'Item ID:'||l_inv_item_id||' Orgn ID:'||l_inv_orgn_id||'Category ID: '||l_item_category||'Instance ID: '||l_instance_id;
1713: FND_MESSAGE.set_name('CSI','CSI_TXN_EXT_ATT_NOT_FOUND');
1714: FND_MESSAGE.set_token('ATTRIB_CODE',p_attrib_code);
1715: FND_MESSAGE.set_token('ATTRIB_PARAM',l_attrib_param);
1716: RAISE fnd_api.g_exc_error ;
1717: END IF ;
1718: EXCEPTION
1719: WHEN fnd_api.g_exc_error