DBA Data[Home] [Help]

APPS.MSC_ATP_PVT dependencies on FND_MESSAGE

Line 986: FND_MESSAGE.set_name('MRP','MRP_NO_ATP_ASSIGN_SET');

982: l_stmt := 90;
983:
984: /*
985: IF (MSC_ATP_PVT.G_ASSIGN_SET_ID IS NULL) THEN
986: FND_MESSAGE.set_name('MRP','MRP_NO_ATP_ASSIGN_SET');
987: -- need to add error message
988: l_atp_table.Error_Code(k) := ATP_NO_ASSIGN_SET;
989: RAISE NO_DATA_FOUND;
990: END IF;

Line 5869: l_encoded_text := fnd_message.GET_ENCODED;

5865: -- End ATP4drp
5866: MSC_ATP_PVT.G_ALLOCATION_METHOD := NVL(l_allocation_method, MSC_ATP_PVT.G_ALLOCATION_METHOD);
5867:
5868: /* Check if this is actually coming from a calendar routine*/
5869: l_encoded_text := fnd_message.GET_ENCODED;
5870: IF l_encoded_text IS NULL THEN
5871: l_msg_app := NULL;
5872: l_msg_name := NULL;
5873: ELSE

Line 5874: fnd_message.parse_encoded(l_encoded_text, l_msg_app, l_msg_name);

5870: IF l_encoded_text IS NULL THEN
5871: l_msg_app := NULL;
5872: l_msg_name := NULL;
5873: ELSE
5874: fnd_message.parse_encoded(l_encoded_text, l_msg_app, l_msg_name);
5875: IF PG_DEBUG in ('Y', 'C') THEN
5876: msc_sch_wb.atp_debug('Schedule: ' || 'l_msg_name := ' || l_msg_name);
5877: END IF;
5878: END IF;

Line 16188: l_encoded_text := fnd_message.GET_ENCODED;

16184:
16185: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
16186:
16187: /* Check if this is actually coming from a calendar routine*/
16188: l_encoded_text := fnd_message.GET_ENCODED;
16189: IF l_encoded_text IS NULL THEN
16190: l_msg_app := NULL;
16191: l_msg_name := NULL;
16192: ELSE

Line 16193: fnd_message.parse_encoded(l_encoded_text, l_msg_app, l_msg_name);

16189: IF l_encoded_text IS NULL THEN
16190: l_msg_app := NULL;
16191: l_msg_name := NULL;
16192: ELSE
16193: fnd_message.parse_encoded(l_encoded_text, l_msg_app, l_msg_name);
16194: END IF;
16195:
16196: -- Error Handling Changes
16197: IF (p_atp_record.error_code IS NULL) or (p_atp_record.error_code IN (0,61,150)) THEN

Line 17283: l_encoded_text := fnd_message.GET_ENCODED;

17279:
17280: WHEN OTHERS THEN
17281: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
17282: /* Check if this is actually coming from a calendar routine*/
17283: l_encoded_text := fnd_message.GET_ENCODED;
17284: IF l_encoded_text IS NULL THEN
17285: l_msg_app := NULL;
17286: l_msg_name := NULL;
17287: ELSE

Line 17288: fnd_message.parse_encoded(l_encoded_text, l_msg_app, l_msg_name);

17284: IF l_encoded_text IS NULL THEN
17285: l_msg_app := NULL;
17286: l_msg_name := NULL;
17287: ELSE
17288: fnd_message.parse_encoded(l_encoded_text, l_msg_app, l_msg_name);
17289: END IF;
17290:
17291: -- Error Handling Changes
17292: FOR i in l_atp_input_table.Action.FIRST ..l_atp_input_table.Action.LAST LOOP