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 321: IF NOT gmd_api_grp.setup_done THEN

317: fnd_msg_pub.initialize;
318: END IF;
319:
320: /* Initialize the setup fields */
321: IF NOT gmd_api_grp.setup_done THEN
322: gmd_api_grp.setup_done := gmd_api_grp.setup;
323: END IF;
324: IF NOT gmd_api_grp.setup_done THEN
325: RAISE setup_failure;

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

318: END IF;
319:
320: /* Initialize the setup fields */
321: IF NOT gmd_api_grp.setup_done THEN
322: gmd_api_grp.setup_done := gmd_api_grp.setup;
323: END IF;
324: IF NOT gmd_api_grp.setup_done THEN
325: RAISE setup_failure;
326: END IF;

Line 324: IF NOT gmd_api_grp.setup_done THEN

320: /* Initialize the setup fields */
321: IF NOT gmd_api_grp.setup_done THEN
322: gmd_api_grp.setup_done := gmd_api_grp.setup;
323: END IF;
324: IF NOT gmd_api_grp.setup_done THEN
325: RAISE setup_failure;
326: END IF;
327:
328: /* Make sure we have call compatibility */

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

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

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

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

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

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

Line 950: gmd_api_grp.log_message('GMD_RECORD_LOCKED',

946: 'OPERATION','GMD_OPERATIONS_B',
947: 'ROUTING','GMD_ROUTINGS_B',
948: 'VALIDITY','GMD_RECIPE_VALIDITY_RULES') INTO l_table_name
949: FROM sys.dual;
950: gmd_api_grp.log_message('GMD_RECORD_LOCKED',
951: 'TABLE_NAME',l_table_name,
952: 'KEY',NVL(p_entity_id, l_entity_id)
953: );
954: -- Bug #3437582 (JKB) Changed gmd_api_pub to gmd_api_grp above.

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

950: gmd_api_grp.log_message('GMD_RECORD_LOCKED',
951: 'TABLE_NAME',l_table_name,
952: 'KEY',NVL(p_entity_id, l_entity_id)
953: );
954: -- Bug #3437582 (JKB) Changed gmd_api_pub to gmd_api_grp above.
955: fnd_msg_pub.count_and_get (
956: p_count => x_message_count
957: ,p_encoded => FND_API.g_false
958: ,p_data => x_message_list);