DBA Data[Home] [Help]

APPS.PQP_VRE_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_REPOSITORY_ID')
67: );
68: --

Line 1813: IF hr_multi_message.exception_add

1809: --handling multiple messages
1810: --catching all errors and adding to multi message package.
1811: EXCEPTION
1812: WHEN app_exception.application_exception THEN
1813: IF hr_multi_message.exception_add
1814: (p_same_associated_columns => 'Y') THEN
1815: RAISE;
1816: END IF;
1817: -- After validating the set of important attributes

Line 1820: hr_multi_message.end_validation_set;

1816: END IF;
1817: -- After validating the set of important attributes
1818: -- if Multiple Message detection is enabled and at least
1819: -- one error has been found then abort further validation.
1820: hr_multi_message.end_validation_set;
1821: --
1822: -- Validate Dependent Attributes
1823: --
1824: --

Line 2224: IF hr_multi_message.exception_add

2220: fnd_message.raise_error;
2221: END IF;
2222: EXCEPTION
2223: WHEN app_exception.application_exception THEN
2224: IF hr_multi_message.exception_add
2225: (
2226: p_same_associated_columns => 'Y'
2227: ) THEN
2228: RAISE;

Line 2236: hr_multi_message.end_validation_set;

2232: -- After validating the set of important attributes,
2233: -- if Multiple Message detection is enabled and at least
2234: -- one error has been found then abort further validation.
2235: --
2236: hr_multi_message.end_validation_set;
2237: --
2238: -- Validate Dependent Attributes
2239: --
2240: -- Call the datetrack update integrity operation

Line 2322: IF hr_multi_message.exception_add

2318: --handling multiple messages
2319: --catching all errors and adding to multi message package.
2320: Exception
2321: when app_exception.application_exception then
2322: IF hr_multi_message.exception_add
2323: (p_same_associated_columns => 'Y') THEN
2324: RAISE;
2325: END IF;
2326: -- After validating the set of important attributes

Line 2329: hr_multi_message.end_validation_set;

2325: END IF;
2326: -- After validating the set of important attributes
2327: -- if Multiple Message detection is enabled and at least
2328: -- one error has been found then abort further validation.
2329: hr_multi_message.end_validation_set;
2330: End delete_validate;
2331: --
2332: end pqp_vre_bus;