DBA Data[Home] [Help]

APPS.BEN_EXTRACT_SEED dependencies on FND_GLOBAL

Line 191: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then

187: else
188: l_string := ' WARNING : ' ;
189: end if ;
190:
191: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then
192: if p_err_msg is not null then
193: fnd_file.put_line(fnd_file.log,l_string || p_err_msg);
194: elsif p_err_num is not null then
195: fnd_message.set_name(substr(p_err_num,1,3),p_err_num);

Line 259: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then

255: fnd_message.raise_error;
256: end if ;
257: end if ;
258:
259: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then
260: benutils.get_parameter
261: (p_business_group_id => g_business_group_id
262: ,p_batch_exe_cd => 'BENXEXP'
263: ,p_threads => l_threads

Line 2139: if nvl(fnd_global.conc_request_id,-1) <> -1 and

2135: AND nvl(l_new_business_group_id, -1) = nvl(business_group_id , -1)
2136: AND nvl(legislation_code,'~NULL~') = nvl(l_legislation_code,'~NULL~');
2137:
2138: --for the business group extract dont allow to upload if the extract layout already exist
2139: if nvl(fnd_global.conc_request_id,-1) <> -1 and
2140: ( l_new_business_group_id is not null and g_override <> 'Y' ) then
2141: fnd_message.set_name('BEN','BEN_93741_EXT_FILE_EXISTS');
2142: fnd_file.put_line(fnd_file.log, fnd_message.get);
2143: fnd_message.raise_error;

Line 3712: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then

3708: return ;
3709: end if ;
3710: else
3711: -- make sure the cahnge evt code is enabled
3712: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then
3713: open cw(L_CHG_EVT_CD) ;
3714: fetch cw into l_temp ;
3715: if cw%notfound then
3716: close cw ;

Line 4057: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then

4053: end if ;
4054:
4055: if l_value is NULL THEN
4056: -- if the concurrent manger does the job log the message
4057: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then
4058: write_err
4059: (p_err_num => null,
4060: p_err_msg => 'Criteria value not found : '||hr_general.decode_lookup('BEN_EXT_CRIT_TYP',l_code )||' : '||l_meaning,
4061: p_typ_cd => 'E' ,

Line 4074: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then

4070:
4071:
4072: -- if the type code is change event then make sure the change event is valid for business group
4073: if p_type_code = 'CCE' then
4074: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then
4075: open cw(l_value) ;
4076: fetch cw into l_temp ;
4077: if cw%notfound then
4078: close cw ;

Line 4269: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then

4265: end if ;
4266:
4267: if l_val_1 is NULL THEN
4268: -- if the concurrent manger does the job log the message
4269: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then
4270: write_err
4271: (p_err_num => null,
4272: p_err_msg => 'Criteria value not found : '||hr_general.decode_lookup('BEN_EXT_CRIT_TYP',l_code)||' : '||l_meaning,
4273: p_typ_cd => 'E' ,

Line 4450: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then

4446: EXCEPTION
4447: WHEN NO_DATA_FOUND
4448: THEN
4449: -- if the concurrent manger does the job log the message
4450: if g_business_group_id is not null and fnd_global.conc_request_id <> -1 then
4451: write_err
4452: (p_err_num => null,
4453: p_err_msg => ' No formula of name '||p_post_processing_rule||' Exists for Definition '||p_definition_name ,
4454: p_typ_cd => 'E' ,

Line 4471: order by decode(xdo.application_id ,FND_GLOBAL.resp_appl_id,1,2)

4467: cursor c is
4468: select xdo.template_id
4469: from xdo_templates_b xdo
4470: where xdo.template_code = P_xdo_template_name
4471: order by decode(xdo.application_id ,FND_GLOBAL.resp_appl_id,1,2)
4472: ;
4473:
4474: Begin
4475: open c ;