DBA Data[Home] [Help]

APPS.ASG_CONS_QPKG dependencies on ASG_DOWNLOAD

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

280: raise synch_disabled;
281: END IF;
282: -- Initialize all the session information except the list of pubitems
283: -- to be downloaded
284: g_first_synch := asg_download.isFirstSync();
285: l_last_synch_date := find_last_synch_date(p_clientid,
286: p_last_tranid);
287: g_device_type := find_device_type(p_clientid);
288: asg_base.init(p_clientid, p_last_tranid, p_curr_tranid,

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

309:
310: -- Check if customization is disabled
311: process_custom_pub_items(p_clientid);
312:
313: l_bool_ret := asg_download.processsdq(p_clientid, p_last_tranid,
314: p_curr_tranid, p_high_prty,
315: l_ret_msg);
316: IF l_bool_ret = FALSE THEN
317: if l_ret_msg is null

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

324: THEN
325: asg_helper.log('processsdq returned FALSE', 'asg_cons_qpkg',
326: g_err_level);
327: END IF;
328: asg_helper.set_synch_errmsg(p_clientid, null, g_device_type,'Error during download in asg_download.processsdq: '||
329: l_sqlerror_message);
330:
331: RAISE_APPLICATION_ERROR(-20999, 'Error during download in ' ||
332: 'asg_download.processsdq ' ||

Line 332: 'asg_download.processsdq ' ||

328: asg_helper.set_synch_errmsg(p_clientid, null, g_device_type,'Error during download in asg_download.processsdq: '||
329: l_sqlerror_message);
330:
331: RAISE_APPLICATION_ERROR(-20999, 'Error during download in ' ||
332: 'asg_download.processsdq ' ||
333: l_sqlerror_message);
334: END IF;
335:
336: -- Check for conflicts

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

416: --new code
417: set_synch_completed(p_clientid);
418:
419: BEGIN
420: l_bool_ret := asg_download.purgesdq();
421: IF l_bool_ret = FALSE THEN
422: l_sqlerror_message := SQLERRM;
423: IF(asg_helper.check_is_log_enabled(g_err_level))
424: THEN

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

425: asg_helper.log('purgesdq returned FALSE',
426: 'asg_cons_qpkg',g_err_level);
427: END IF;
428: RAISE_APPLICATION_ERROR(-20997, 'Error during download in ' ||
429: 'asg_download.purgesdq ' || l_sqlerror_message);
430: END IF;
431:
432: -- Update the synctime end in asg_user table
433: l_last_tranid := asg_base.get_last_tranid();