DBA Data[Home] [Help]

APPS.IGI_IAC_REVAL_ASSET_RULES_PKG dependencies on FND_GLOBAL

Line 51: x_created_by := fnd_global.user_id;

47:
48: IF (x_mode = 'R') THEN
49: x_last_update_date := SYSDATE;
50: x_creation_date := SYSDATE;
51: x_created_by := fnd_global.user_id;
52:
53: IF (x_created_by IS NULL) THEN
54: x_created_by := -1;
55: END IF;

Line 57: x_last_updated_by := fnd_global.user_id;

53: IF (x_created_by IS NULL) THEN
54: x_created_by := -1;
55: END IF;
56:
57: x_last_updated_by := fnd_global.user_id;
58: IF (x_last_updated_by IS NULL) THEN
59: x_last_updated_by := -1;
60: END IF;
61:

Line 62: x_last_update_login := fnd_global.login_id;

58: IF (x_last_updated_by IS NULL) THEN
59: x_last_updated_by := -1;
60: END IF;
61:
62: x_last_update_login := fnd_global.login_id;
63: IF (x_last_update_login IS NULL) THEN
64: x_last_update_login := -1;
65: END IF;
66: ELSE