DBA Data[Home] [Help]

APPS.GME_RESCHEDULE_BATCH_PVT dependencies on GME_CREATE_STEP_PVT

Line 344: gme_create_step_pvt.calc_dates

340: IF l_batch_header_rec.poc_ind = 'Y' THEN
341: IF (x_batch_header_rec.batch_status = gme_common_pvt.g_batch_pending) THEN
342: IF (p_batch_header_rec.plan_start_date IS NOT NULL)
343: AND (p_batch_header_rec.plan_cmplt_date IS NULL) THEN
344: gme_create_step_pvt.calc_dates
345: (p_gme_batch_header_rec => l_batch_header_rec
346: ,p_use_workday_cal => p_use_workday_cal
347: ,p_contiguity_override => p_contiguity_override
348: ,p_return_status => l_return_status);

Line 355: gme_create_step_pvt.calc_dates

351: RAISE cal_dates_error;
352: END IF;
353: ELSIF (p_batch_header_rec.plan_cmplt_date IS NOT NULL)
354: AND (p_batch_header_rec.plan_start_date IS NULL) THEN
355: gme_create_step_pvt.calc_dates
356: (p_gme_batch_header_rec => l_batch_header_rec
357: ,p_use_workday_cal => p_use_workday_cal
358: ,p_contiguity_override => p_contiguity_override
359: ,p_return_status => l_return_status);

Line 368: gme_create_step_pvt.calc_dates

364: END IF; /*plan_start_date not null*/
365:
366: IF ( (p_batch_header_rec.plan_start_date IS NOT NULL)
367: AND (p_batch_header_rec.plan_cmplt_date IS NOT NULL) ) THEN
368: gme_create_step_pvt.calc_dates
369: (p_gme_batch_header_rec => l_batch_header_rec
370: ,p_use_workday_cal => p_use_workday_cal
371: ,p_contiguity_override => p_contiguity_override
372: ,p_return_status => l_return_status);

Line 382: gme_create_step_pvt.calc_dates

378: END IF; /* batch_status = 1*/
379:
380: IF (x_batch_header_rec.batch_status = gme_common_pvt.g_batch_wip) THEN
381: IF (p_batch_header_rec.plan_cmplt_date IS NOT NULL) THEN
382: gme_create_step_pvt.calc_dates
383: (p_gme_batch_header_rec => p_batch_header_rec
384: ,p_use_workday_cal => p_use_workday_cal
385: ,p_contiguity_override => p_contiguity_override
386: ,p_return_status => l_return_status);