DBA Data[Home] [Help]

APPS.PAY_AU_GENERIC_CODE_CALLER dependencies on PAY_AU_PROCESS_PARAMETERS

Line 76: from pay_au_process_parameters pp

72:
73: cursor c_process_parameters(p_process_id number) is
74: select pp.internal_name
75: , pp.data_type
76: from pay_au_process_parameters pp
77: where pp.process_id = p_process_id
78: and pp.enabled_flag = 'Y' ;
79:
80: -- cursor to find the legislation code

Line 187: -- supplied. The pay_au_process_parameters table defines the

183:
184: end loop ;
185:
186: -- check that all the parameters the process requires have been
187: -- supplied. The pay_au_process_parameters table defines the
188: -- parameters the process requires.
189:
190: for r_parameter in c_process_parameters(p_process_id)
191: loop