DBA Data[Home] [Help]

APPS.JTF_RS_SRP_TERRITORIES_PVT dependencies on JTF_RS_SRP_TERRITORIES_PKG

Line 11: Calls to these procedures will invoke calls to table handlers (jtf_rs_srp_territories_pkg)

7: create and update resource salesrep territories, from other modules.
8: Its main procedures are as following:
9: Create Resource Salesrep Territories
10: Update Resource Salesrep Territories
11: Calls to these procedures will invoke calls to table handlers (jtf_rs_srp_territories_pkg)
12: which do the actual inserts, updates and deletes into tables.
13: ******************************************************************************************/
14:
15: /* Package variables. */

Line 326: jtf_rs_srp_territories_pkg.insert_row(

322: INTO l_salesrep_territory_id
323: FROM dual;
324:
325: --Insert the row into the table by calling the table handler
326: jtf_rs_srp_territories_pkg.insert_row(
327: X_ROWID => l_rowid,
328: X_SALESREP_TERRITORY_ID => l_salesrep_territory_id,
329: X_SALESREP_ID => l_salesrep_id,
330: X_TERRITORY_ID => l_territory_id,

Line 869: jtf_rs_srp_territories_pkg.lock_row(

865: END IF;
866: END IF;
867:
868: --Lock the row in the table by calling the table handler
869: jtf_rs_srp_territories_pkg.lock_row(
870: X_SALESREP_TERRITORY_ID => l_salesrep_territory_id,
871: X_OBJECT_VERSION_NUMBER => l_object_version_number
872: );
873:

Line 880: jtf_rs_srp_territories_pkg.update_row(

876:
877:
878: BEGIN
879: --Update the row in the table by calling the table handler
880: jtf_rs_srp_territories_pkg.update_row(
881: X_SALESREP_TERRITORY_ID => p_salesrep_territory_id,
882: X_SALESREP_ID => l_salesrep_id,
883: X_TERRITORY_ID => l_territory_id,
884: X_STATUS => salesrep_territory_rec.l_status,