DBA Data[Home] [Help]

APPS.PAY_PTA_BUS dependencies on PAYWSDYG_PKG

Line 326: If paywsdyg_pkg.is_table_valid(p_rec.table_name) = 'N' Then

322: ,p_argument => 'table_name'
323: ,p_argument_value => p_rec.table_name
324: );
325: --
326: If paywsdyg_pkg.is_table_valid(p_rec.table_name) = 'N' Then
327: --
328: -- The table does not exist and therefore we must error
329: --
330: fnd_message.set_name('PAY', 'HR_xxxx_INVALID_TABLE_NAME');

Line 439: If paywsdyg_pkg.is_table_column_valid(p_rec.table_name,p_rec.surrogate_key_name) = 'N' Then

435: --
436: --Bugfix 3114746
437: -- remove mandatory_arg_error fo start_date_name and end_date_name
438: --
439: If paywsdyg_pkg.is_table_column_valid(p_rec.table_name,p_rec.surrogate_key_name) = 'N' Then
440: --
441: -- The column does not belong to the table therefore we must error
442: --
443: fnd_message.set_name('PAY', 'HR_xxxx_SURROGATE_KEY_NAME');

Line 451: If paywsdyg_pkg.is_table_column_valid(p_rec.table_name,p_rec.start_date_name) = 'N' Then

447: --
448: --Bugfix 3114746
449: if (p_rec.start_date_name is not null
450: and p_rec.end_date_name is not null) then
451: If paywsdyg_pkg.is_table_column_valid(p_rec.table_name,p_rec.start_date_name) = 'N' Then
452: --
453: -- The column does not belong to the table therefore we must error
454: --
455: fnd_message.set_name('PAY', 'HR_xxxx_START_DATE_NAME');

Line 460: If paywsdyg_pkg.is_table_column_valid(p_rec.table_name,p_rec.end_date_name) = 'N' Then

456:
457: fnd_message.raise_error;
458: End If;
459: --
460: If paywsdyg_pkg.is_table_column_valid(p_rec.table_name,p_rec.end_date_name) = 'N' Then
461: --
462: -- The column does not belong to the table therefore we must error
463: --
464: fnd_message.set_name('PAY', 'HR_xxxx_END_DATE_NAME');