DBA Data[Home] [Help]

APPS.PO_APPROVAL_REMINDER_SV dependencies on FND_GLOBAL

Line 2530: -- also need to initialize fnd_global

2526: close get_user_id;
2527:
2528: -- bug 852056: Need to create process here, and then set
2529: -- attributes: USER_ID, RESPONSIBILITY_ID, and APPLICATION_ID
2530: -- also need to initialize fnd_global
2531: wf_engine.CreateProcess ( ItemType => l_ItemType,
2532: ItemKey => l_ItemKey,
2533: process => l_WorkflowProcess);
2534:

Line 3367: last_updated_by = fnd_global.user_id

3363: -- SQL What: Set the "Amount Billed notification sent" flag to Y.
3364: UPDATE po_lines_all
3365: SET svc_amount_notif_sent = 'Y',
3366: last_update_date = sysdate,
3367: last_updated_by = fnd_global.user_id
3368: WHERE po_line_id = l_tl_line_rec.po_line_id;
3369:
3370: END IF;
3371:

Line 3391: last_updated_by = fnd_global.user_id

3387: -- SQL What: Set the "Assignment Completion notification sent" flag to Y.
3388: UPDATE po_lines_all
3389: SET svc_completion_notif_sent = 'Y',
3390: last_update_date = sysdate,
3391: last_updated_by = fnd_global.user_id
3392: WHERE po_line_id = l_tl_line_rec.po_line_id;
3393:
3394: END IF;
3395: