DBA Data[Home] [Help]

APPS.ASG_CONS_QPKG dependencies on ASG_DOWNLOAD

Line 318: g_first_synch := asg_download.isFirstSync();

314: raise synch_disabled;
315: END IF;
316: -- Initialize all the session information except the list of pubitems
317: -- to be downloaded
318: g_first_synch := asg_download.isFirstSync();
319: g_auto_synch := asg_base.is_auto_sync();
320: l_last_synch_date := find_last_synch_date(p_clientid,
321: p_last_tranid);
322: g_device_type := find_device_type(p_clientid);

Line 348: l_bool_ret := asg_download.processsdq(p_clientid, p_last_tranid,

344:
345: -- Check if customization is disabled
346: process_custom_pub_items(p_clientid);
347:
348: l_bool_ret := asg_download.processsdq(p_clientid, p_last_tranid,
349: p_curr_tranid, p_high_prty,
350: l_ret_msg);
351: IF l_bool_ret = FALSE THEN
352: if l_ret_msg is null

Line 363: asg_helper.set_synch_errmsg(p_clientid, null, g_device_type,'Error during download in asg_download.processsdq: '||

359: THEN
360: asg_helper.log('processsdq returned FALSE', 'asg_cons_qpkg',
361: g_err_level);
362: END IF;
363: asg_helper.set_synch_errmsg(p_clientid, null, g_device_type,'Error during download in asg_download.processsdq: '||
364: l_sqlerror_message);
365:
366: RAISE_APPLICATION_ERROR(-20999, 'Error during download in ' ||
367: 'asg_download.processsdq ' ||

Line 367: 'asg_download.processsdq ' ||

363: asg_helper.set_synch_errmsg(p_clientid, null, g_device_type,'Error during download in asg_download.processsdq: '||
364: l_sqlerror_message);
365:
366: RAISE_APPLICATION_ERROR(-20999, 'Error during download in ' ||
367: 'asg_download.processsdq ' ||
368: l_sqlerror_message);
369: END IF;
370:
371: -- Check for conflicts

Line 456: l_bool_ret := asg_download.purgesdq();

452: --new code
453: set_synch_completed(p_clientid);
454:
455: BEGIN
456: l_bool_ret := asg_download.purgesdq();
457: IF l_bool_ret = FALSE THEN
458: l_sqlerror_message := SQLERRM;
459: IF(asg_helper.check_is_log_enabled(g_err_level))
460: THEN

Line 465: 'asg_download.purgesdq ' || l_sqlerror_message);

461: asg_helper.log('purgesdq returned FALSE',
462: 'asg_cons_qpkg',g_err_level);
463: END IF;
464: RAISE_APPLICATION_ERROR(-20997, 'Error during download in ' ||
465: 'asg_download.purgesdq ' || l_sqlerror_message);
466: END IF;
467:
468: -- Update the synctime end in asg_user table
469: l_last_tranid := asg_base.get_last_tranid();