DBA Data[Home] [Help]

APPS.BEN_DM_DATA_UTIL dependencies on BEN_DM_UTILITY

Line 62: ben_dm_utility.message('INFO',' get_mapping_target ' || substr(sqlerrm ,1, 100) ,140);

58: hr_utility.set_location(' Leaving:'||l_proc, 10);
59: Exception
60: when others then
61: hr_utility.set_location(' exception :'||substr(sqlerrm ,1, 100), 30);
62: ben_dm_utility.message('INFO',' get_mapping_target ' || substr(sqlerrm ,1, 100) ,140);
63: raise ;
64: End get_mapping_target ;
65:
66: -------------------------------- get_mapping_target ------------------------

Line 116: ben_dm_utility.message('INFO',' Target ID Error ' ||p_table_name||'.'||p_source_column||

112:
113: if l_target_id is null then
114: hr_utility.set_location('Target Id not found for : ' ||p_table_name||'.'||p_source_column||
115: '.'||p_source_id , 5);
116: ben_dm_utility.message('INFO',' Target ID Error ' ||p_table_name||'.'||p_source_column||
117: '.'||p_source_id ,5) ;
118: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
119: fnd_message.raise_error;
120:

Line 130: ben_dm_utility.message('INFO',' get_mapping_target ' || substr(sqlerrm ,1, 100) ,140);

126:
127: Exception
128: when others then
129: hr_utility.set_location(' exception :'||substr(sqlerrm ,1, 100), 30);
130: ben_dm_utility.message('INFO',' get_mapping_target ' || substr(sqlerrm ,1, 100) ,140);
131: raise ;
132: End get_mapping_target ;
133:
134: -------------------------------- get_cache_target ------------------------

Line 175: ben_dm_utility.message('INFO',' get_cache_target ' || substr(sqlerrm ,1, 100) ,140);

171:
172: Exception
173: when others then
174: hr_utility.set_location(' exception :'||substr(sqlerrm , 1,100), 30);
175: ben_dm_utility.message('INFO',' get_cache_target ' || substr(sqlerrm ,1, 100) ,140);
176: raise ;
177: End get_cache_target ;
178:
179: ------------------------------------- create_pk_cache ------------------------

Line 394: ben_dm_utility.message('INFO',' update_pk_mapping ' || substr(sqlerrm ,1, 100) ,140);

390:
391: Exception
392: when others then
393: hr_utility.set_location(' exception :'||substr(sqlerrm , 100), 30);
394: ben_dm_utility.message('INFO',' update_pk_mapping ' || substr(sqlerrm ,1, 100) ,140);
395: raise ;
396: end update_pk_mapping ;
397:
398: ------------------------------------------------------------------------------

Line 559: ben_dm_utility.message('INFO',' create_pk_mapping ' || substr(sqlerrm ,1, 100) ,140);

555: hr_utility.set_location(' Leaving:'||l_proc, 10);
556: Exception
557: when others then
558: hr_utility.set_location(' exception :'||substr(sqlerrm , 100), 30);
559: ben_dm_utility.message('INFO',' create_pk_mapping ' || substr(sqlerrm ,1, 100) ,140);
560: raise ;
561:
562: end create_pk_mapping;
563:

Line 1113: ben_dm_utility.message('INFO','bg not found:'||p_business_group_name , 5);

1109:
1110: exception
1111: when no_data_found then
1112: hr_utility.set_location(' exception : no bg found', 30);
1113: ben_dm_utility.message('INFO','bg not found:'||p_business_group_name , 5);
1114: raise;
1115:
1116: end get_bg_id;
1117:

Line 1127: ben_dm_utility.error(SQLCODE,'hr_dm_library.priv_indent',

1123: l_spaces := c_newline || rpad(' ', p_indent_spaces) || '- ' ;
1124: return l_spaces;
1125: exception
1126: when others then
1127: ben_dm_utility.error(SQLCODE,'hr_dm_library.priv_indent',
1128: '(none)',
1129: 'R');
1130: raise;
1131: end priv_indent;

Line 1147: ben_dm_utility.message('ROUT','entry: ' || l_proc , 5);

1143:
1144: l_proc := g_package ||'get_generator_version' ;
1145: hr_utility.set_location('Entering:'||l_proc, 5);
1146:
1147: ben_dm_utility.message('ROUT','entry: ' || l_proc , 5);
1148:
1149: -- get the version of download generator
1150: hr_dm_library.get_package_version ( p_package_name => 'BEN_DM_GEN_DOWNLOAD',
1151: p_package_version => l_package_version);

Line 1218: ben_dm_utility.message('PARA','(p_generator_version - ' ||

1214: end if;
1215:
1216: p_generator_version := l_generator_version;
1217:
1218: ben_dm_utility.message('PARA','(p_generator_version - ' ||
1219: p_generator_version || ')', 30);
1220: ben_dm_utility.message('ROUT','exit: ' || l_proc , 25);
1221:
1222: hr_utility.set_location('Leaving :'||l_proc, 15);

Line 1220: ben_dm_utility.message('ROUT','exit: ' || l_proc , 25);

1216: p_generator_version := l_generator_version;
1217:
1218: ben_dm_utility.message('PARA','(p_generator_version - ' ||
1219: p_generator_version || ')', 30);
1220: ben_dm_utility.message('ROUT','exit: ' || l_proc , 25);
1221:
1222: hr_utility.set_location('Leaving :'||l_proc, 15);
1223: exception
1224: when others then

Line 1225: ben_dm_utility.error(SQLCODE,l_proc, '(p_generator_version - ' || p_generator_version ||

1221:
1222: hr_utility.set_location('Leaving :'||l_proc, 15);
1223: exception
1224: when others then
1225: ben_dm_utility.error(SQLCODE,l_proc, '(p_generator_version - ' || p_generator_version ||
1226: ')','R');
1227: raise;
1228: end get_generator_version;
1229: