DBA Data[Home] [Help]

APPS.JTF_RESOURCE_UTL dependencies on DUAL

Line 20: FROM dual;

16: BEGIN
17:
18: SELECT fnd_global.user_id
19: INTO l_created_by
20: FROM dual;
21:
22: RETURN l_created_by;
23:
24: END;

Line 37: FROM dual;

33: BEGIN
34:
35: SELECT fnd_global.user_id
36: INTO l_updated_by
37: FROM dual;
38:
39: RETURN l_updated_by;
40:
41: END;

Line 54: FROM dual;

50: BEGIN
51:
52: SELECT fnd_global.login_id
53: INTO l_login_id
54: FROM dual;
55:
56: RETURN l_login_id;
57:
58: END;

Line 1514: Changed the object existence validation for 'RS_INDIVIDUAL' to jtf_rs_resource_extns from jtf_objects,

1510: close object_dtls_cur;
1511: end if;
1512: x_return_status := fnd_api.g_ret_sts_success;
1513: /* Added the below code to fix the bug # 3357906
1514: Changed the object existence validation for 'RS_INDIVIDUAL' to jtf_rs_resource_extns from jtf_objects,
1515: because we do not have enough time to investigate the impact of changing the
1516: jtf_objects definition for the object type 'RS_INDIVIDUAL'. */
1517: if l_object_code = 'RS_INDIVIDUAL' then
1518:

Line 1516: jtf_objects definition for the object type 'RS_INDIVIDUAL'. */

1512: x_return_status := fnd_api.g_ret_sts_success;
1513: /* Added the below code to fix the bug # 3357906
1514: Changed the object existence validation for 'RS_INDIVIDUAL' to jtf_rs_resource_extns from jtf_objects,
1515: because we do not have enough time to investigate the impact of changing the
1516: jtf_objects definition for the object type 'RS_INDIVIDUAL'. */
1517: if l_object_code = 'RS_INDIVIDUAL' then
1518:
1519: OPEN c_res_existence(l_select_id);
1520: FETCH c_res_existence INTO l_temp;

Line 1517: if l_object_code = 'RS_INDIVIDUAL' then

1513: /* Added the below code to fix the bug # 3357906
1514: Changed the object existence validation for 'RS_INDIVIDUAL' to jtf_rs_resource_extns from jtf_objects,
1515: because we do not have enough time to investigate the impact of changing the
1516: jtf_objects definition for the object type 'RS_INDIVIDUAL'. */
1517: if l_object_code = 'RS_INDIVIDUAL' then
1518:
1519: OPEN c_res_existence(l_select_id);
1520: FETCH c_res_existence INTO l_temp;
1521: IF c_res_existence%FOUND THEN