DBA Data[Home] [Help]

APPS.FV_UTILITY dependencies on FND_GLOBAL

Line 204: -- User_id is current fnd_global.userid

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

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

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

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

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

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

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