DBA Data[Home] [Help]

APPS.GML_PO_RECV2_PKG dependencies on FND_GLOBAL

Line 342: | 16-DOC-99 NC - Added FND_GLOBAL.APPS_INITIALIZE . |

338: | |
339: | 10/22/97 Kenny Jiang created |
340: | 23-NOV-99 NC - modified all references to cpg_receiving_interface table
341: | which nolonger exists. |
342: | 16-DOC-99 NC - Added FND_GLOBAL.APPS_INITIALIZE . |
343: | 03-MAR-00 HW - BUG#:1222247 - changed status code |
344: =========================================================================*/
345:
346: PROCEDURE update_line_locations

Line 429: the FND_GLOBAL user_id and resp_id had wrong values becoz of which

425: v_last_updated_by := v_created_by;
426:
427: /* When closed_code is updated in po_line_locations_all, a trigger on
428: that table tries to fire a concurrent program. For some reason
429: the FND_GLOBAL user_id and resp_id had wrong values becoz of which
430: the concurrenct request was not getting fired( returning "CONC-Unable to
431: get oracle name") error. Hence added the following APPS_INITIALIZE call.
432: -- NC 12/16/99 */
433:

Line 435: v_resp_appl_id := FND_GLOBAL.resp_appl_id;

431: get oracle name") error. Hence added the following APPS_INITIALIZE call.
432: -- NC 12/16/99 */
433:
434: v_user_id := v_created_by;
435: v_resp_appl_id := FND_GLOBAL.resp_appl_id;
436:
437: OPEN resp_id_cur;
438: FETCH resp_id_cur INTO v_resp_id;
439: CLOSE resp_id_cur;

Line 441: FND_GLOBAL.APPS_INITIALIZE(v_user_id,v_resp_id,v_resp_appl_id);

437: OPEN resp_id_cur;
438: FETCH resp_id_cur INTO v_resp_id;
439: CLOSE resp_id_cur;
440:
441: FND_GLOBAL.APPS_INITIALIZE(v_user_id,v_resp_id,v_resp_appl_id);
442:
443:
444: IF v_po_status = 20 THEN
445: /* BUG#:1222247 - make status Closed for Receiving */