DBA Data[Home] [Help]

APPS.FV_UTILITY dependencies on FND_GLOBAL

Line 205: -- User_id is current fnd_global.userid

201: -------------------------------------------------------------------------------------
202:
203:
204: -- Procedure used to retrieve FV context variable values.
205: -- User_id is current fnd_global.userid
206: -- resp_id is the current fnd_global.resp_id (responsibility_id)
207: -- Variable value should be
208: -- CHART_OF_ACCOUNTS_ID to obtain chart_of_accounts_id context variable,
209: -- ACCT_SEGMENT to obtain acct_segment name context variable,

Line 206: -- resp_id is the current fnd_global.resp_id (responsibility_id)

202:
203:
204: -- Procedure used to retrieve FV context variable values.
205: -- User_id is current fnd_global.userid
206: -- resp_id is the current fnd_global.resp_id (responsibility_id)
207: -- Variable value should be
208: -- CHART_OF_ACCOUNTS_ID to obtain chart_of_accounts_id context variable,
209: -- ACCT_SEGMENT to obtain acct_segment name context variable,
210: -- BALANCE_SEGMENT to obtain balance_segment name context variable

Line 235: fnd_global.apps_initialize(user_id,resp_id,8901);

231:
232: fnd_profile.get('RESP_APPL_ID',x_appl_id);
233:
234: -- initialize the FV Context
235: fnd_global.apps_initialize(user_id,resp_id,8901);
236:
237:
238: -- retrieving the context variables for the specified type
239: variable_value := sys_context('FV_CONTEXT',variable_type);

Line 241: fnd_global.apps_initialize(user_id, resp_id, x_appl_id);

237:
238: -- retrieving the context variables for the specified type
239: variable_value := sys_context('FV_CONTEXT',variable_type);
240:
241: fnd_global.apps_initialize(user_id, resp_id, x_appl_id);
242: IF variable_value is null THEN
243: raise no_data_exception;
244: END IF;
245: