DBA Data[Home] [Help]

APPS.ASG_CONS_QPKG dependencies on ASG_APPLY

Line 204: asg_apply.process_sequences(p_clientid, p_tranid, l_return_status);

200: --set hwm_tranid to tranid-1 and make synch_errors null
201: -- Moved to download_init Because we shouldn't process uploads when it is in auto sync
202: -- asg_helper.set_synch_errmsg(p_clientid,(p_tranid-1),null,null);
203:
204: asg_apply.process_sequences(p_clientid, p_tranid, l_return_status);
205:
206: asg_apply.process_mobile_queries(p_clientid, p_tranid, l_return_status);
207:
208: asg_apply.setup_inq_info(p_clientid, p_tranid, l_return_status);

Line 206: asg_apply.process_mobile_queries(p_clientid, p_tranid, l_return_status);

202: -- asg_helper.set_synch_errmsg(p_clientid,(p_tranid-1),null,null);
203:
204: asg_apply.process_sequences(p_clientid, p_tranid, l_return_status);
205:
206: asg_apply.process_mobile_queries(p_clientid, p_tranid, l_return_status);
207:
208: asg_apply.setup_inq_info(p_clientid, p_tranid, l_return_status);
209: --12.1
210: insert_auto_sync_tranids(p_clientid, p_tranid);

Line 208: asg_apply.setup_inq_info(p_clientid, p_tranid, l_return_status);

204: asg_apply.process_sequences(p_clientid, p_tranid, l_return_status);
205:
206: asg_apply.process_mobile_queries(p_clientid, p_tranid, l_return_status);
207:
208: asg_apply.setup_inq_info(p_clientid, p_tranid, l_return_status);
209: --12.1
210: insert_auto_sync_tranids(p_clientid, p_tranid);
211: COMMIT;
212:

Line 219: asg_apply.synchronous_process_upload(p_clientid);

215: AND (fnd_profile.value_specific('ASG_SYNCHRONOUS_UPLOAD',asg_base.get_user_id(p_clientid))='Y') THEN
216:
217: l_sync_id:=set_sync_id(p_clientid, p_tranid);
218: UPDATE asg_user SET hwm_tranid = nvl(l_sync_id,hwm_tranid) WHERE user_name = p_clientid;
219: asg_apply.synchronous_process_upload(p_clientid);
220:
221: END IF;
222:
223: EXCEPTION