DBA Data[Home] [Help]

APPS.GMD_STATUS_PUB dependencies on GMD_API_GRP

Line 70: /* Jeff Baird 02/11/2004 Changed gmd_api_pub to gmd_api_grp. */

66: /* Shyam 07/29/2002 Initial implementation */
67: /* Shyam 05/30/03 Bug 2985443 Cannot change formula status */
68: /* to approved for general use or Lab use for */
69: /* formulas created with total output qty =0 */
70: /* Jeff Baird 02/11/2004 Changed gmd_api_pub to gmd_api_grp. */
71: /* Kalyani 07/03/2006 Bug 5347418 Fetched recipe_use and checked */
72: /* if items are costing enabled if recipe use */
73: /* is for costing. */
74: /* kalyani 08/23/2006 Bug 5394532 Added code for substitution */

Line 317: IF NOT gmd_api_grp.setup_done THEN

313: fnd_msg_pub.initialize;
314: END IF;
315:
316: /* Initialize the setup fields */
317: IF NOT gmd_api_grp.setup_done THEN
318: gmd_api_grp.setup_done := gmd_api_grp.setup;
319: END IF;
320: IF NOT gmd_api_grp.setup_done THEN
321: RAISE setup_failure;

Line 318: gmd_api_grp.setup_done := gmd_api_grp.setup;

314: END IF;
315:
316: /* Initialize the setup fields */
317: IF NOT gmd_api_grp.setup_done THEN
318: gmd_api_grp.setup_done := gmd_api_grp.setup;
319: END IF;
320: IF NOT gmd_api_grp.setup_done THEN
321: RAISE setup_failure;
322: END IF;

Line 320: IF NOT gmd_api_grp.setup_done THEN

316: /* Initialize the setup fields */
317: IF NOT gmd_api_grp.setup_done THEN
318: gmd_api_grp.setup_done := gmd_api_grp.setup;
319: END IF;
320: IF NOT gmd_api_grp.setup_done THEN
321: RAISE setup_failure;
322: END IF;
323:
324: /* Make sure we have call compatibility */

Line 507: GMD_API_GRP.check_item_exists( p_formula_id => l_form_id,

503: -- validity rule orgn
504: IF l_org_id IS NOT NULL THEN
505: -- Bug 5347418 Validate for prod or costing based on recipe_use
506: IF l_recipe_use IN (0,1) THEN
507: GMD_API_GRP.check_item_exists( p_formula_id => l_form_id,
508: x_return_status => l_return_status,
509: p_organization_id => l_org_id,
510: p_production_check => TRUE);
511:

Line 522: GMD_API_GRP.check_item_exists( p_formula_id => l_form_id,

518: x_return_status := FND_API.g_ret_sts_error;
519: RAISE status_update_failure;
520: END IF;
521: ELSIF l_recipe_use = 2 THEN
522: GMD_API_GRP.check_item_exists( p_formula_id => l_form_id,
523: x_return_status => l_return_status,
524: p_organization_id => l_org_id,
525: p_costing_check => TRUE);
526:

Line 584: IF NOT GMD_API_GRP.Check_orgn_access(Entity => P_entity_name

580: END IF;
581:
582:
583: /* Validate if this Entity can be modified by this user */
584: IF NOT GMD_API_GRP.Check_orgn_access(Entity => P_entity_name
585: ,Entity_id => l_entity_id) THEN
586: RAISE status_update_failure;
587: END IF;
588:

Line 944: gmd_api_grp.log_message('GMD_RECORD_LOCKED',

940: 'OPERATION','GMD_OPERATIONS_B',
941: 'ROUTING','GMD_ROUTINGS_B',
942: 'VALIDITY','GMD_RECIPE_VALIDITY_RULES') INTO l_table_name
943: FROM sys.dual;
944: gmd_api_grp.log_message('GMD_RECORD_LOCKED',
945: 'TABLE_NAME',l_table_name,
946: 'KEY',NVL(p_entity_id, l_entity_id)
947: );
948: -- Bug #3437582 (JKB) Changed gmd_api_pub to gmd_api_grp above.

Line 948: -- Bug #3437582 (JKB) Changed gmd_api_pub to gmd_api_grp above.

944: gmd_api_grp.log_message('GMD_RECORD_LOCKED',
945: 'TABLE_NAME',l_table_name,
946: 'KEY',NVL(p_entity_id, l_entity_id)
947: );
948: -- Bug #3437582 (JKB) Changed gmd_api_pub to gmd_api_grp above.
949: fnd_msg_pub.count_and_get (
950: p_count => x_message_count
951: ,p_encoded => FND_API.g_false
952: ,p_data => x_message_list);