DBA Data[Home] [Help]

APPS.IGS_FI_WAIVERS_API_PUB dependencies on IGS_FI_GEN_007

Line 185: igs_fi_gen_007.finp_get_conv_prc_run_ind(

181: -- Verify if holds conversion process is currently being executed
182: -- The API would error out if holds conversion process is currently
183: -- being executed
184: l_v_message_name := NULL;
185: igs_fi_gen_007.finp_get_conv_prc_run_ind(
186: p_n_conv_process_run_ind => l_n_conv_process_run_ind,
187: p_v_message_name => l_v_message_name
188: );
189: IF l_n_conv_process_run_ind = 1 AND l_v_message_name IS NULL THEN

Line 206: igs_fi_gen_007.finp_get_balance_rule(

202: END IF;
203:
204: -- Verify if active balance rule for holds balance type has been set up
205: -- in the balance rules form
206: igs_fi_gen_007.finp_get_balance_rule(
207: p_v_balance_type => 'HOLDS',
208: p_v_action => 'ACTIVE',
209: p_n_balance_rule_id => l_n_balance_rule_id,
210: p_d_last_conversion_date => l_d_last_conversion_date,

Line 684: IF igs_fi_gen_007.validate_person ( p_person_id) = 'N' THEN

680: END IF;
681: END IF;
682:
683: -- Validate if the person id passed as inbound parameter to the API is valid or not
684: IF igs_fi_gen_007.validate_person ( p_person_id) = 'N' THEN
685: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN
686: fnd_message.set_name('IGS', 'IGS_FI_INVALID_PERSON');
687: fnd_message.set_token('PERSON_ID',p_person_id);
688: fnd_msg_pub.add;