DBA Data[Home] [Help]

APPS.PAY_PAYWSMEE_PKG dependencies on PAY_RESTRICTION_VALUES

Line 180: from pay_restriction_values

176: -- Define how to retrieve customization details
177: --
178: cursor type_customization is
179: select value
180: from pay_restriction_values
181: where restriction_code = 'ELEMENT_TYPE'
182: and customized_restriction_id = p_customized_restriction_id;
183: --
184: cursor set_customization is

Line 186: from pay_restriction_values

182: and customized_restriction_id = p_customized_restriction_id;
183: --
184: cursor set_customization is
185: select fnd_number.canonical_to_number( value )
186: from pay_restriction_values
187: where restriction_code = 'ELEMENT_SET'
188: and customized_restriction_id = p_customized_restriction_id;
189: --
190: cursor entry_type_customization is

Line 192: from pay_restriction_values

188: and customized_restriction_id = p_customized_restriction_id;
189: --
190: cursor entry_type_customization is
191: select value
192: from pay_restriction_values
193: where restriction_code = 'ENTRY_TYPE'
194: and customized_restriction_id = p_customized_restriction_id;
195: --
196: begin