DBA Data[Home] [Help]

APPS.AR_BPA_BFPRI_CONC dependencies on FND_DATE

Line 414: p_bill_date_low:= fnd_date.canonical_to_date(FND_REQUEST_INFO.GET_PARAMETER(parm_number));

410: retval := FND_REQUEST_INFO.GET_PARAM_NUMBER('Billing Date Low',parm_number);
411: IF retval = -1 THEN
412: p_bill_date_low:= NULL;
413: ELSE
414: p_bill_date_low:= fnd_date.canonical_to_date(FND_REQUEST_INFO.GET_PARAMETER(parm_number));
415: END IF;
416: fnd_file.put_line( fnd_file.log, 'p_bill_date_low: ' || p_bill_date_low);
417:
418: retval := FND_REQUEST_INFO.GET_PARAM_NUMBER('Billing Date High',parm_number);

Line 422: p_bill_date_high:= fnd_date.canonical_to_date(FND_REQUEST_INFO.GET_PARAMETER(parm_number));

418: retval := FND_REQUEST_INFO.GET_PARAM_NUMBER('Billing Date High',parm_number);
419: IF retval = -1 THEN
420: p_bill_date_high:= NULL;
421: ELSE
422: p_bill_date_high:= fnd_date.canonical_to_date(FND_REQUEST_INFO.GET_PARAMETER(parm_number));
423: END IF;
424: fnd_file.put_line( fnd_file.log, 'p_bill_date_high: ' || p_bill_date_high);
425:
426: retval := FND_REQUEST_INFO.GET_PARAM_NUMBER('Billing Number Low',parm_number);

Line 608: p_bill_date_high := fnd_date.canonical_to_date(p_bill_date_high_in);

604: FND_FILE.PUT_LINE( FND_FILE.LOG, 'userenv_lang: '|| userenv_lang );
605: fnd_file.put_line( fnd_file.log, 'base_lang: ' || base_lang);
606:
607: if p_job_size > 0 then l_job_size := p_job_size; end if;
608: p_bill_date_high := fnd_date.canonical_to_date(p_bill_date_high_in);
609: p_bill_date_low := fnd_date.canonical_to_date(p_bill_date_low_in);
610: -- print out the input parameters;
611: FND_FILE.PUT_LINE( FND_FILE.LOG, 'p_org_id: '|| p_org_id );
612: FND_FILE.PUT_LINE( FND_FILE.LOG, 'l_job_size: '|| l_job_size );

Line 609: p_bill_date_low := fnd_date.canonical_to_date(p_bill_date_low_in);

605: fnd_file.put_line( fnd_file.log, 'base_lang: ' || base_lang);
606:
607: if p_job_size > 0 then l_job_size := p_job_size; end if;
608: p_bill_date_high := fnd_date.canonical_to_date(p_bill_date_high_in);
609: p_bill_date_low := fnd_date.canonical_to_date(p_bill_date_low_in);
610: -- print out the input parameters;
611: FND_FILE.PUT_LINE( FND_FILE.LOG, 'p_org_id: '|| p_org_id );
612: FND_FILE.PUT_LINE( FND_FILE.LOG, 'l_job_size: '|| l_job_size );
613: FND_FILE.PUT_LINE( FND_FILE.LOG, 'p_cust_num_low: '|| p_cust_num_low );