DBA Data[Home] [Help]

APPS.BSC_KPI_MEASURE_WEIGHTS_PVT dependencies on FND_GLOBAL

Line 47: , NVL(p_kpi_measure_weights_rec.created_by, FND_GLOBAL.USER_ID)

43: ( p_kpi_measure_weights_rec.objective_id
44: , p_kpi_measure_weights_rec.kpi_measure_id
45: , p_kpi_measure_weights_rec.weight
46: , NVL(p_kpi_measure_weights_rec.creation_date, SYSDATE)
47: , NVL(p_kpi_measure_weights_rec.created_by, FND_GLOBAL.USER_ID)
48: , NVL(p_kpi_measure_weights_rec.last_update_date, SYSDATE)
49: , NVL(p_kpi_measure_weights_rec.last_updated_by, FND_GLOBAL.USER_ID)
50: , NVL(p_kpi_measure_weights_rec.last_update_login, FND_GLOBAL.LOGIN_ID)
51: );

Line 49: , NVL(p_kpi_measure_weights_rec.last_updated_by, FND_GLOBAL.USER_ID)

45: , p_kpi_measure_weights_rec.weight
46: , NVL(p_kpi_measure_weights_rec.creation_date, SYSDATE)
47: , NVL(p_kpi_measure_weights_rec.created_by, FND_GLOBAL.USER_ID)
48: , NVL(p_kpi_measure_weights_rec.last_update_date, SYSDATE)
49: , NVL(p_kpi_measure_weights_rec.last_updated_by, FND_GLOBAL.USER_ID)
50: , NVL(p_kpi_measure_weights_rec.last_update_login, FND_GLOBAL.LOGIN_ID)
51: );
52:
53: IF (p_commit = FND_API.G_TRUE) THEN

Line 50: , NVL(p_kpi_measure_weights_rec.last_update_login, FND_GLOBAL.LOGIN_ID)

46: , NVL(p_kpi_measure_weights_rec.creation_date, SYSDATE)
47: , NVL(p_kpi_measure_weights_rec.created_by, FND_GLOBAL.USER_ID)
48: , NVL(p_kpi_measure_weights_rec.last_update_date, SYSDATE)
49: , NVL(p_kpi_measure_weights_rec.last_updated_by, FND_GLOBAL.USER_ID)
50: , NVL(p_kpi_measure_weights_rec.last_update_login, FND_GLOBAL.LOGIN_ID)
51: );
52:
53: IF (p_commit = FND_API.G_TRUE) THEN
54: COMMIT;

Line 144: l_kpi_measure_weights_rec.last_updated_by := FND_GLOBAL.USER_ID;

140: ELSE
141: l_kpi_measure_weights_rec.last_update_date := p_kpi_measure_weights_rec.last_update_date;
142: END IF;
143: IF (p_kpi_measure_weights_rec.last_updated_by IS NULL) THEN
144: l_kpi_measure_weights_rec.last_updated_by := FND_GLOBAL.USER_ID;
145: ELSE
146: l_kpi_measure_weights_rec.last_updated_by := p_kpi_measure_weights_rec.last_updated_by;
147: END IF;
148: IF (p_kpi_measure_weights_rec.last_update_login IS NULL) THEN

Line 149: l_kpi_measure_weights_rec.last_update_login := FND_GLOBAL.LOGIN_ID;

145: ELSE
146: l_kpi_measure_weights_rec.last_updated_by := p_kpi_measure_weights_rec.last_updated_by;
147: END IF;
148: IF (p_kpi_measure_weights_rec.last_update_login IS NULL) THEN
149: l_kpi_measure_weights_rec.last_update_login := FND_GLOBAL.LOGIN_ID;
150: ELSE
151: l_kpi_measure_weights_rec.last_update_login := p_kpi_measure_weights_rec.last_update_login;
152: END IF;
153: