DBA Data[Home] [Help]

APPS.PQP_VAL_BUS dependencies on HR_MULTI_MESSAGE

Line 64: hr_multi_message.add

60: --
61: -- The primary key is invalid therefore we must error
62: --
63: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
64: hr_multi_message.add
65: (p_associated_column1
66: => nvl(p_associated_column1,'VEHICLE_ALLOCATION_ID')
67: );
68: --

Line 1680: IF hr_multi_message.exception_add

1676: END IF;
1677: END IF;
1678: Exception
1679: when app_exception.application_exception then
1680: IF hr_multi_message.exception_add
1681: (
1682: p_same_associated_columns => 'Y'
1683: ) then
1684: raise;

Line 1688: hr_multi_message.end_validation_set;

1684: raise;
1685: END IF;
1686:
1687:
1688: hr_multi_message.end_validation_set;
1689: --
1690: -- Validate Dependent Attributes
1691: --
1692: --

Line 1914: IF hr_multi_message.exception_add

1910: END IF;
1911:
1912: Exception
1913: when app_exception.application_exception then
1914: IF hr_multi_message.exception_add
1915: (
1916: p_same_associated_columns => 'Y'
1917: ) then
1918: raise;

Line 1924: hr_multi_message.end_validation_set;

1920: pqp_val_bus.chk_ddf(p_rec);
1921: --
1922: pqp_val_bus.chk_df(p_rec);
1923: --
1924: hr_multi_message.end_validation_set;
1925: hr_utility.set_location(' Leaving:'||l_proc, 10);
1926: End update_validate;
1927: --
1928: -- ----------------------------------------------------------------------------