DBA Data[Home] [Help]

APPS.GMS_CLIENT_EXTN_BUDGET_WF dependencies on FND_GLOBAL

Line 400: l_workflow_started_by_id := FND_GLOBAL.user_id;

396: -- --------------------------------------------------------------------------------------
397: -- Initialize Globals for Starting Approve Budget Workflow
398: -- --------------------------------------------------------------------------------------
399:
400: l_workflow_started_by_id := FND_GLOBAL.user_id;
401:
402: OPEN l_starter_user_name_csr( l_workflow_started_by_id );
403: FETCH l_starter_user_name_csr INTO l_starter_name;
404: CLOSE l_starter_user_name_csr;

Line 410: l_resp_id := FND_GLOBAL.resp_id;

406: OPEN l_starter_full_name_csr( l_workflow_started_by_id );
407: FETCH l_starter_full_name_csr INTO l_starter_full_name;
408: CLOSE l_starter_full_name_csr;
409:
410: l_resp_id := FND_GLOBAL.resp_id;
411: l_resp_appl_id := FND_GLOBAL.resp_appl_id;
412:
413: -- Based on the Responsibility, Intialize the Application
414: -- Cannot call Set_Global_Attr here because the WF does NOT

Line 411: l_resp_appl_id := FND_GLOBAL.resp_appl_id;

407: FETCH l_starter_full_name_csr INTO l_starter_full_name;
408: CLOSE l_starter_full_name_csr;
409:
410: l_resp_id := FND_GLOBAL.resp_id;
411: l_resp_appl_id := FND_GLOBAL.resp_appl_id;
412:
413: -- Based on the Responsibility, Intialize the Application
414: -- Cannot call Set_Global_Attr here because the WF does NOT
415: -- Exist yet.

Line 417: FND_GLOBAL.Apps_Initialize

413: -- Based on the Responsibility, Intialize the Application
414: -- Cannot call Set_Global_Attr here because the WF does NOT
415: -- Exist yet.
416:
417: FND_GLOBAL.Apps_Initialize
418: (user_id => l_workflow_started_by_id
419: , resp_id => l_resp_id
420: , resp_appl_id => l_resp_appl_id);
421:

Line 1138: l_workflow_started_by_id := FND_GLOBAL.user_id;

1134: -- --------------------------------------------------------------------------------------
1135: -- Initialize Globals for Starting Approve Budget Workflow
1136: -- --------------------------------------------------------------------------------------
1137:
1138: l_workflow_started_by_id := FND_GLOBAL.user_id;
1139:
1140: OPEN l_starter_user_name_csr( l_workflow_started_by_id );
1141: FETCH l_starter_user_name_csr INTO l_starter_name;
1142: CLOSE l_starter_user_name_csr;

Line 1148: l_resp_id := FND_GLOBAL.resp_id;

1144: OPEN l_starter_full_name_csr( l_workflow_started_by_id );
1145: FETCH l_starter_full_name_csr INTO l_starter_full_name;
1146: CLOSE l_starter_full_name_csr;
1147:
1148: l_resp_id := FND_GLOBAL.resp_id;
1149: l_resp_appl_id := FND_GLOBAL.resp_appl_id;
1150:
1151: -- Based on the Responsibility, Intialize the Application
1152: -- Cannot call Set_Global_Attr here because the WF does NOT

Line 1149: l_resp_appl_id := FND_GLOBAL.resp_appl_id;

1145: FETCH l_starter_full_name_csr INTO l_starter_full_name;
1146: CLOSE l_starter_full_name_csr;
1147:
1148: l_resp_id := FND_GLOBAL.resp_id;
1149: l_resp_appl_id := FND_GLOBAL.resp_appl_id;
1150:
1151: -- Based on the Responsibility, Intialize the Application
1152: -- Cannot call Set_Global_Attr here because the WF does NOT
1153: -- Exist yet.

Line 1155: FND_GLOBAL.Apps_Initialize

1151: -- Based on the Responsibility, Intialize the Application
1152: -- Cannot call Set_Global_Attr here because the WF does NOT
1153: -- Exist yet.
1154:
1155: FND_GLOBAL.Apps_Initialize
1156: (user_id => l_workflow_started_by_id
1157: , resp_id => l_resp_id
1158: , resp_appl_id => l_resp_appl_id);
1159: