DBA Data[Home] [Help]

APPS.GMD_AUTO_SAMPLE_PKG dependencies on FND_GLOBAL

Line 155: fnd_global.apps_initialize (user_id => x_sampling_event.last_updated_by,

151:
152: BEGIN
153:
154: -- Begin bug#6276012
155: fnd_global.apps_initialize (user_id => x_sampling_event.last_updated_by,
156: resp_id => NULL,
157: resp_appl_id => NULL
158: );
159: fnd_profile.initialize (x_sampling_event.last_updated_by);

Line 170: p_event_spec_disp.CREATED_BY := FND_GLOBAL.USER_ID;

166: p_event_spec_disp.DISPOSITION := '0PL';
167: p_event_spec_disp.SPEC_USED_FOR_LOT_ATTRIB_IND := 'Y';
168: p_event_spec_disp.DELETE_MARK := 0;
169: p_event_spec_disp.CREATION_DATE := sysdate;
170: p_event_spec_disp.CREATED_BY := FND_GLOBAL.USER_ID;
171: p_event_spec_disp.LAST_UPDATE_DATE := sysdate;
172: p_event_spec_disp.LAST_UPDATED_BY := FND_GLOBAL.USER_ID;
173:
174:

Line 172: p_event_spec_disp.LAST_UPDATED_BY := FND_GLOBAL.USER_ID;

168: p_event_spec_disp.DELETE_MARK := 0;
169: p_event_spec_disp.CREATION_DATE := sysdate;
170: p_event_spec_disp.CREATED_BY := FND_GLOBAL.USER_ID;
171: p_event_spec_disp.LAST_UPDATE_DATE := sysdate;
172: p_event_spec_disp.LAST_UPDATED_BY := FND_GLOBAL.USER_ID;
173:
174:
175: IF NOT GMD_EVENT_SPEC_DISP_PVT.insert_row(
176: p_event_spec_disp =>p_event_spec_disp,

Line 217: p_sample.created_by := FND_GLOBAL.USER_ID;

213: p_Sample.inventory_item_id := x_sampling_event.inventory_item_id ;
214: p_Sample.revision := x_sampling_event.revision;
215: p_sample.delete_mark := 0;
216: p_sample.creation_date := sysdate;
217: p_sample.created_by := FND_GLOBAL.USER_ID;
218: p_sample.last_update_date := sysdate;
219: p_sample.last_updated_by := FND_GLOBAL.USER_ID;
220: p_sample.sampler_id := FND_GLOBAL.USER_ID;
221:

Line 219: p_sample.last_updated_by := FND_GLOBAL.USER_ID;

215: p_sample.delete_mark := 0;
216: p_sample.creation_date := sysdate;
217: p_sample.created_by := FND_GLOBAL.USER_ID;
218: p_sample.last_update_date := sysdate;
219: p_sample.last_updated_by := FND_GLOBAL.USER_ID;
220: p_sample.sampler_id := FND_GLOBAL.USER_ID;
221:
222: p_sample.priority := '5N' ;
223: p_sample.remaining_qty := p_sample.sample_qty;

Line 220: p_sample.sampler_id := FND_GLOBAL.USER_ID;

216: p_sample.creation_date := sysdate;
217: p_sample.created_by := FND_GLOBAL.USER_ID;
218: p_sample.last_update_date := sysdate;
219: p_sample.last_updated_by := FND_GLOBAL.USER_ID;
220: p_sample.sampler_id := FND_GLOBAL.USER_ID;
221:
222: p_sample.priority := '5N' ;
223: p_sample.remaining_qty := p_sample.sample_qty;
224:

Line 278: p_sample_spec_disp.created_by := FND_GLOBAL.USER_ID;

274: p_sample_spec_disp.event_spec_disp_id := x_event_spec_disp.event_spec_disp_id;
275: p_sample_spec_disp.disposition := '0PL';
276: p_sample_spec_disp.delete_mark := 0;
277: p_sample_spec_disp.creation_date := sysdate;
278: p_sample_spec_disp.created_by := FND_GLOBAL.USER_ID;
279: p_sample_spec_disp.last_update_date := sysdate;
280: p_sample_spec_disp.last_updated_by := FND_GLOBAL.USER_ID;
281:
282: IF not GMD_SAMPLE_SPEC_DISP_PVT.insert_row (

Line 280: p_sample_spec_disp.last_updated_by := FND_GLOBAL.USER_ID;

276: p_sample_spec_disp.delete_mark := 0;
277: p_sample_spec_disp.creation_date := sysdate;
278: p_sample_spec_disp.created_by := FND_GLOBAL.USER_ID;
279: p_sample_spec_disp.last_update_date := sysdate;
280: p_sample_spec_disp.last_updated_by := FND_GLOBAL.USER_ID;
281:
282: IF not GMD_SAMPLE_SPEC_DISP_PVT.insert_row (
283: p_sample_spec_disp ) THEN
284: raise fnd_api.g_exc_error;

Line 304: p_sample.created_by := FND_GLOBAL.USER_ID;

300: p_Sample.inventory_item_id := x_sampling_event.inventory_item_id ;
301: p_Sample.revision := x_sampling_event.revision;
302: p_sample.delete_mark := 0;
303: p_sample.creation_date := sysdate;
304: p_sample.created_by := FND_GLOBAL.USER_ID;
305: p_sample.last_update_date := sysdate;
306: p_sample.last_updated_by := FND_GLOBAL.USER_ID;
307: p_sample.sampler_id := FND_GLOBAL.USER_ID;
308:

Line 306: p_sample.last_updated_by := FND_GLOBAL.USER_ID;

302: p_sample.delete_mark := 0;
303: p_sample.creation_date := sysdate;
304: p_sample.created_by := FND_GLOBAL.USER_ID;
305: p_sample.last_update_date := sysdate;
306: p_sample.last_updated_by := FND_GLOBAL.USER_ID;
307: p_sample.sampler_id := FND_GLOBAL.USER_ID;
308:
309: p_sample.priority := '5N' ;
310: p_sample.remaining_qty := p_sample.sample_qty;

Line 307: p_sample.sampler_id := FND_GLOBAL.USER_ID;

303: p_sample.creation_date := sysdate;
304: p_sample.created_by := FND_GLOBAL.USER_ID;
305: p_sample.last_update_date := sysdate;
306: p_sample.last_updated_by := FND_GLOBAL.USER_ID;
307: p_sample.sampler_id := FND_GLOBAL.USER_ID;
308:
309: p_sample.priority := '5N' ;
310: p_sample.remaining_qty := p_sample.sample_qty;
311: --RLNAGARA B5463399 Commented the below line and added next line so that the correct operating unit get populated.

Line 388: p_sample.created_by := FND_GLOBAL.USER_ID;

384: p_Sample.inventory_item_id := x_sampling_event.inventory_item_id ;
385: p_Sample.revision := x_sampling_event.revision;
386: p_sample.delete_mark := 0;
387: p_sample.creation_date := sysdate;
388: p_sample.created_by := FND_GLOBAL.USER_ID;
389: p_sample.last_update_date := sysdate;
390: p_sample.last_updated_by := FND_GLOBAL.USER_ID;
391: p_sample.sampler_id := FND_GLOBAL.USER_ID;
392:

Line 390: p_sample.last_updated_by := FND_GLOBAL.USER_ID;

386: p_sample.delete_mark := 0;
387: p_sample.creation_date := sysdate;
388: p_sample.created_by := FND_GLOBAL.USER_ID;
389: p_sample.last_update_date := sysdate;
390: p_sample.last_updated_by := FND_GLOBAL.USER_ID;
391: p_sample.sampler_id := FND_GLOBAL.USER_ID;
392:
393: p_sample.priority := '5N' ;
394: p_sample.remaining_qty := p_sample.sample_qty;

Line 391: p_sample.sampler_id := FND_GLOBAL.USER_ID;

387: p_sample.creation_date := sysdate;
388: p_sample.created_by := FND_GLOBAL.USER_ID;
389: p_sample.last_update_date := sysdate;
390: p_sample.last_updated_by := FND_GLOBAL.USER_ID;
391: p_sample.sampler_id := FND_GLOBAL.USER_ID;
392:
393: p_sample.priority := '5N' ;
394: p_sample.remaining_qty := p_sample.sample_qty;
395: