DBA Data[Home] [Help]

APPS.FND_WF_STANDARD dependencies on FND_GLOBAL

Line 11: -- use fnd_global.apps_initialize(user_id,resp_id,resp_appl_id);

7: -- Description: submits a concurrent program ONLY.
8: -- returns the request_id to the choosen item attribute
9: -- Notes:
10: -- APPS context must already be set
11: -- use fnd_global.apps_initialize(user_id,resp_id,resp_appl_id);
12: -------------------------------------------------------------------
13:
14: Procedure SubmitConcProgram(itemtype in varchar2,
15: itemkey in varchar2,

Line 46: -- use fnd_global.apps_initialize(user_id,resp_id,resp_appl_id);

42: -- Description: Executes a concurrent program.
43: -- This submits the request and waits for it to complete.
44: -- Notes:
45: -- APPS context must already be set
46: -- use fnd_global.apps_initialize(user_id,resp_id,resp_appl_id);
47: -------------------------------------------------------------------
48: Procedure ExecuteConcProgram(itemtype in varchar2,
49: itemkey in varchar2,
50: actid in number,

Line 175: -- use fnd_global.apps_initialize(user_id,resp_id,resp_appl_id);

171: -- Name: Submit_CP (PRIVATE)
172: -- Description: submits a concurrent program
173: -- Notes:
174: -- APPS context must already be set
175: -- use fnd_global.apps_initialize(user_id,resp_id,resp_appl_id);
176: -------------------------------------------------------------------
177: Procedure Submit_CP(itemtype in varchar2,
178: itemkey in varchar2,
179: actid in number,

Line 199: --for testing use something like: fnd_global.apps_initialize( 0,20419,0);

195:
196: BEGIN
197:
198: --apps content must already be set, see comments above
199: --for testing use something like: fnd_global.apps_initialize( 0,20419,0);
200:
201: -- get all arguments.
202: appl_name := wf_engine.GetActivityAttrText(itemtype,itemkey,actid, 'APPLNAME');
203: prog_name := wf_engine.GetActivityAttrText(itemtype,itemkey,actid, 'PROGRAM');

Line 419: request_id := FND_GLOBAL.CONC_REQUEST_ID;

415: -- NOTE: this is executed by the concurrent manager when the initial request is COMPLETED
416: -- from inside conc manager, get the request_id
417: -- Bug 12950914 as this is a transient profile and the usage has been
418: -- indicated by AOL team
419: request_id := FND_GLOBAL.CONC_REQUEST_ID;
420:
421: --retrieve the argument list.
422: rslt:=fnd_conc_pp.retrieve(req_id => request_id,
423: step => callback.step,