DBA Data[Home] [Help]

APPS.GMD_RESULTS_GRP dependencies on FND_GLOBAL

Line 352: l_user_id := FND_GLOBAL.user_id;

348: l_lab_organization_id := p_sample.lab_organization_id;
349:
350: -- Get the user ID
351: IF p_sample.created_by IS NULL THEN
352: l_user_id := FND_GLOBAL.user_id;
353: ELSE
354: l_user_id := p_sample.created_by;
355: END IF;
356:

Line 1401: l_user_id := FND_GLOBAL.user_id;

1397:
1398: -- Initialize API return status to success
1399: x_return_status := FND_API.G_RET_STS_SUCCESS;
1400:
1401: l_user_id := FND_GLOBAL.user_id;
1402: l_date := SYSDATE;
1403:
1404: -- Fetch the Sample Record
1405: IF NOT (gmd_samples_pvt.fetch_row(

Line 2238: l_user_id := FND_GLOBAL.user_id;

2234: -- doing some REAL work.
2235:
2236: -- Get the user ID
2237: IF l_sample.created_by IS NULL THEN
2238: l_user_id := FND_GLOBAL.user_id;
2239: ELSE
2240: l_user_id := l_sample.created_by;
2241: END IF;
2242:

Line 3826: l_user_id := FND_GLOBAL.user_id;

3822: -- Initialize API return status to success
3823: x_return_status := FND_API.G_RET_STS_SUCCESS;
3824:
3825: -- Get the user ID
3826: l_user_id := FND_GLOBAL.user_id;
3827: l_date := SYSDATE;
3828:
3829: -- Get the SPEC_ID
3830: OPEN c_spec_id(p_event_spec_disp_id);