DBA Data[Home] [Help]

APPS.GMD_RESULTS_GRP dependencies on FND_GLOBAL

Line 400: l_user_id := FND_GLOBAL.user_id;

396: l_lab_organization_id := p_sample.lab_organization_id;
397:
398: -- Get the user ID
399: IF p_sample.created_by IS NULL THEN
400: l_user_id := FND_GLOBAL.user_id;
401: ELSE
402: l_user_id := p_sample.created_by;
403: END IF;
404:

Line 1477: l_user_id := FND_GLOBAL.user_id;

1473:
1474: -- Initialize API return status to success
1475: x_return_status := FND_API.G_RET_STS_SUCCESS;
1476:
1477: l_user_id := FND_GLOBAL.user_id;
1478: l_date := SYSDATE;
1479:
1480: -- Fetch the Sample Record
1481: IF NOT (gmd_samples_pvt.fetch_row(

Line 2339: l_user_id := FND_GLOBAL.user_id;

2335: -- doing some REAL work.
2336:
2337: -- Get the user ID
2338: IF l_sample.created_by IS NULL THEN
2339: l_user_id := FND_GLOBAL.user_id;
2340: ELSE
2341: l_user_id := l_sample.created_by;
2342: END IF;
2343:

Line 3995: l_user_id := FND_GLOBAL.user_id;

3991: -- Initialize API return status to success
3992: x_return_status := FND_API.G_RET_STS_SUCCESS;
3993:
3994: -- Get the user ID
3995: l_user_id := FND_GLOBAL.user_id;
3996: l_date := SYSDATE;
3997:
3998: -- Get the SPEC_ID
3999: OPEN c_spec_id(p_event_spec_disp_id);