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 1678: IF hr_multi_message.exception_add

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

Line 1686: hr_multi_message.end_validation_set;

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

Line 1912: IF hr_multi_message.exception_add

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

Line 1922: hr_multi_message.end_validation_set;

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