DBA Data[Home] [Help]

APPS.XTR_RESET_BOND_RATE dependencies on XTR_FPS3_P

Line 213: v_out_rec xtr_fps3_p.validation_out_rec;

209: p_valid_ok OUT NOCOPY BOOLEAN,
210: p_retcode OUT NOCOPY NUMBER) AS
211:
212:
213: v_out_rec xtr_fps3_p.validation_out_rec;
214: v_in_rec xtr_fps3_p.validation_in_rec;
215: v_settled BOOLEAN := FALSE;
216: v_journaled BOOLEAN := FALSE;
217: v_reconciled BOOLEAN := FALSE;

Line 214: v_in_rec xtr_fps3_p.validation_in_rec;

210: p_retcode OUT NOCOPY NUMBER) AS
211:
212:
213: v_out_rec xtr_fps3_p.validation_out_rec;
214: v_in_rec xtr_fps3_p.validation_in_rec;
215: v_settled BOOLEAN := FALSE;
216: v_journaled BOOLEAN := FALSE;
217: v_reconciled BOOLEAN := FALSE;
218: v_accrued BOOLEAN := FALSE;

Line 254: xtr_fps3_p.settled_validation(v_in_rec,v_out_rec);

250: End if;
251: End if;
252:
253: If p_valid_ok then
254: xtr_fps3_p.settled_validation(v_in_rec,v_out_rec);
255: v_settled:=v_out_rec.yes;
256: v_out_rec.yes:=NULL;
257: if v_settled then
258: l_error := 1;

Line 264: xtr_fps3_p.journaled_validation(v_in_rec,v_out_rec);

260: end if;
261: end if;
262:
263: If p_valid_ok then
264: xtr_fps3_p.journaled_validation(v_in_rec,v_out_rec);
265: v_journaled:=v_out_rec.yes;
266: v_out_rec.yes:=NULL;
267: if v_journaled then
268: l_error := 3;

Line 274: xtr_fps3_p.accrued_validation(v_in_rec,v_out_rec);

270: end if;
271: end if;
272:
273: If p_valid_ok then
274: xtr_fps3_p.accrued_validation(v_in_rec,v_out_rec);
275: v_accrued:=v_out_rec.yes;
276: v_out_rec.yes:=NULL;
277: if v_accrued then
278: l_error := 2;