DBA Data[Home] [Help]

APPS.AR_BPA_BFPRI_CONC dependencies on FND_DATE

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

418: retval := FND_REQUEST_INFO.GET_PARAM_NUMBER('Billing Date Low',parm_number);
419: IF retval = -1 THEN
420: p_bill_date_low:= NULL;
421: ELSE
422: p_bill_date_low:= 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_low: ' || p_bill_date_low);
425:
426: retval := FND_REQUEST_INFO.GET_PARAM_NUMBER('Billing Date High',parm_number);

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

426: retval := FND_REQUEST_INFO.GET_PARAM_NUMBER('Billing Date High',parm_number);
427: IF retval = -1 THEN
428: p_bill_date_high:= NULL;
429: ELSE
430: p_bill_date_high:= fnd_date.canonical_to_date(FND_REQUEST_INFO.GET_PARAMETER(parm_number));
431: END IF;
432: fnd_file.put_line( fnd_file.log, 'p_bill_date_high: ' || p_bill_date_high);
433:
434: retval := FND_REQUEST_INFO.GET_PARAM_NUMBER('Billing Number Low',parm_number);

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

614: FND_FILE.PUT_LINE( FND_FILE.LOG, 'userenv_lang: '|| userenv_lang );
615: --fnd_file.put_line( fnd_file.log, 'base_lang: ' || base_lang);
616:
617: if p_job_size > 0 then l_job_size := p_job_size; end if;
618: p_bill_date_high := fnd_date.canonical_to_date(p_bill_date_high_in);
619: p_bill_date_low := fnd_date.canonical_to_date(p_bill_date_low_in);
620: -- print out the input parameters;
621: FND_FILE.PUT_LINE( FND_FILE.LOG, 'p_org_id: '|| p_org_id );
622: FND_FILE.PUT_LINE( FND_FILE.LOG, 'l_job_size: '|| l_job_size );

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

615: --fnd_file.put_line( fnd_file.log, 'base_lang: ' || base_lang);
616:
617: if p_job_size > 0 then l_job_size := p_job_size; end if;
618: p_bill_date_high := fnd_date.canonical_to_date(p_bill_date_high_in);
619: p_bill_date_low := fnd_date.canonical_to_date(p_bill_date_low_in);
620: -- print out the input parameters;
621: FND_FILE.PUT_LINE( FND_FILE.LOG, 'p_org_id: '|| p_org_id );
622: FND_FILE.PUT_LINE( FND_FILE.LOG, 'l_job_size: '|| l_job_size );
623: FND_FILE.PUT_LINE( FND_FILE.LOG, 'p_cust_num_low: '|| p_cust_num_low );