DBA Data[Home] [Help]

APPS.IGS_PS_CAL_RSR_VAL dependencies on FND_FILE

Line 59: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MESSAGE.GET);

55: BEGIN
56: FND_MESSAGE.SET_NAME('IGS','IGS_PS_DEL_PRIORITY_LOG');
57: FND_MESSAGE.SET_TOKEN('PARAMETER_NAME',p_msg_name);
58: FND_MESSAGE.SET_TOKEN('PARAMETER_VAL' ,p_msg_val) ;
59: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MESSAGE.GET);
60: END log_messages ;
61:
62: PROCEDURE del_reserved_seating ( errbuf OUT NOCOPY VARCHAR2,
63: retcode OUT NOCOPY NUMBER,

Line 153: FND_FILE.PUT_LINE(FND_FILE.LOG,NULL);

149: log_messages(igs_fi_gen_gl.get_lkp_meaning('LEGACY_TOKENS','UNIT_VER_NUM')||' : ',p_version_number);
150: log_messages(igs_fi_gen_gl.get_lkp_meaning('ORG_STRUCTURE_TYPE','LOCATION')||' : ',p_location_cd);
151: log_messages(igs_fi_gen_gl.get_lkp_meaning('LEGACY_TOKENS','UNIT_CLASS')||' : ',p_unit_class);
152: log_messages(igs_fi_gen_gl.get_lkp_meaning('IGS_PS_LOG_PARAMETERS','UNIT_MODE')||' : ',p_unit_mode);
153: FND_FILE.PUT_LINE(FND_FILE.LOG,NULL);
154: FND_FILE.PUT_LINE(FND_FILE.LOG,NULL);
155:
156: -- Checking whether Organisation unit code or Unit code is present or not.
157: -- If both the values are not available then it will terminate the process.

Line 154: FND_FILE.PUT_LINE(FND_FILE.LOG,NULL);

150: log_messages(igs_fi_gen_gl.get_lkp_meaning('ORG_STRUCTURE_TYPE','LOCATION')||' : ',p_location_cd);
151: log_messages(igs_fi_gen_gl.get_lkp_meaning('LEGACY_TOKENS','UNIT_CLASS')||' : ',p_unit_class);
152: log_messages(igs_fi_gen_gl.get_lkp_meaning('IGS_PS_LOG_PARAMETERS','UNIT_MODE')||' : ',p_unit_mode);
153: FND_FILE.PUT_LINE(FND_FILE.LOG,NULL);
154: FND_FILE.PUT_LINE(FND_FILE.LOG,NULL);
155:
156: -- Checking whether Organisation unit code or Unit code is present or not.
157: -- If both the values are not available then it will terminate the process.
158:

Line 161: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MESSAGE.GET);

157: -- If both the values are not available then it will terminate the process.
158:
159: IF ((p_org_unit_cd IS NULL) AND (p_unit_cd IS NULL) ) THEN
160: FND_MESSAGE.SET_NAME('IGS','IGS_PS_ORG_OR_UNIT_MUST');
161: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MESSAGE.GET);
162: IGS_GE_MSG_STACK.ADD;
163: APP_EXCEPTION.RAISE_EXCEPTION ;
164:
165: ELSE

Line 189: FND_FILE.PUT_LINE(FND_FILE.LOG,NULL);

185: log_messages(igs_fi_gen_gl.get_lkp_meaning('LEGACY_TOKENS','UNIT_VER_NUM')||' : ',r_cur_uoo.version_number);
186: log_messages(igs_fi_gen_gl.get_lkp_meaning('ORG_STRUCTURE_TYPE','LOCATION')||' : ',r_cur_uoo.location_description);
187: log_messages(igs_fi_gen_gl.get_lkp_meaning('LEGACY_TOKENS','UNIT_CLASS')||' : ',r_cur_uoo.unit_class);
188: log_messages(igs_fi_gen_gl.get_lkp_meaning('IGS_PS_LOG_PARAMETERS','UNIT_MODE')||' : ',r_cur_uoo.unit_mode);
189: FND_FILE.PUT_LINE(FND_FILE.LOG,NULL);
190:
191:
192: -- Updating Reserved Seating Allowed value to 'N'
193: -- Added auditable_ind and audit_permission_ind to the following call as part of Bug# 2636716 by shtatiko

Line 654: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MESSAGE.GET);

650:
651: ELSE
652:
653: FND_MESSAGE.SET_NAME('IGS','IGS_PS_TEACH_CAL_NOT_FOUND');
654: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MESSAGE.GET);
655:
656: END IF;
657: EXCEPTION
658: WHEN OTHERS THEN