DBA Data[Home] [Help]

APPS.PAY_PAYWSMEE_PKG dependencies on PAY_RESTRICTION_VALUES

Line 197: from pay_restriction_values

193: -- Define how to retrieve customization details
194: --
195: cursor type_customization is
196: select value
197: from pay_restriction_values
198: where restriction_code = 'ELEMENT_TYPE'
199: and customized_restriction_id = p_customized_restriction_id;
200: --
201: cursor set_customization is

Line 203: from pay_restriction_values

199: and customized_restriction_id = p_customized_restriction_id;
200: --
201: cursor set_customization is
202: select fnd_number.canonical_to_number( value )
203: from pay_restriction_values
204: where restriction_code = 'ELEMENT_SET'
205: and customized_restriction_id = p_customized_restriction_id;
206: --
207: cursor entry_type_customization is

Line 209: from pay_restriction_values

205: and customized_restriction_id = p_customized_restriction_id;
206: --
207: cursor entry_type_customization is
208: select value
209: from pay_restriction_values
210: where restriction_code = 'ENTRY_TYPE'
211: and customized_restriction_id = p_customized_restriction_id;
212: --
213: begin