DBA Data[Home] [Help]

APPS.PA_CLIENT_EXTN_BUDGET_WF dependencies on FND_GLOBAL

Line 230: -- with FND_GLOBAL.Apps_Initialize.

226: -- 21-OCT-87 jwhite - Updated as per Kevin Hudson's code review
227: -- 04-NOV-97 jwhite - Added workflow-started-date
228: -- to Start_Budget_WF procedure.
229: -- 25-NOV-97 jwhite - Replaced call to set_global_info
230: -- with FND_GLOBAL.Apps_Initialize.
231: -- Did not call Set_Global_Attr because
232: -- the WF does NOT exist yet.
233: --
234: -- 03-MAY-01 jwhite - As per the Non-Project Integration

Line 508: -- Initialize FND Globals for Starting Approve Budget Workflow --------------

504:
505: BEGIN
506:
507: --
508: -- Initialize FND Globals for Starting Approve Budget Workflow --------------
509: --
510: -- Please note that these globals will be populated from the calling
511: -- module (AMG procedure, Budgets form or Budget Integration Workflow).
512:

Line 516: l_workflow_started_by_id := FND_GLOBAL.user_id;

512:
513:
514: --dbms_output.put_line('Item Key(s/b null): '||itemkey);
515:
516: l_workflow_started_by_id := FND_GLOBAL.user_id;
517:
518: OPEN l_starter_user_name_csr( l_workflow_started_by_id );
519: FETCH l_starter_user_name_csr INTO l_user_name;
520: CLOSE l_starter_user_name_csr;

Line 526: l_resp_id := FND_GLOBAL.resp_id;

522: OPEN l_starter_full_name_csr( l_workflow_started_by_id );
523: FETCH l_starter_full_name_csr INTO l_full_name;
524: CLOSE l_starter_full_name_csr;
525:
526: l_resp_id := FND_GLOBAL.resp_id;
527:
528: -- Based on the Responsibility, Intialize the Application
529: -- Cannot call Set_Global_Attr here because the WF does NOT
530: -- Exist yet.

Line 531: FND_GLOBAL.Apps_Initialize

527:
528: -- Based on the Responsibility, Intialize the Application
529: -- Cannot call Set_Global_Attr here because the WF does NOT
530: -- Exist yet.
531: FND_GLOBAL.Apps_Initialize
532: (user_id => l_workflow_started_by_id
533: , resp_id => l_resp_id
534: , resp_appl_id => FND_GLOBAL.resp_appl_id
535: );

Line 534: , resp_appl_id => FND_GLOBAL.resp_appl_id

530: -- Exist yet.
531: FND_GLOBAL.Apps_Initialize
532: (user_id => l_workflow_started_by_id
533: , resp_id => l_resp_id
534: , resp_appl_id => FND_GLOBAL.resp_appl_id
535: );
536:
537:
538: