DBA Data[Home] [Help]

APPS.IGS_FI_PRC_IMPCLC_ANC_CHGS dependencies on APP_EXCEPTION

Line 610: APP_EXCEPTION.Raise_Exception;

606: FND_MESSAGE.Set_Token('PERS_ID_TYPE', p_person_id_type);
607: FND_MESSAGE.Set_Token('API_PERS_ID', p_api_person_id);
608: l_message := FND_MESSAGE.Get;
609: FND_FILE.Put_Line(FND_FILE.Log, l_message);
610: APP_EXCEPTION.Raise_Exception;
611: END IF;
612: ELSE
613:
614: -- If the Person Id is null

Line 622: APP_EXCEPTION.Raise_Exception;

618: FND_MESSAGE.Set_Name('IGS','IGS_FI_API_PERS_ID_NULL');
619: FND_MESSAGE.Set_Token('PERS_ID_TYPE', p_person_id_type);
620: l_message := FND_MESSAGE.Get;
621: FND_FILE.Put_Line(FND_FILE.Log, l_message);
622: APP_EXCEPTION.Raise_Exception;
623:
624: -- Else if the Person Id Type is NULL and the API Person Id is NOT NULL then
625: -- Log this as an error
626: ELSIF ((p_person_id_type IS NULL) AND (p_api_person_id IS NOT NULL)) THEN

Line 631: APP_EXCEPTION.Raise_Exception;

627: FND_MESSAGE.Set_Name('IGS', 'IGS_FI_PERS_ID_TYPE_NULL');
628: FND_MESSAGE.Set_Token('API_PERS_ID', p_api_person_id);
629: l_message := FND_MESSAGE.Get;
630: FND_FILE.Put_Line(FND_FILE.Log, l_message);
631: APP_EXCEPTION.Raise_Exception;
632: END IF;
633: END IF;
634:
635: -- Obtain the currency_cd setup in the system. (Added as part of bug 2584986)

Line 643: app_exception.raise_exception;

639: );
640: IF l_v_message_name IS NOT NULL THEN
641: fnd_message.set_name('IGS',l_v_message_name);
642: fnd_file.put_line(fnd_file.Log,fnd_message.get);
643: app_exception.raise_exception;
644: ELSE
645: l_v_local_currency := l_n_curr_cd;
646: END IF;
647: