DBA Data[Home] [Help]

APPS.GMD_SPEC_PUB dependencies on GMD_SPECIFICATIONS_PVT

Line 205: IF NOT GMD_Specifications_PVT.INSERT_ROW(p_spec => l_spec)

201: l_spec.last_updated_by := l_user_id;
202:
203: -- Insert SPEC
204: -- ===========
205: IF NOT GMD_Specifications_PVT.INSERT_ROW(p_spec => l_spec)
206: THEN
207: GMD_API_PUB.Log_Message('GMD_FAILED_TO_INSERT_ROW',
208: 'l_table_name', 'GMD_SPECIFICATIONS',
209: 'l_column_name', 'SPEC_ID',

Line 494: IF NOT GMD_Specifications_PVT.Lock_Row(p_spec.spec_id)

490: END IF;
491:
492: -- Lock the row ahead of delete marking
493: -- ====================================
494: IF NOT GMD_Specifications_PVT.Lock_Row(p_spec.spec_id)
495: THEN
496: -- Report Failure to obtain locks
497: -- ==============================
498: GMD_API_PUB.Log_Message('GMD_LOCKING_FAILURE',

Line 505: IF NOT GMD_Specifications_PVT.Mark_for_Delete ( p_spec_id => p_spec.spec_id

501: 'l_key_value', p_spec.spec_id);
502: RAISE FND_API.G_EXC_ERROR;
503: END IF;
504:
505: IF NOT GMD_Specifications_PVT.Mark_for_Delete ( p_spec_id => p_spec.spec_id
506: , p_last_update_date => sysdate
507: , p_last_updated_by => l_spec.last_updated_by
508: )
509: THEN

Line 662: IF NOT GMD_Specifications_PVT.Lock_Row(l_spec_tests.spec_id)

658: l_spec_id := l_spec_tests.spec_id;
659:
660: -- Lock the SPEC ahead of manipulating SPEC_TESTS
661: -- ===============================================
662: IF NOT GMD_Specifications_PVT.Lock_Row(l_spec_tests.spec_id)
663: THEN
664: -- Report Failure to obtain locks
665: -- ==============================
666: GMD_API_PUB.Log_Message('GMD_LOCKING_FAILURE',