DBA Data[Home] [Help]

APPS.PSP_POA_INS dependencies on PSP_ORGANIZATION_ACCOUNTS

Line 87: -- Insert the row into: psp_organization_accounts

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: psp_poa_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: psp_organization_accounts
88: --
89: insert into psp_organization_accounts
90: (organization_account_id
91: ,gl_code_combination_id

Line 89: insert into psp_organization_accounts

85: psp_poa_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: psp_organization_accounts
88: --
89: insert into psp_organization_accounts
90: (organization_account_id
91: ,gl_code_combination_id
92: ,project_id
93: ,expenditure_organization_id

Line 227: Cursor C_Sel1 is select psp_organization_accounts_s.nextval from sys.dual;

223: Procedure pre_insert
224: (p_rec in out nocopy psp_poa_shd.g_rec_type
225: ) is
226: --
227: Cursor C_Sel1 is select psp_organization_accounts_s.nextval from sys.dual;
228: --
229: Cursor C_Sel2 is
230: Select null
231: from psp_organization_accounts

Line 231: from psp_organization_accounts

227: Cursor C_Sel1 is select psp_organization_accounts_s.nextval from sys.dual;
228: --
229: Cursor C_Sel2 is
230: Select null
231: from psp_organization_accounts
232: where organization_account_id =
233: psp_poa_ins.g_organization_account_id_i;
234: --
235: l_proc varchar2(72) := g_package||'pre_insert';

Line 253: fnd_message.set_token('TABLE_NAME','psp_organization_accounts');

249: --
250: -- The primary key values are already in use.
251: --
252: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
253: fnd_message.set_token('TABLE_NAME','psp_organization_accounts');
254: fnd_message.raise_error;
255: End If;
256: Close C_Sel2;
257: --

Line 396: (p_module_name => 'PSP_ORGANIZATION_ACCOUNTS'

392: --
393: when hr_api.cannot_find_prog_unit then
394: --
395: hr_api.cannot_find_prog_unit_error
396: (p_module_name => 'PSP_ORGANIZATION_ACCOUNTS'
397: ,p_hook_type => 'AI');
398: --
399: end;
400: --