DBA Data[Home] [Help]

APPS.GMD_SPEC_PUB dependencies on GMD_SPEC_GRP

Line 70: | GMD_SPEC_GRP.get_who() procedure |

66: | HISTORY |
67: | 03-AUG-2002 K.Y.Hunt |
68: | 02-MAY-2005 saikiran vankadari As part of Convergence changes, |
69: | call to GMA_GLOBAL_GRP.get_who() is replaced with |
70: | GMD_SPEC_GRP.get_who() procedure |
71: | |
72: +=========================================================================+
73: */
74:

Line 143: GMD_SPEC_GRP.Get_Who ( p_user_name => p_user_name

139: l_return_status := FND_API.G_RET_STS_SUCCESS;
140:
141: -- Validate User Name Parameter
142: -- ============================
143: GMD_SPEC_GRP.Get_Who ( p_user_name => p_user_name
144: ,x_user_id => l_user_id);
145:
146: IF NVL(l_user_id, -1) < 0
147: THEN

Line 187: GMD_SPEC_GRP.Validate_Spec_Header (

183: l_spec.spec_id := NULL;
184:
185: -- Need to create the header (gmd_specifications) so validate the spec data
186: -- ========================================================================
187: GMD_SPEC_GRP.Validate_Spec_Header (
188: p_spec_header => l_spec
189: , p_called_from => 'API'
190: , p_operation => 'INSERT'
191: , x_return_status => l_return_status

Line 288: GMD_SPEC_GRP.Validate_Spec_Test(

284: l_spec_tests.spec_id := l_spec_id;
285:
286: -- Validate SPEC_TEST
287: -- ==================
288: GMD_SPEC_GRP.Validate_Spec_Test(
289: p_spec_test => l_spec_tests
290: , p_called_from => 'API'
291: , p_operation => 'INSERT'
292: , x_spec_test => l_spec_tests_out

Line 334: GMD_SPEC_GRP.Validate_After_Insert_All(

330: -- Post insert validation:
331: -- a) a spec must have at least one spec test
332: -- b) expression based tests must have associated reference tests
333: -- ==============================================================
334: GMD_SPEC_GRP.Validate_After_Insert_All(
335: p_spec_id => l_spec_id
336: , x_return_status => l_return_status
337: );
338:

Line 409: | GMD_SPEC_GRP.get_who() procedure |

405: | HISTORY |
406: | 03-AUG-2002 K.Y.Hunt |
407: | 02-MAY-2005 saikiran vankadari As part of Convergence changes, |
408: | call to GMA_GLOBAL_GRP.get_who() is replaced with |
409: | GMD_SPEC_GRP.get_who() procedure |
410: | |
411: +=========================================================================+
412: */
413: PROCEDURE DELETE_SPEC

Line 462: GMD_SPEC_GRP.Get_Who ( p_user_name => p_user_name

458: x_return_status := FND_API.G_RET_STS_SUCCESS;
459:
460: -- Validate user_name
461: -- ==================
462: GMD_SPEC_GRP.Get_Who ( p_user_name => p_user_name
463: ,x_user_id => l_spec.last_updated_by);
464:
465: IF NVL(l_spec.last_updated_by, -1) < 0
466: THEN

Line 483: GMD_SPEC_GRP.Validate_Before_Delete( p_spec_id => p_spec.spec_id

479: END IF;
480:
481: -- Validate to ensure spec is in a suitable state to delete mark
482: -- ==============================================================
483: GMD_SPEC_GRP.Validate_Before_Delete( p_spec_id => p_spec.spec_id
484: , x_return_status => l_return_status
485: , x_message_data => l_msg_data
486: );
487: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 647: GMD_SPEC_GRP.Validate_Before_Delete( p_spec_id => l_spec_tests.spec_id

643: IF i=1
644: THEN
645: -- Validate to ensure spec is a)not delete marked b)has a status which permits updates
646: -- ===================================================================================
647: GMD_SPEC_GRP.Validate_Before_Delete( p_spec_id => l_spec_tests.spec_id
648: , x_return_status => l_return_status
649: , x_message_data => l_msg_data
650: );
651: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 722: GMD_SPEC_GRP.Validate_After_Delete_Test ( p_spec_id => l_spec_tests.spec_id

718: END IF;
719:
720: -- Ensure that at least one test remains under the specification
721: -- =============================================================
722: GMD_SPEC_GRP.Validate_After_Delete_Test ( p_spec_id => l_spec_tests.spec_id
723: , x_return_status => l_return_status
724: );
725: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
726: -- Diagnostic messages already on stack from group level