DBA Data[Home] [Help]

APPS.CSD_REPAIR_MANAGER_UTIL dependencies on FND_MSG_PUB

Line 69: fnd_msg_pub.get(1,

65: -- case1: there is nothing in the message stack
66: l_index_count := lx_error_message_table.count;
67: if l_msg_count = 0 then
68: if l_msg_data is null then
69: fnd_msg_pub.get(1,
70: 'F',
71: l_message_temp,
72: x_msg_index_out
73: );

Line 91: fnd_msg_pub.get(i,

87: else
88:
89: for i in 1 ..l_msg_count
90: loop
91: fnd_msg_pub.get(i,
92: 'F',
93: l_message_temp,
94: x_msg_index_out
95: );

Line 312: fnd_msg_pub.initialize;

308: END IF;
309:
310: IF fnd_api.to_boolean(p_init_msg_list)
311: THEN
312: fnd_msg_pub.initialize;
313: END IF;
314:
315: --
316: x_return_status := fnd_api.g_ret_sts_success;

Line 765: Fnd_Msg_Pub.initialize;

761: END IF;
762:
763: IF Fnd_Api.to_Boolean(p_init_msg_list)
764: THEN
765: Fnd_Msg_Pub.initialize;
766: END IF;
767:
768: -- dump the API params for debug purpose.
769:

Line 835: Fnd_Msg_Pub.ADD;

831: p_responsibility_id => FND_GLOBAL.RESP_ID)
832: then
833: -- flow status update is not allowed.
834: Fnd_Message.Set_Name('CSD', 'CSD_FLEX_FLWSTS_NO_ACCESS');
835: Fnd_Msg_Pub.ADD;
836: prepare_error_message_table(l_error_messages_tbl,
837: 0,
838: null,
839: 'FLOW_STATUS',

Line 907: Fnd_Msg_Pub.ADD;

903: p_responsibility_id => fnd_global.resp_id)
904: then
905: -- repair type update is not allowed. log a message.
906: Fnd_Message.Set_Name('CSD', 'CSD_FLEX_RT_TRANS_NO_ACCESS');
907: Fnd_Msg_Pub.ADD;
908: prepare_error_message_table(l_error_messages_tbl,
909: 0,
910: null,
911: 'REPAIR_TYPE',

Line 1254: Fnd_Msg_Pub.initialize;

1250: END IF;
1251:
1252: IF Fnd_Api.to_Boolean(p_init_msg_list)
1253: THEN
1254: Fnd_Msg_Pub.initialize;
1255: END IF;
1256: x_return_status := FND_API.G_RET_STS_SUCCESS;
1257: l_data_type := CASE p_attach_type
1258: when 'FILE' then lc_data_type_file

Line 1491: Fnd_Msg_Pub.initialize;

1487: END IF;
1488:
1489: IF Fnd_Api.to_Boolean(p_init_msg_list)
1490: THEN
1491: Fnd_Msg_Pub.initialize;
1492: END IF;
1493: x_return_status := FND_API.G_RET_STS_SUCCESS;
1494:
1495: -- this is wrapper around create_sr_repair_order API.

Line 1821: Fnd_Msg_Pub.initialize;

1817: END IF;
1818:
1819: IF Fnd_Api.to_Boolean(p_init_msg_list)
1820: THEN
1821: Fnd_Msg_Pub.initialize;
1822: END IF;
1823:
1824: x_return_status := FND_API.G_RET_STS_SUCCESS;
1825:

Line 2192: fnd_msg_pub.ADD;

2188: 'Change ownership criteria not met. Make sure the change ownerhsip function is granted and profile CSD_ALWAYS_CREATE_IB_INSTANCE is set to Always create instance');
2189: END IF;
2190:
2191: fnd_message.set_name('CSD', 'CSD_INVALID_CUST_PROD');
2192: fnd_msg_pub.ADD;
2193: RAISE fnd_api.g_exc_error;
2194: END IF;
2195:
2196: END IF;

Line 2549: FND_MSG_PUB.Get(

2545: exception
2546: when fnd_api.g_exc_error then
2547: FOR j in 1 ..x_msg_count
2548: LOOP
2549: FND_MSG_PUB.Get(
2550: p_msg_index => j,
2551: p_encoded => 'F',
2552: p_data => x_msg_data,
2553: p_msg_index_out => x_msg_index_out);