DBA Data[Home] [Help]

APPS.PA_CLIENT_EXTN_PROJECT_WF dependencies on FND_GLOBAL

Line 116: -- with FND_GLOBAL.Apps_Initialize

112: -- as a WF attribute.
113: -- 03-NOV-97 jwhite - Added workflow-started-date
114: -- to Start_Project_WF procedure.
115: -- 25-NOV-97 jwhite - Replaced call to set_global_info
116: -- with FND_GLOBAL.Apps_Initialize
117: -- to drop linkage to AMG license
118: -- Did NOT replace with Set_Global_Attr
119: -- because WF NOT exist yet.
120: -- 17-NOV-08 sugupta - Bug 6720288 : Added handling for the

Line 317: l_workflow_started_by_id := FND_GLOBAL.user_id;

313: INTO itemkey
314: from dual;
315:
316: -- Need this to populate the attribute information in Workflow
317: l_workflow_started_by_id := FND_GLOBAL.user_id;
318: l_resp_id := FND_GLOBAL.resp_id;
319:
320: --dbms_output.put_line('set_global_info');
321:

Line 318: l_resp_id := FND_GLOBAL.resp_id;

314: from dual;
315:
316: -- Need this to populate the attribute information in Workflow
317: l_workflow_started_by_id := FND_GLOBAL.user_id;
318: l_resp_id := FND_GLOBAL.resp_id;
319:
320: --dbms_output.put_line('set_global_info');
321:
322: -- Based on the Responsibility, Intialize the Application

Line 325: FND_GLOBAL.Apps_Initialize

321:
322: -- Based on the Responsibility, Intialize the Application
323: -- Cannot use Set_Global_Attr here because the WF
324: -- Does NOT exits yet.
325: FND_GLOBAL.Apps_Initialize
326: (user_id => l_workflow_started_by_id
327: , resp_id => l_resp_id
328: , resp_appl_id => fnd_global.resp_appl_id
329: );

Line 328: , resp_appl_id => fnd_global.resp_appl_id

324: -- Does NOT exits yet.
325: FND_GLOBAL.Apps_Initialize
326: (user_id => l_workflow_started_by_id
327: , resp_id => l_resp_id
328: , resp_appl_id => fnd_global.resp_appl_id
329: );
330:
331: -- Create the workflow process
332: --dbms_output.put_line('wf_engine.CreateProcess');