DBA Data[Home] [Help]

APPS.HZ_GNR_PKG dependencies on FND_PROFILE

Line 322: l_num_of_workers := fnd_profile.VALUE('HZ_GNR_NUM_OF_WORKERS');

318: RAISE FND_API.G_EXC_ERROR;
319: END IF;
320: END IF;
321:
322: l_num_of_workers := fnd_profile.VALUE('HZ_GNR_NUM_OF_WORKERS');
323:
324: -- if profile is set to a value less than 1 i.e. 0 or -ve value, then
325: -- set number of workers to 1 (Fix for Bug 4645523 by Nishant on 11-Oct-2005)
326: IF (NVL(l_num_of_workers,0) < 1) THEN

Line 892: l_commit_size := NVL(fnd_profile.value('HZ_GNR_COMMIT_SIZE'),1000);

888: l_start_date := fnd_date.canonical_to_date(p_start_date);
889: l_end_date := fnd_date.canonical_to_date(p_end_date);
890: l_num_workers := TO_NUMBER(p_num_workers);
891: l_worker_number := TO_NUMBER(p_worker_number);
892: l_commit_size := NVL(fnd_profile.value('HZ_GNR_COMMIT_SIZE'),1000);
893: l_run_type := NVL(p_run_type,'ALL'); -- Complete refresh for passed location ids
894: l_country_code := UPPER(p_country_code);
895:
896: retcode := 0;