DBA Data[Home] [Help]

APPS.GME_API_PUB dependencies on GME_PENDING_PRODUCT_LOTS_PVT

Line 9116: gme_pending_product_lots_pvt.validate_record_for_create which already had a paramater

9112: Conditionalize call to save batch based on p_commit_parameter.
9113:
9114: 13-MAY-2010 G. Muratore Bug 9482460
9115: Introduced new p_parent_lot parameter. The function we call for validation is
9116: gme_pending_product_lots_pvt.validate_record_for_create which already had a paramater
9117: for p_parent_lot. So we are extending it to the api call.
9118: ================================================================================*/
9119: PROCEDURE create_pending_product_lot
9120: (p_api_version IN NUMBER

Line 9206: gme_pending_product_lots_pvt.validate_material_for_create

9202: RAISE fnd_api.g_exc_error;
9203: END IF;
9204:
9205: -- Validations
9206: gme_pending_product_lots_pvt.validate_material_for_create
9207: (p_batch_header_rec => l_batch_header_rec
9208: ,p_material_detail_rec => l_material_detail_rec
9209: ,x_return_status => x_return_status);
9210:

Line 9216: gme_pending_product_lots_pvt.validate_record_for_create

9212: RAISE fnd_api.g_exc_error;
9213: END IF;
9214:
9215: -- Bug 9482460 - Pass in the parent lot value.
9216: gme_pending_product_lots_pvt.validate_record_for_create
9217: (p_material_detail_rec => l_material_detail_rec
9218: ,p_pending_product_lots_rec => p_pending_product_lots_rec
9219: ,p_create_lot => p_create_lot
9220: ,p_generate_lot => p_generate_lot

Line 9441: gme_pending_product_lots_pvt.validate_material_for_update

9437: END IF;
9438: END IF;
9439:
9440: -- Validations
9441: gme_pending_product_lots_pvt.validate_material_for_update
9442: (p_batch_header_rec => l_batch_header_rec
9443: ,p_material_detail_rec => l_material_detail_rec
9444: ,x_return_status => x_return_status);
9445:

Line 9450: gme_pending_product_lots_pvt.validate_record_for_update

9446: IF x_return_status <> fnd_api.g_ret_sts_success THEN
9447: RAISE fnd_api.g_exc_error;
9448: END IF;
9449:
9450: gme_pending_product_lots_pvt.validate_record_for_update
9451: (p_material_detail_rec => l_material_detail_rec
9452: ,p_db_pending_product_lots_rec => l_db_pending_product_lots_rec
9453: ,p_pending_product_lots_rec => p_pending_product_lots_rec
9454: ,x_pending_product_lots_rec => l_pending_product_lots_rec

Line 9682: gme_pending_product_lots_pvt.validate_material_for_delete

9678: RAISE fnd_api.g_exc_error;
9679: END IF;
9680: END IF;
9681: -- Validations
9682: gme_pending_product_lots_pvt.validate_material_for_delete
9683: (p_batch_header_rec => l_batch_header_rec
9684: ,p_material_detail_rec => l_material_detail_rec
9685: ,x_return_status => x_return_status);
9686:

Line 9691: gme_pending_product_lots_pvt.validate_record_for_delete

9687: IF x_return_status <> fnd_api.g_ret_sts_success THEN
9688: RAISE fnd_api.g_exc_error;
9689: END IF;
9690:
9691: gme_pending_product_lots_pvt.validate_record_for_delete
9692: (p_material_detail_rec => l_material_detail_rec
9693: ,p_db_pending_product_lots_rec => l_db_pending_product_lots_rec
9694: ,p_pending_product_lots_rec => p_pending_product_lots_rec
9695: ,x_pending_product_lots_rec => l_pending_product_lots_rec