DBA Data[Home] [Help]

APPS.PO_LINES_SV dependencies on PO_CORE_S

Line 174: p_doc_level => PO_CORE_S.g_doc_level_LINE

170:
171: --
172: --Delete the Price differentials entity type for the given Line
173: PO_PRICE_DIFFERENTIALS_PKG.del_level_specific_price_diff(
174: p_doc_level => PO_CORE_S.g_doc_level_LINE
175: ,p_doc_level_id => x_po_line_id);
176: --
177: END LOOP;
178:

Line 242: p_doc_level => PO_CORE_S.g_doc_level_LINE

238:
239: --
240: --Delete the Price differentials entity type for the given Line
241: PO_PRICE_DIFFERENTIALS_PKG.del_level_specific_price_diff(
242: p_doc_level => PO_CORE_S.g_doc_level_LINE
243: ,p_doc_level_id => x_po_line_id);
244: --
245:
246: EXCEPTION

Line 356: x_message_text := PO_CORE_S.get_translated_text(

352:
353: -- If any checks have failed so far, there's no need to do further checks
354: -- Fill out message text and skip to the end of this procedure
355: IF (X_allow_delete = 'N') THEN
356: x_message_text := PO_CORE_S.get_translated_text(
357: 'PO_PO_USE_CANCEL_ON_APRVD_PO3',
358: p_token,
359: p_token_value);
360:

Line 361: RAISE PO_CORE_S.G_EARLY_RETURN_EXC;

357: 'PO_PO_USE_CANCEL_ON_APRVD_PO3',
358: p_token,
359: p_token_value);
360:
361: RAISE PO_CORE_S.G_EARLY_RETURN_EXC;
362: END IF;
363:
364: --
365: -- Check to see if the Purchase Order line has approved or

Line 395: PO_CORE_S.are_any_dists_reserved(

391: X_allow_delete := 'Y';
392:
393: IF (l_type_lookup_code IN ('STANDARD','PLANNED')) THEN
394:
395: PO_CORE_S.are_any_dists_reserved(
396: p_doc_type => PO_CORE_S.g_doc_type_PO
397: , p_doc_level => PO_CORE_S.g_doc_level_LINE
398: , p_doc_level_id => x_po_line_id
399: , x_some_dists_reserved_flag => l_some_dists_reserved_flag

Line 396: p_doc_type => PO_CORE_S.g_doc_type_PO

392:
393: IF (l_type_lookup_code IN ('STANDARD','PLANNED')) THEN
394:
395: PO_CORE_S.are_any_dists_reserved(
396: p_doc_type => PO_CORE_S.g_doc_type_PO
397: , p_doc_level => PO_CORE_S.g_doc_level_LINE
398: , p_doc_level_id => x_po_line_id
399: , x_some_dists_reserved_flag => l_some_dists_reserved_flag
400: );

Line 397: , p_doc_level => PO_CORE_S.g_doc_level_LINE

393: IF (l_type_lookup_code IN ('STANDARD','PLANNED')) THEN
394:
395: PO_CORE_S.are_any_dists_reserved(
396: p_doc_type => PO_CORE_S.g_doc_type_PO
397: , p_doc_level => PO_CORE_S.g_doc_level_LINE
398: , p_doc_level_id => x_po_line_id
399: , x_some_dists_reserved_flag => l_some_dists_reserved_flag
400: );
401:

Line 406: x_message_text := PO_CORE_S.get_translated_text(

402: IF (l_some_dists_reserved_flag = 'N') THEN
403: x_allow_delete := 'Y';
404: ELSE
405: x_allow_delete := 'N';
406: x_message_text := PO_CORE_S.get_translated_text(
407: 'PO_PO_USE_CANCEL_ON_ENCUMB_PO');
408: END IF;
409: END IF;
410:

Line 413: x_message_text := PO_CORE_S.get_translated_text(

409: END IF;
410:
411:
412: ELSE
413: x_message_text := PO_CORE_S.get_translated_text(
414: 'PO_PO_USE_CANCEL_ON_APRVD_PO3',
415: p_token,
416: p_token_value);
417: END IF;

Line 421: WHEN PO_CORE_S.G_EARLY_RETURN_EXC THEN

417: END IF;
418:
419:
420: EXCEPTION
421: WHEN PO_CORE_S.G_EARLY_RETURN_EXC THEN
422: NULL;
423:
424: WHEN NO_DATA_FOUND then
425: -- There are no shipments for the given line

Line 496: PO_CORE_S.are_any_dists_reserved(

492: X_allow_delete := 'Y';
493:
494: IF (l_type_lookup_code IN ('STANDARD','PLANNED')) THEN
495:
496: PO_CORE_S.are_any_dists_reserved(
497: p_doc_type => PO_CORE_S.g_doc_type_PO
498: , p_doc_level => PO_CORE_S.g_doc_level_LINE
499: , p_doc_level_id => x_po_line_id
500: , x_some_dists_reserved_flag => l_some_dists_reserved_flag

Line 497: p_doc_type => PO_CORE_S.g_doc_type_PO

493:
494: IF (l_type_lookup_code IN ('STANDARD','PLANNED')) THEN
495:
496: PO_CORE_S.are_any_dists_reserved(
497: p_doc_type => PO_CORE_S.g_doc_type_PO
498: , p_doc_level => PO_CORE_S.g_doc_level_LINE
499: , p_doc_level_id => x_po_line_id
500: , x_some_dists_reserved_flag => l_some_dists_reserved_flag
501: );

Line 498: , p_doc_level => PO_CORE_S.g_doc_level_LINE

494: IF (l_type_lookup_code IN ('STANDARD','PLANNED')) THEN
495:
496: PO_CORE_S.are_any_dists_reserved(
497: p_doc_type => PO_CORE_S.g_doc_type_PO
498: , p_doc_level => PO_CORE_S.g_doc_level_LINE
499: , p_doc_level_id => x_po_line_id
500: , x_some_dists_reserved_flag => l_some_dists_reserved_flag
501: );
502: