DBA Data[Home] [Help]

APPS.POS_SPM_WF_PKG1 dependencies on FND_GLOBAL

Line 225: get_user_name(fnd_global.user_id, x_first_name, x_last_name);

221: (x_first_name OUT nocopy VARCHAR2,
222: x_last_name OUT nocopy VARCHAR2)
223: IS
224: BEGIN
225: get_user_name(fnd_global.user_id, x_first_name, x_last_name);
226: END get_current_user_name;
227:
228: PROCEDURE get_user_company_name
229: (p_username IN VARCHAR2,

Line 262: get_user_company_name(fnd_global.user_name, x_company_name);

258: PROCEDURE get_current_user_company_name
259: (x_company_name OUT nocopy VARCHAR2)
260: IS
261: BEGIN
262: get_user_company_name(fnd_global.user_name, x_company_name);
263: END get_current_user_company_name;
264:
265: -- This is a private procedure for setting up the
266: -- value for the , of

Line 1537: l_user_id := fnd_global.user_id;

1533: l_name_rec l_name_cur%ROWTYPE;
1534: l_found_email BOOLEAN;
1535: l_found_name BOOLEAN;
1536: BEGIN
1537: l_user_id := fnd_global.user_id;
1538: l_found_email := FALSE;
1539: l_found_name := FALSE;
1540: OPEN l_email_cur;
1541: FETCH l_email_cur INTO l_email_rec;