DBA Data[Home] [Help]

APPS.FND_FLEX_SERVER dependencies on FND_FLEX_HIERARCHY_COMPILER

Line 4779: fnd_flex_hierarchy_compiler.request_lock(l_vset.flex_value_set_name, l_lock_handle);

4775: -- comp, this process will still see the snap shot of data before it
4776: -- was deleted. In this way security is not compromised, if hier comp
4777: -- starts running in the middle of this process. By releasing the
4778: -- lock, we will not get process contentions.
4779: fnd_flex_hierarchy_compiler.request_lock(l_vset.flex_value_set_name, l_lock_handle);
4780: SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;
4781: IF (l_lock_handle IS NOT NULL) THEN
4782: fnd_flex_hierarchy_compiler.release_lock(l_vset.flex_value_set_name, l_lock_handle);
4783: END IF;

Line 4782: fnd_flex_hierarchy_compiler.release_lock(l_vset.flex_value_set_name, l_lock_handle);

4778: -- lock, we will not get process contentions.
4779: fnd_flex_hierarchy_compiler.request_lock(l_vset.flex_value_set_name, l_lock_handle);
4780: SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;
4781: IF (l_lock_handle IS NOT NULL) THEN
4782: fnd_flex_hierarchy_compiler.release_lock(l_vset.flex_value_set_name, l_lock_handle);
4783: END IF;
4784: END IF;
4785:
4786: --

Line 5045: fnd_flex_hierarchy_compiler.release_lock(l_vset.flex_value_set_name, l_lock_handle);

5041: RETURN;
5042: EXCEPTION
5043: WHEN OTHERS THEN
5044: IF (l_lock_handle IS NOT NULL) THEN
5045: fnd_flex_hierarchy_compiler.release_lock(l_vset.flex_value_set_name, l_lock_handle);
5046: END IF;
5047: FND_MESSAGE.set_name('FND', 'FLEX-SSV EXCEPTION');
5048: FND_MESSAGE.set_token('MSG', 'SSV.check_value_security(): ' || SQLERRM);
5049: x_security_status := 'EXCEPTION';