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 1518: Changed the object existence validation for 'RS_INDIVIDUAL' to jtf_rs_resource_extns from jtf_objects,

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

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

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

Line 1521: if l_object_code = 'RS_INDIVIDUAL' then

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