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: | 31-JUL-2012 PLOWE -- 14364429 fp of 11i bug 8942264 added |
72: | check to cursor Cur_get_dtl_base to see if test has been deleted . |
73: | Also Overlay specification of table type for the spec_tests is |
74: | loaded with same details twice. Therefore the API errors as test_id |

Line 155: GMD_SPEC_GRP.Get_Who ( p_user_name => p_user_name

151: l_return_status := FND_API.G_RET_STS_SUCCESS;
152:
153: -- Validate User Name Parameter
154: -- ============================
155: GMD_SPEC_GRP.Get_Who ( p_user_name => p_user_name
156: ,x_user_id => l_user_id);
157:
158: IF NVL(l_user_id, -1) < 0
159: THEN

Line 199: GMD_SPEC_GRP.Validate_Spec_Header (

195: l_spec.spec_id := NULL;
196:
197: -- Need to create the header (gmd_specifications) so validate the spec data
198: -- ========================================================================
199: GMD_SPEC_GRP.Validate_Spec_Header (
200: p_spec_header => l_spec
201: , p_called_from => 'API'
202: , p_operation => 'INSERT'
203: , x_return_status => l_return_status

Line 301: GMD_SPEC_GRP.Validate_Spec_Test(

297: l_spec_tests.spec_id := l_spec_id;
298:
299: -- Validate SPEC_TEST
300: -- ==================
301: GMD_SPEC_GRP.Validate_Spec_Test(
302: p_spec_test => l_spec_tests
303: , p_called_from => 'API'
304: , p_operation => 'INSERT'
305: , x_spec_test => l_spec_tests_out

Line 347: GMD_SPEC_GRP.Validate_After_Insert_All(

343: -- Post insert validation:
344: -- a) a spec must have at least one spec test
345: -- b) expression based tests must have associated reference tests
346: -- ==============================================================
347: GMD_SPEC_GRP.Validate_After_Insert_All(
348: p_spec_id => l_spec_id
349: , x_return_status => l_return_status
350: );
351:

Line 422: | GMD_SPEC_GRP.get_who() procedure |

418: | HISTORY |
419: | 03-AUG-2002 K.Y.Hunt |
420: | 02-MAY-2005 saikiran vankadari As part of Convergence changes, |
421: | call to GMA_GLOBAL_GRP.get_who() is replaced with |
422: | GMD_SPEC_GRP.get_who() procedure |
423: | |
424: +=========================================================================+
425: */
426: PROCEDURE DELETE_SPEC

Line 475: GMD_SPEC_GRP.Get_Who ( p_user_name => p_user_name

471: x_return_status := FND_API.G_RET_STS_SUCCESS;
472:
473: -- Validate user_name
474: -- ==================
475: GMD_SPEC_GRP.Get_Who ( p_user_name => p_user_name
476: ,x_user_id => l_spec.last_updated_by);
477:
478: IF NVL(l_spec.last_updated_by, -1) < 0
479: THEN

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

492: END IF;
493:
494: -- Validate to ensure spec is in a suitable state to delete mark
495: -- ==============================================================
496: GMD_SPEC_GRP.Validate_Before_Delete( p_spec_id => p_spec.spec_id
497: , x_return_status => l_return_status
498: , x_message_data => l_msg_data
499: );
500: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

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

656: IF i=1
657: THEN
658: -- Validate to ensure spec is a)not delete marked b)has a status which permits updates
659: -- ===================================================================================
660: GMD_SPEC_GRP.Validate_Before_Delete( p_spec_id => l_spec_tests.spec_id
661: , x_return_status => l_return_status
662: , x_message_data => l_msg_data
663: );
664: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN

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

731: END IF;
732:
733: -- Ensure that at least one test remains under the specification
734: -- =============================================================
735: GMD_SPEC_GRP.Validate_After_Delete_Test ( p_spec_id => l_spec_tests.spec_id
736: , x_return_status => l_return_status
737: );
738: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
739: -- Diagnostic messages already on stack from group level