DBA Data[Home] [Help]

APPS.GMD_SPEC_PUB dependencies on GMD_SPECIFICATIONS_PVT

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

213: l_spec.last_updated_by := l_user_id;
214:
215: -- Insert SPEC
216: -- ===========
217: IF NOT GMD_Specifications_PVT.INSERT_ROW(p_spec => l_spec)
218: THEN
219: GMD_API_PUB.Log_Message('GMD_FAILED_TO_INSERT_ROW',
220: 'l_table_name', 'GMD_SPECIFICATIONS',
221: 'l_column_name', 'SPEC_ID',

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

503: END IF;
504:
505: -- Lock the row ahead of delete marking
506: -- ====================================
507: IF NOT GMD_Specifications_PVT.Lock_Row(p_spec.spec_id)
508: THEN
509: -- Report Failure to obtain locks
510: -- ==============================
511: GMD_API_PUB.Log_Message('GMD_LOCKING_FAILURE',

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

514: 'l_key_value', p_spec.spec_id);
515: RAISE FND_API.G_EXC_ERROR;
516: END IF;
517:
518: IF NOT GMD_Specifications_PVT.Mark_for_Delete ( p_spec_id => p_spec.spec_id
519: , p_last_update_date => sysdate
520: , p_last_updated_by => l_spec.last_updated_by
521: )
522: THEN

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

671: l_spec_id := l_spec_tests.spec_id;
672:
673: -- Lock the SPEC ahead of manipulating SPEC_TESTS
674: -- ===============================================
675: IF NOT GMD_Specifications_PVT.Lock_Row(l_spec_tests.spec_id)
676: THEN
677: -- Report Failure to obtain locks
678: -- ==============================
679: GMD_API_PUB.Log_Message('GMD_LOCKING_FAILURE',