DBA Data[Home] [Help]

APPS.JTF_RS_CONC_RES_PUB dependencies on JTF_RS_CONC_RES_PUB

Line 1: PACKAGE BODY jtf_rs_conc_res_pub AS

1: PACKAGE BODY jtf_rs_conc_res_pub AS
2: /* $Header: jtfrsbrb.pls 120.6.12010000.2 2008/10/22 05:52:03 rgokavar ship $ */
3:
4: /*****************************************************************************************
5: This is a concurrent program to fetch all employees from the employee database for creating

Line 15: G_PKG_NAME CONSTANT VARCHAR2(30) := 'JTF_RS_CONC_RES_PUB';

11: ******************************************************************************************/
12:
13: /* Package variables. */
14:
15: G_PKG_NAME CONSTANT VARCHAR2(30) := 'JTF_RS_CONC_RES_PUB';
16: g_run_date DATE;
17:
18: /* Function to get the start date of the primary job assignment */
19:

Line 189: jtf_rs_conc_res_pub.terminate_employee;

185:
186: -- End Code for Enh
187:
188: --call terminate api
189: jtf_rs_conc_res_pub.terminate_employee;
190:
191:
192: --call update api
193: jtf_rs_conc_res_pub.update_employee

Line 193: jtf_rs_conc_res_pub.update_employee

189: jtf_rs_conc_res_pub.terminate_employee;
190:
191:
192: --call update api
193: jtf_rs_conc_res_pub.update_employee
194: (P_OVERWRITE_NAME => P_OVERWRITE_NAME);
195:
196: -- call update terminated api
197: -- jtf_rs_conc_res_pub.update_terminated_employee;

Line 197: -- jtf_rs_conc_res_pub.update_terminated_employee;

193: jtf_rs_conc_res_pub.update_employee
194: (P_OVERWRITE_NAME => P_OVERWRITE_NAME);
195:
196: -- call update terminated api
197: -- jtf_rs_conc_res_pub.update_terminated_employee;
198:
199: -- call update phones for employees
200: -- update_emp_phone;
201:

Line 205: jtf_rs_conc_res_pub.create_employee

201:
202: --call create api
203: IF(p_get_new_emp = 'Y')
204: THEN
205: jtf_rs_conc_res_pub.create_employee
206: (P_CREATE_SRP => P_CREATE_SRP,
207: P_SALES_CREDIT_TYPE => P_SALES_CREDIT_TYPE,
208: P_CHECK_JOB_ROLE_MAP => P_CHECK_JOB_ROLE_MAP);
209: END IF;

Line 3170: jtf_rs_conc_res_pub.terminate_partner_rel;

3166:
3167:
3168: BEGIN
3169: --Terminate all partner resource, whose relationship is terminated in hz_relationships
3170: jtf_rs_conc_res_pub.terminate_partner_rel;
3171:
3172: jtf_rs_conc_res_pub.update_party
3173: (p_overwrite_name => P_OVERWRITE_NAME);
3174: COMMIT;

Line 3172: jtf_rs_conc_res_pub.update_party

3168: BEGIN
3169: --Terminate all partner resource, whose relationship is terminated in hz_relationships
3170: jtf_rs_conc_res_pub.terminate_partner_rel;
3171:
3172: jtf_rs_conc_res_pub.update_party
3173: (p_overwrite_name => P_OVERWRITE_NAME);
3174: COMMIT;
3175:
3176: EXCEPTION

Line 3557: jtf_rs_conc_res_pub.terminate_supplier_contact;

3553:
3554: BEGIN
3555:
3556: -- Call Terminate Supplier Contact Procedure
3557: jtf_rs_conc_res_pub.terminate_supplier_contact;
3558:
3559: -- Call Update Supplier Contact Procedure
3560: jtf_rs_conc_res_pub.update_supp_contact
3561: (p_overwrite_name => P_OVERWRITE_NAME);

Line 3560: jtf_rs_conc_res_pub.update_supp_contact

3556: -- Call Terminate Supplier Contact Procedure
3557: jtf_rs_conc_res_pub.terminate_supplier_contact;
3558:
3559: -- Call Update Supplier Contact Procedure
3560: jtf_rs_conc_res_pub.update_supp_contact
3561: (p_overwrite_name => P_OVERWRITE_NAME);
3562: COMMIT;
3563:
3564: EXCEPTION

Line 4152: jtf_rs_conc_res_pub.update_username;

4148: BEGIN
4149:
4150: IF (P_SYNCHRONIZE = 'User Name' OR P_SYNCHRONIZE = 'Both')
4151: THEN
4152: jtf_rs_conc_res_pub.update_username;
4153: END IF;
4154:
4155: IF (P_SYNCHRONIZE = 'User Identifier' OR P_SYNCHRONIZE = 'Both')
4156: THEN

Line 4157: jtf_rs_conc_res_pub.update_userid;

4153: END IF;
4154:
4155: IF (P_SYNCHRONIZE = 'User Identifier' OR P_SYNCHRONIZE = 'Both')
4156: THEN
4157: jtf_rs_conc_res_pub.update_userid;
4158: END IF;
4159:
4160: COMMIT;
4161: EXCEPTION

Line 4170: END jtf_rs_conc_res_pub;

4166: THEN
4167: fnd_file.put_line(fnd_file.log, sqlcode||':'||sqlerrm);
4168: END synchronize_user_name;
4169:
4170: END jtf_rs_conc_res_pub;