DBA Data[Home] [Help]

APPS.WF_WS_GEN dependencies on WF_CORE

Line 200: wf_core.token('Module',p_module_name);

196:
197: if l_count = 0 then
198:
199: p_err_code := -1;
200: wf_core.token('Module',p_module_name);
201: p_err_message := wf_core.translate('WF_WS_MODULE_NO_ENTRIES');
202: else
203: p_err_code := 0;
204: wf_core.token('Module',p_module_name);

Line 201: p_err_message := wf_core.translate('WF_WS_MODULE_NO_ENTRIES');

197: if l_count = 0 then
198:
199: p_err_code := -1;
200: wf_core.token('Module',p_module_name);
201: p_err_message := wf_core.translate('WF_WS_MODULE_NO_ENTRIES');
202: else
203: p_err_code := 0;
204: wf_core.token('Module',p_module_name);
205: p_err_message := wf_core.translate('WF_WS_MODULE_SUCCESS');

Line 204: wf_core.token('Module',p_module_name);

200: wf_core.token('Module',p_module_name);
201: p_err_message := wf_core.translate('WF_WS_MODULE_NO_ENTRIES');
202: else
203: p_err_code := 0;
204: wf_core.token('Module',p_module_name);
205: p_err_message := wf_core.translate('WF_WS_MODULE_SUCCESS');
206:
207: end if;
208:

Line 205: p_err_message := wf_core.translate('WF_WS_MODULE_SUCCESS');

201: p_err_message := wf_core.translate('WF_WS_MODULE_NO_ENTRIES');
202: else
203: p_err_code := 0;
204: wf_core.token('Module',p_module_name);
205: p_err_message := wf_core.translate('WF_WS_MODULE_SUCCESS');
206:
207: end if;
208:
209: exception

Line 214: wf_core.token('Module',p_module_name);

210: when program_exit then
211: null;
212: when others then
213: p_err_code := -1;
214: wf_core.token('Module',p_module_name);
215: wf_core.token('SqlErr',SQLERRM);
216: p_err_message := wf_core.translate('WF_WS_MODULE_FAILED');
217: end wf_ws_create;
218:

Line 215: wf_core.token('SqlErr',SQLERRM);

211: null;
212: when others then
213: p_err_code := -1;
214: wf_core.token('Module',p_module_name);
215: wf_core.token('SqlErr',SQLERRM);
216: p_err_message := wf_core.translate('WF_WS_MODULE_FAILED');
217: end wf_ws_create;
218:
219: procedure create_derived_entry

Line 216: p_err_message := wf_core.translate('WF_WS_MODULE_FAILED');

212: when others then
213: p_err_code := -1;
214: wf_core.token('Module',p_module_name);
215: wf_core.token('SqlErr',SQLERRM);
216: p_err_message := wf_core.translate('WF_WS_MODULE_FAILED');
217: end wf_ws_create;
218:
219: procedure create_derived_entry
220: (

Line 250: wf_core.token('BaseInterface',p_interface_irep_name);

246:
247: if l_count = 0 then
248:
249: p_err_code := -1;
250: wf_core.token('BaseInterface',p_interface_irep_name);
251: p_err_message := wf_core.translate('WF_WS_BASE_INTF_NOT_EXIST');
252:
253: elsif ( p_err_code = -1 ) then
254: null;

Line 251: p_err_message := wf_core.translate('WF_WS_BASE_INTF_NOT_EXIST');

247: if l_count = 0 then
248:
249: p_err_code := -1;
250: wf_core.token('BaseInterface',p_interface_irep_name);
251: p_err_message := wf_core.translate('WF_WS_BASE_INTF_NOT_EXIST');
252:
253: elsif ( p_err_code = -1 ) then
254: null;
255: else

Line 258: p_err_message := wf_core.translate('WF_WS_SUCCESS');

254: null;
255: else
256:
257: p_err_code := 0;
258: p_err_message := wf_core.translate('WF_WS_SUCCESS');
259:
260: end if;
261:
262:

Line 310: p_err_message := wf_core.translate('WF_WS_MISSING_CLASS_ID');

306: p_base_class_name varchar2(430) := null;
307: begin
308: if (p_base_class_id is null ) then
309: p_err_code := -1;
310: p_err_message := wf_core.translate('WF_WS_MISSING_CLASS_ID');
311: raise program_exit;
312: end if;
313:
314: if( FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then

Line 328: wf_core.token('BaseClassId',p_base_class_id);

324: close c_class_name;
325:
326: if c_class_rec.l_count = 0 then
327: p_err_code := -1;
328: wf_core.token('BaseClassId',p_base_class_id);
329: p_err_message := wf_core.translate('WF_WS_BASE_CLASS_NOT_EXIST');
330: raise program_exit;
331: end if;
332:

Line 329: p_err_message := wf_core.translate('WF_WS_BASE_CLASS_NOT_EXIST');

325:
326: if c_class_rec.l_count = 0 then
327: p_err_code := -1;
328: wf_core.token('BaseClassId',p_base_class_id);
329: p_err_message := wf_core.translate('WF_WS_BASE_CLASS_NOT_EXIST');
330: raise program_exit;
331: end if;
332:
333: for c1 in c_methods(p_base_class_id)

Line 351: wf_core.token('BaseClassId',p_base_class_id);

347: when program_exit then
348: raise program_exit;
349: when others then
350: p_err_code := -1;
351: wf_core.token('BaseClassId',p_base_class_id);
352: wf_core.token('BaseClassName', p_base_class_name);
353: wf_core.token('FunctionId',c1.function_id);
354: wf_core.token('SqlErr',SQLERRM);
355: p_err_message := wf_core.translate('WF_WS_CLASS_FUNC_ITER');

Line 352: wf_core.token('BaseClassName', p_base_class_name);

348: raise program_exit;
349: when others then
350: p_err_code := -1;
351: wf_core.token('BaseClassId',p_base_class_id);
352: wf_core.token('BaseClassName', p_base_class_name);
353: wf_core.token('FunctionId',c1.function_id);
354: wf_core.token('SqlErr',SQLERRM);
355: p_err_message := wf_core.translate('WF_WS_CLASS_FUNC_ITER');
356: raise program_exit;

Line 353: wf_core.token('FunctionId',c1.function_id);

349: when others then
350: p_err_code := -1;
351: wf_core.token('BaseClassId',p_base_class_id);
352: wf_core.token('BaseClassName', p_base_class_name);
353: wf_core.token('FunctionId',c1.function_id);
354: wf_core.token('SqlErr',SQLERRM);
355: p_err_message := wf_core.translate('WF_WS_CLASS_FUNC_ITER');
356: raise program_exit;
357: end;

Line 354: wf_core.token('SqlErr',SQLERRM);

350: p_err_code := -1;
351: wf_core.token('BaseClassId',p_base_class_id);
352: wf_core.token('BaseClassName', p_base_class_name);
353: wf_core.token('FunctionId',c1.function_id);
354: wf_core.token('SqlErr',SQLERRM);
355: p_err_message := wf_core.translate('WF_WS_CLASS_FUNC_ITER');
356: raise program_exit;
357: end;
358:

Line 355: p_err_message := wf_core.translate('WF_WS_CLASS_FUNC_ITER');

351: wf_core.token('BaseClassId',p_base_class_id);
352: wf_core.token('BaseClassName', p_base_class_name);
353: wf_core.token('FunctionId',c1.function_id);
354: wf_core.token('SqlErr',SQLERRM);
355: p_err_message := wf_core.translate('WF_WS_CLASS_FUNC_ITER');
356: raise program_exit;
357: end;
358:
359: end loop;

Line 361: wf_core.token('BaseClassId',p_base_class_id);

357: end;
358:
359: end loop;
360:
361: wf_core.token('BaseClassId',p_base_class_id);
362: wf_core.token('BaseClassName', p_base_class_name);
363: if (method_count = 0 ) then
364: p_err_code := -1;
365: p_err_message := wf_core.translate('WF_WS_NO_BASE_METHODS');

Line 362: wf_core.token('BaseClassName', p_base_class_name);

358:
359: end loop;
360:
361: wf_core.token('BaseClassId',p_base_class_id);
362: wf_core.token('BaseClassName', p_base_class_name);
363: if (method_count = 0 ) then
364: p_err_code := -1;
365: p_err_message := wf_core.translate('WF_WS_NO_BASE_METHODS');
366: elsif ( method_count > 0 ) then

Line 365: p_err_message := wf_core.translate('WF_WS_NO_BASE_METHODS');

361: wf_core.token('BaseClassId',p_base_class_id);
362: wf_core.token('BaseClassName', p_base_class_name);
363: if (method_count = 0 ) then
364: p_err_code := -1;
365: p_err_message := wf_core.translate('WF_WS_NO_BASE_METHODS');
366: elsif ( method_count > 0 ) then
367: p_err_code := 0;
368: p_err_message := wf_core.translate('WF_WS_SUCCESS');
369: end if;

Line 368: p_err_message := wf_core.translate('WF_WS_SUCCESS');

364: p_err_code := -1;
365: p_err_message := wf_core.translate('WF_WS_NO_BASE_METHODS');
366: elsif ( method_count > 0 ) then
367: p_err_code := 0;
368: p_err_message := wf_core.translate('WF_WS_SUCCESS');
369: end if;
370:
371: exception
372: when program_exit then

Line 376: wf_core.token('BaseClassId',p_base_class_id);

372: when program_exit then
373: null;
374: when others then
375: p_err_code := -1;
376: wf_core.token('BaseClassId',p_base_class_id);
377: wf_core.token('BaseClassName', p_base_class_name);
378: wf_core.token('SqlErr',SQLERRM);
379: p_err_message := wf_core.translate('WF_WS_CLASS_DERIVED');
380: end create_derived_entry;

Line 377: wf_core.token('BaseClassName', p_base_class_name);

373: null;
374: when others then
375: p_err_code := -1;
376: wf_core.token('BaseClassId',p_base_class_id);
377: wf_core.token('BaseClassName', p_base_class_name);
378: wf_core.token('SqlErr',SQLERRM);
379: p_err_message := wf_core.translate('WF_WS_CLASS_DERIVED');
380: end create_derived_entry;
381:

Line 378: wf_core.token('SqlErr',SQLERRM);

374: when others then
375: p_err_code := -1;
376: wf_core.token('BaseClassId',p_base_class_id);
377: wf_core.token('BaseClassName', p_base_class_name);
378: wf_core.token('SqlErr',SQLERRM);
379: p_err_message := wf_core.translate('WF_WS_CLASS_DERIVED');
380: end create_derived_entry;
381:
382:

Line 379: p_err_message := wf_core.translate('WF_WS_CLASS_DERIVED');

375: p_err_code := -1;
376: wf_core.token('BaseClassId',p_base_class_id);
377: wf_core.token('BaseClassName', p_base_class_name);
378: wf_core.token('SqlErr',SQLERRM);
379: p_err_message := wf_core.translate('WF_WS_CLASS_DERIVED');
380: end create_derived_entry;
381:
382:
383: /**

Line 433: p_err_message := wf_core.translate('WF_WS_MISSING_CLASS_FUNC_ID');

429:
430:
431: if ( (p_base_class_id is null) or (p_base_function_id is null)) then
432: p_err_code := -1;
433: p_err_message := wf_core.translate('WF_WS_MISSING_CLASS_FUNC_ID');
434: raise program_exit;
435: end if;
436:
437:

Line 449: p_err_message := wf_core.translate('WF_WS_BASE_CLASS_NOT_EXIST');

445: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, 'oracle.apps.fnd.wf.ws.create_derived_entry', 'Base Class ID='||p_base_class_id||' does not exist');
446: end if;
447:
448: p_err_code := -1;
449: p_err_message := wf_core.translate('WF_WS_BASE_CLASS_NOT_EXIST');
450: raise program_exit;
451:
452: elsif c_base_class_entry%FOUND then
453:

Line 470: p_err_message := wf_core.translate('WF_WS_CLASS_FUNC_MISMATCH');

466: end if;
467:
468: if ( c_base_function_entry_rec.irep_class_id <> p_base_class_id ) then
469: p_err_code :=-1;
470: p_err_message := wf_core.translate('WF_WS_CLASS_FUNC_MISMATCH');
471: raise program_exit;
472: end if;
473:
474: if ( c_base_class_entry_rec.scope_type = 'PUBLIC' AND c_base_function_entry_rec.irep_scope = 'PUBLIC' ) then

Line 490: p_err_message := wf_core.translate('WF_WS_XMLG_OUTBOUND');

486: end if;
487:
488:
489: p_err_code :=-1;
490: p_err_message := wf_core.translate('WF_WS_XMLG_OUTBOUND');
491: raise ignore_rec;
492: end if;
493:
494: /**

Line 683: p_err_message :=wf_core.translate('WF_WS_XMLG_INVALID_ENTRY');

679: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, 'oracle.apps.fnd.wf.ws.create_derived_entry', 'Invalid Function Name does not have : ');
680: end if;
681:
682: p_err_code := -1;
683: p_err_message :=wf_core.translate('WF_WS_XMLG_INVALID_ENTRY');
684: end if;
685:
686: elsif ( c_base_class_entry_rec.class_type = 'SERVICEBEAN') then
687:

Line 704: p_err_message :=wf_core.translate('WF_WS_MISSING_IREP_METHOD_NAME');

700: dbms_output.put_line('I_Operation='||i_operation||'x');
701: dbms_output.put_line('I_Operation length='||length(i_operation)||'x');
702: if ( (i_operation is null ) or (length(i_operation) is NULL ) ) then
703: p_err_code := -1;
704: p_err_message :=wf_core.translate('WF_WS_MISSING_IREP_METHOD_NAME');
705: raise program_exit;
706: end if;
707:
708: create_derived_class_entry

Line 800: p_err_message := wf_core.translate('WF_WS_NOT_PUBLIC');

796: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, 'oracle.apps.fnd.wf.ws.create_derived_entry', 'ClassID,FunctionID:'||c_base_class_entry_rec.class_id||','||c_base_function_entry_rec.function_id||' Not a public interface/method to be exposed');
797: end if;
798:
799: p_err_code := -1;
800: p_err_message := wf_core.translate('WF_WS_NOT_PUBLIC');
801: raise program_exit;
802: end if;
803: else
804: if( FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then

Line 809: p_err_message := wf_core.translate('WF_WS_BASE_FUNC_NOT_EXIST');

805: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, 'oracle.apps.fnd.wf.ws.create_derived_entry', ' No records found for FunctionID='||c_base_function_entry_rec.function_id);
806: end if;
807:
808: p_err_code := -1;
809: p_err_message := wf_core.translate('WF_WS_BASE_FUNC_NOT_EXIST');
810: raise program_exit;
811: end if;
812:
813: close c_base_function_entry;

Line 819: wf_core.token('ClassId',p_base_class_id);

815:
816: close c_base_class_entry;
817:
818: p_err_code := 0;
819: wf_core.token('ClassId',p_base_class_id);
820: p_err_message :=wf_core.translate('WF_WS_SUCCESS');
821:
822: exception
823: when ignore_rec then

Line 820: p_err_message :=wf_core.translate('WF_WS_SUCCESS');

816: close c_base_class_entry;
817:
818: p_err_code := 0;
819: wf_core.token('ClassId',p_base_class_id);
820: p_err_message :=wf_core.translate('WF_WS_SUCCESS');
821:
822: exception
823: when ignore_rec then
824: raise ignore_rec;

Line 829: p_err_message :=wf_core.translate('WF_WS_GENERIC_CLASS_ERROR')||'Error in Creating Derived Entry for Base FUNCTION_ID='||p_base_function_id||SQLERRM;

825: when program_exit then
826: raise program_exit;
827: when others then
828: p_err_code := -1;
829: p_err_message :=wf_core.translate('WF_WS_GENERIC_CLASS_ERROR')||'Error in Creating Derived Entry for Base FUNCTION_ID='||p_base_function_id||SQLERRM;
830: raise program_exit;
831: end create_derived_entry;
832:
833: procedure create_derived_class_entry

Line 888: p_err_message := wf_core.translate('WF_WS_CLASS_NAME_IS_NULL');

884: begin
885:
886: if ( (p_class_name is null) or (p_base_class_id is null) ) then
887: p_err_code := -1;
888: p_err_message := wf_core.translate('WF_WS_CLASS_NAME_IS_NULL');
889: raise program_exit;
890: end if;
891:
892: open c_derived_class(p_class_name);

Line 985: p_err_message := wf_core.translate('WF_WS_CLASS_INSERT')||SQLERRM;

981: when program_exit then
982: raise program_exit;
983: when others then
984: p_err_code := -1;
985: p_err_message := wf_core.translate('WF_WS_CLASS_INSERT')||SQLERRM;
986: end;
987:
988: p_class_id_out := l_class_id;
989:

Line 1036: p_err_message := wf_core.translate('WF_WS_CLASS_UPDATE')||SQLERRM;

1032: when program_exit then
1033: raise program_exit;
1034: when others then
1035: p_err_code := -1;
1036: p_err_message := wf_core.translate('WF_WS_CLASS_UPDATE')||SQLERRM;
1037: end;
1038:
1039: p_class_id_out := c_derived_class_rec.class_id;
1040: end if;

Line 1045: p_err_message := wf_core.translate('WF_WS_SUCCESS');

1041:
1042: close c_derived_class;
1043:
1044: p_err_code := 0;
1045: p_err_message := wf_core.translate('WF_WS_SUCCESS');
1046: exception
1047: when program_exit then
1048: raise program_exit;
1049: when others then

Line 1051: wf_core.token('BaseClassName',p_class_name);

1047: when program_exit then
1048: raise program_exit;
1049: when others then
1050: p_err_code := -1;
1051: wf_core.token('BaseClassName',p_class_name);
1052: wf_core.token('SqlErr',SQLERRM);
1053: p_err_message := wf_core.translate('WF_WS_CLASS_CREATE');
1054: raise program_exit;
1055: end create_derived_class_entry;

Line 1052: wf_core.token('SqlErr',SQLERRM);

1048: raise program_exit;
1049: when others then
1050: p_err_code := -1;
1051: wf_core.token('BaseClassName',p_class_name);
1052: wf_core.token('SqlErr',SQLERRM);
1053: p_err_message := wf_core.translate('WF_WS_CLASS_CREATE');
1054: raise program_exit;
1055: end create_derived_class_entry;
1056:

Line 1053: p_err_message := wf_core.translate('WF_WS_CLASS_CREATE');

1049: when others then
1050: p_err_code := -1;
1051: wf_core.token('BaseClassName',p_class_name);
1052: wf_core.token('SqlErr',SQLERRM);
1053: p_err_message := wf_core.translate('WF_WS_CLASS_CREATE');
1054: raise program_exit;
1055: end create_derived_class_entry;
1056:
1057:

Line 1306: p_err_message := wf_core.translate('WF_WS_SUCCESS');

1302:
1303: close c_derived_method;
1304:
1305: p_err_code := 0;
1306: p_err_message := wf_core.translate('WF_WS_SUCCESS');
1307: exception
1308: when program_exit then
1309: raise program_exit;
1310: when others then

Line 1312: wf_core.token('FunctionName',p_function_name);

1308: when program_exit then
1309: raise program_exit;
1310: when others then
1311: p_err_code := -1;
1312: wf_core.token('FunctionName',p_function_name);
1313: wf_core.token('BaseFunctionId',p_base_function_id);
1314: wf_core.token('DerivedClassId',p_irep_class_id);
1315: wf_core.token('SqlErr',SQLERRM);
1316: p_err_message := wf_core.translate('WF_WS_FUNCTION_CREATE');

Line 1313: wf_core.token('BaseFunctionId',p_base_function_id);

1309: raise program_exit;
1310: when others then
1311: p_err_code := -1;
1312: wf_core.token('FunctionName',p_function_name);
1313: wf_core.token('BaseFunctionId',p_base_function_id);
1314: wf_core.token('DerivedClassId',p_irep_class_id);
1315: wf_core.token('SqlErr',SQLERRM);
1316: p_err_message := wf_core.translate('WF_WS_FUNCTION_CREATE');
1317: raise program_exit;

Line 1314: wf_core.token('DerivedClassId',p_irep_class_id);

1310: when others then
1311: p_err_code := -1;
1312: wf_core.token('FunctionName',p_function_name);
1313: wf_core.token('BaseFunctionId',p_base_function_id);
1314: wf_core.token('DerivedClassId',p_irep_class_id);
1315: wf_core.token('SqlErr',SQLERRM);
1316: p_err_message := wf_core.translate('WF_WS_FUNCTION_CREATE');
1317: raise program_exit;
1318: end create_derived_method_entry;

Line 1315: wf_core.token('SqlErr',SQLERRM);

1311: p_err_code := -1;
1312: wf_core.token('FunctionName',p_function_name);
1313: wf_core.token('BaseFunctionId',p_base_function_id);
1314: wf_core.token('DerivedClassId',p_irep_class_id);
1315: wf_core.token('SqlErr',SQLERRM);
1316: p_err_message := wf_core.translate('WF_WS_FUNCTION_CREATE');
1317: raise program_exit;
1318: end create_derived_method_entry;
1319:

Line 1316: p_err_message := wf_core.translate('WF_WS_FUNCTION_CREATE');

1312: wf_core.token('FunctionName',p_function_name);
1313: wf_core.token('BaseFunctionId',p_base_function_id);
1314: wf_core.token('DerivedClassId',p_irep_class_id);
1315: wf_core.token('SqlErr',SQLERRM);
1316: p_err_message := wf_core.translate('WF_WS_FUNCTION_CREATE');
1317: raise program_exit;
1318: end create_derived_method_entry;
1319:
1320:

Line 1368: p_err_message := wf_core.translate('WF_WS_SUCCESS');

1364: p_err_message
1365: );
1366: end loop;
1367: p_err_code := 0;
1368: p_err_message := wf_core.translate('WF_WS_SUCCESS');
1369:
1370: exception
1371: when program_exit then
1372: raise program_exit;

Line 1375: wf_core.token('BaseFunctionId',p_base_function_id);

1371: when program_exit then
1372: raise program_exit;
1373: when others then
1374: p_err_code := -1;
1375: wf_core.token('BaseFunctionId',p_base_function_id);
1376: wf_core.token('DerivedFunctionId',p_function_id);
1377: wf_core.token('DerivedFunctionName',p_function_name);
1378: wf_core.token('SqlErr',SQLERRM);
1379: p_err_message := wf_core.translate('WF_WS_FUNC_LANG_ENTRIES');

Line 1376: wf_core.token('DerivedFunctionId',p_function_id);

1372: raise program_exit;
1373: when others then
1374: p_err_code := -1;
1375: wf_core.token('BaseFunctionId',p_base_function_id);
1376: wf_core.token('DerivedFunctionId',p_function_id);
1377: wf_core.token('DerivedFunctionName',p_function_name);
1378: wf_core.token('SqlErr',SQLERRM);
1379: p_err_message := wf_core.translate('WF_WS_FUNC_LANG_ENTRIES');
1380: raise program_exit;

Line 1377: wf_core.token('DerivedFunctionName',p_function_name);

1373: when others then
1374: p_err_code := -1;
1375: wf_core.token('BaseFunctionId',p_base_function_id);
1376: wf_core.token('DerivedFunctionId',p_function_id);
1377: wf_core.token('DerivedFunctionName',p_function_name);
1378: wf_core.token('SqlErr',SQLERRM);
1379: p_err_message := wf_core.translate('WF_WS_FUNC_LANG_ENTRIES');
1380: raise program_exit;
1381: end create_function_lang_entries;

Line 1378: wf_core.token('SqlErr',SQLERRM);

1374: p_err_code := -1;
1375: wf_core.token('BaseFunctionId',p_base_function_id);
1376: wf_core.token('DerivedFunctionId',p_function_id);
1377: wf_core.token('DerivedFunctionName',p_function_name);
1378: wf_core.token('SqlErr',SQLERRM);
1379: p_err_message := wf_core.translate('WF_WS_FUNC_LANG_ENTRIES');
1380: raise program_exit;
1381: end create_function_lang_entries;
1382:

Line 1379: p_err_message := wf_core.translate('WF_WS_FUNC_LANG_ENTRIES');

1375: wf_core.token('BaseFunctionId',p_base_function_id);
1376: wf_core.token('DerivedFunctionId',p_function_id);
1377: wf_core.token('DerivedFunctionName',p_function_name);
1378: wf_core.token('SqlErr',SQLERRM);
1379: p_err_message := wf_core.translate('WF_WS_FUNC_LANG_ENTRIES');
1380: raise program_exit;
1381: end create_function_lang_entries;
1382:
1383:

Line 1475: p_err_message :=wf_core.translate('WF_WS_SUCCESS');

1471: end if;
1472:
1473: close c_function_language;
1474:
1475: p_err_message :=wf_core.translate('WF_WS_SUCCESS');
1476: p_err_code :=0;
1477: exception
1478: when program_exit then
1479: raise program_exit;

Line 1482: wf_core.token('DerivedFunctionName', p_function_name);

1478: when program_exit then
1479: raise program_exit;
1480: when others then
1481: p_err_code := -1;
1482: wf_core.token('DerivedFunctionName', p_function_name);
1483: wf_core.token('DerivedFunctionId',p_function_id);
1484: wf_core.token('Lang',p_language);
1485: wf_core.token('SqlErr',SQLERRM);
1486: p_err_message := wf_core.translate('WF_WS_FUNC_LANG');

Line 1483: wf_core.token('DerivedFunctionId',p_function_id);

1479: raise program_exit;
1480: when others then
1481: p_err_code := -1;
1482: wf_core.token('DerivedFunctionName', p_function_name);
1483: wf_core.token('DerivedFunctionId',p_function_id);
1484: wf_core.token('Lang',p_language);
1485: wf_core.token('SqlErr',SQLERRM);
1486: p_err_message := wf_core.translate('WF_WS_FUNC_LANG');
1487: raise program_exit;

Line 1484: wf_core.token('Lang',p_language);

1480: when others then
1481: p_err_code := -1;
1482: wf_core.token('DerivedFunctionName', p_function_name);
1483: wf_core.token('DerivedFunctionId',p_function_id);
1484: wf_core.token('Lang',p_language);
1485: wf_core.token('SqlErr',SQLERRM);
1486: p_err_message := wf_core.translate('WF_WS_FUNC_LANG');
1487: raise program_exit;
1488: end create_function_language;

Line 1485: wf_core.token('SqlErr',SQLERRM);

1481: p_err_code := -1;
1482: wf_core.token('DerivedFunctionName', p_function_name);
1483: wf_core.token('DerivedFunctionId',p_function_id);
1484: wf_core.token('Lang',p_language);
1485: wf_core.token('SqlErr',SQLERRM);
1486: p_err_message := wf_core.translate('WF_WS_FUNC_LANG');
1487: raise program_exit;
1488: end create_function_language;
1489:

Line 1486: p_err_message := wf_core.translate('WF_WS_FUNC_LANG');

1482: wf_core.token('DerivedFunctionName', p_function_name);
1483: wf_core.token('DerivedFunctionId',p_function_id);
1484: wf_core.token('Lang',p_language);
1485: wf_core.token('SqlErr',SQLERRM);
1486: p_err_message := wf_core.translate('WF_WS_FUNC_LANG');
1487: raise program_exit;
1488: end create_function_language;
1489:
1490: procedure create_class_language

Line 1583: p_err_message :=wf_core.translate('WF_WS_SUCCESS');

1579: end if;
1580:
1581: close c_class_language;
1582:
1583: p_err_message :=wf_core.translate('WF_WS_SUCCESS');
1584: p_err_code :=0;
1585: exception
1586: when program_exit then
1587: raise program_exit;

Line 1590: wf_core.token('DerivedClassName', p_derived_class_name);

1586: when program_exit then
1587: raise program_exit;
1588: when others then
1589: p_err_code := -1;
1590: wf_core.token('DerivedClassName', p_derived_class_name);
1591: wf_core.token('DerivedClassId',p_class_id);
1592: wf_core.token('Lang',p_language);
1593: wf_core.token('SqlErr',SQLERRM);
1594: p_err_message := wf_core.translate('WF_WS_CLASS_LANG');

Line 1591: wf_core.token('DerivedClassId',p_class_id);

1587: raise program_exit;
1588: when others then
1589: p_err_code := -1;
1590: wf_core.token('DerivedClassName', p_derived_class_name);
1591: wf_core.token('DerivedClassId',p_class_id);
1592: wf_core.token('Lang',p_language);
1593: wf_core.token('SqlErr',SQLERRM);
1594: p_err_message := wf_core.translate('WF_WS_CLASS_LANG');
1595: raise program_exit;

Line 1592: wf_core.token('Lang',p_language);

1588: when others then
1589: p_err_code := -1;
1590: wf_core.token('DerivedClassName', p_derived_class_name);
1591: wf_core.token('DerivedClassId',p_class_id);
1592: wf_core.token('Lang',p_language);
1593: wf_core.token('SqlErr',SQLERRM);
1594: p_err_message := wf_core.translate('WF_WS_CLASS_LANG');
1595: raise program_exit;
1596: end create_class_language;

Line 1593: wf_core.token('SqlErr',SQLERRM);

1589: p_err_code := -1;
1590: wf_core.token('DerivedClassName', p_derived_class_name);
1591: wf_core.token('DerivedClassId',p_class_id);
1592: wf_core.token('Lang',p_language);
1593: wf_core.token('SqlErr',SQLERRM);
1594: p_err_message := wf_core.translate('WF_WS_CLASS_LANG');
1595: raise program_exit;
1596: end create_class_language;
1597:

Line 1594: p_err_message := wf_core.translate('WF_WS_CLASS_LANG');

1590: wf_core.token('DerivedClassName', p_derived_class_name);
1591: wf_core.token('DerivedClassId',p_class_id);
1592: wf_core.token('Lang',p_language);
1593: wf_core.token('SqlErr',SQLERRM);
1594: p_err_message := wf_core.translate('WF_WS_CLASS_LANG');
1595: raise program_exit;
1596: end create_class_language;
1597:
1598:

Line 1649: p_err_message := wf_core.translate('WF_WS_SUCCESS');

1645: );
1646: end loop;
1647:
1648: p_err_code := 0;
1649: p_err_message := wf_core.translate('WF_WS_SUCCESS');
1650:
1651: exception
1652: when program_exit then
1653: raise program_exit;

Line 1656: wf_core.token('DerivedClassName', p_derived_class_name);

1652: when program_exit then
1653: raise program_exit;
1654: when others then
1655: p_err_code := -1;
1656: wf_core.token('DerivedClassName', p_derived_class_name);
1657: wf_core.token('DerivedClassId',p_class_id);
1658: wf_core.token('SqlErr',SQLERRM);
1659: p_err_message := wf_core.translate('WF_WS_CLASS_LANG_ENTRIES');
1660: raise program_exit;

Line 1657: wf_core.token('DerivedClassId',p_class_id);

1653: raise program_exit;
1654: when others then
1655: p_err_code := -1;
1656: wf_core.token('DerivedClassName', p_derived_class_name);
1657: wf_core.token('DerivedClassId',p_class_id);
1658: wf_core.token('SqlErr',SQLERRM);
1659: p_err_message := wf_core.translate('WF_WS_CLASS_LANG_ENTRIES');
1660: raise program_exit;
1661: end create_class_lang_entries;

Line 1658: wf_core.token('SqlErr',SQLERRM);

1654: when others then
1655: p_err_code := -1;
1656: wf_core.token('DerivedClassName', p_derived_class_name);
1657: wf_core.token('DerivedClassId',p_class_id);
1658: wf_core.token('SqlErr',SQLERRM);
1659: p_err_message := wf_core.translate('WF_WS_CLASS_LANG_ENTRIES');
1660: raise program_exit;
1661: end create_class_lang_entries;
1662:

Line 1659: p_err_message := wf_core.translate('WF_WS_CLASS_LANG_ENTRIES');

1655: p_err_code := -1;
1656: wf_core.token('DerivedClassName', p_derived_class_name);
1657: wf_core.token('DerivedClassId',p_class_id);
1658: wf_core.token('SqlErr',SQLERRM);
1659: p_err_message := wf_core.translate('WF_WS_CLASS_LANG_ENTRIES');
1660: raise program_exit;
1661: end create_class_lang_entries;
1662:
1663: procedure create_xmlg_schema

Line 1711: p_err_message := wf_core.translate('WF_WS_SUCCESS');

1707: p_clob := i_tmp;
1708: dbms_lob.freetemporary(i_tmp);
1709:
1710: p_err_code := 0;
1711: p_err_message := wf_core.translate('WF_WS_SUCCESS');
1712: exception
1713: when program_exit then
1714: raise program_exit;
1715: when others then

Line 1717: wf_core.token('InterfaceName',p_port_type);

1713: when program_exit then
1714: raise program_exit;
1715: when others then
1716: p_err_code := -1;
1717: wf_core.token('InterfaceName',p_port_type);
1718: wf_core.token('SqlErr',SQLERRM);
1719: p_err_message := wf_core.translate('WF_WS_XMLG_SCHEMA');
1720: raise program_exit;
1721: end create_xmlg_schema;

Line 1718: wf_core.token('SqlErr',SQLERRM);

1714: raise program_exit;
1715: when others then
1716: p_err_code := -1;
1717: wf_core.token('InterfaceName',p_port_type);
1718: wf_core.token('SqlErr',SQLERRM);
1719: p_err_message := wf_core.translate('WF_WS_XMLG_SCHEMA');
1720: raise program_exit;
1721: end create_xmlg_schema;
1722:

Line 1719: p_err_message := wf_core.translate('WF_WS_XMLG_SCHEMA');

1715: when others then
1716: p_err_code := -1;
1717: wf_core.token('InterfaceName',p_port_type);
1718: wf_core.token('SqlErr',SQLERRM);
1719: p_err_message := wf_core.translate('WF_WS_XMLG_SCHEMA');
1720: raise program_exit;
1721: end create_xmlg_schema;
1722:
1723:

Line 1741: p_err_message := wf_core.translate('WF_WS_SUCCESS');

1737: p_new_name := l_var;
1738: end if;
1739:
1740: p_err_code := 0;
1741: p_err_message := wf_core.translate('WF_WS_SUCCESS');
1742: exception
1743: when program_exit then
1744: raise program_exit;
1745: when others then

Line 1747: wf_core.token('Name',p_name);

1743: when program_exit then
1744: raise program_exit;
1745: when others then
1746: p_err_code := -1;
1747: wf_core.token('Name',p_name);
1748: wf_core.token('SqlErr',SQLERRM);
1749: p_err_message := wf_core.translate('WF_WS_XMLG_NS');
1750: raise program_exit;
1751: end;

Line 1748: wf_core.token('SqlErr',SQLERRM);

1744: raise program_exit;
1745: when others then
1746: p_err_code := -1;
1747: wf_core.token('Name',p_name);
1748: wf_core.token('SqlErr',SQLERRM);
1749: p_err_message := wf_core.translate('WF_WS_XMLG_NS');
1750: raise program_exit;
1751: end;
1752:

Line 1749: p_err_message := wf_core.translate('WF_WS_XMLG_NS');

1745: when others then
1746: p_err_code := -1;
1747: wf_core.token('Name',p_name);
1748: wf_core.token('SqlErr',SQLERRM);
1749: p_err_message := wf_core.translate('WF_WS_XMLG_NS');
1750: raise program_exit;
1751: end;
1752:
1753:

Line 1880: p_err_message := wf_core.translate('WF_WS_SUCCESS');

1876: close c2;
1877: end loop;
1878:
1879: p_err_code := 0;
1880: p_err_message := wf_core.translate('WF_WS_SUCCESS');
1881: exception
1882: when program_exit then
1883: raise program_exit;
1884: when others then

Line 1886: wf_core.token('DerivedClassName', p_derived_class_name);

1882: when program_exit then
1883: raise program_exit;
1884: when others then
1885: p_err_code := -1;
1886: wf_core.token('DerivedClassName', p_derived_class_name);
1887: wf_core.token('DerivedClassId',p_derived_class_id);
1888: wf_core.token('SqlErr',SQLERRM);
1889: p_err_message := wf_core.translate('WF_WS_CREATE_BUS_ENTITIES');
1890: raise program_exit;

Line 1887: wf_core.token('DerivedClassId',p_derived_class_id);

1883: raise program_exit;
1884: when others then
1885: p_err_code := -1;
1886: wf_core.token('DerivedClassName', p_derived_class_name);
1887: wf_core.token('DerivedClassId',p_derived_class_id);
1888: wf_core.token('SqlErr',SQLERRM);
1889: p_err_message := wf_core.translate('WF_WS_CREATE_BUS_ENTITIES');
1890: raise program_exit;
1891: end assign_business_entities;

Line 1888: wf_core.token('SqlErr',SQLERRM);

1884: when others then
1885: p_err_code := -1;
1886: wf_core.token('DerivedClassName', p_derived_class_name);
1887: wf_core.token('DerivedClassId',p_derived_class_id);
1888: wf_core.token('SqlErr',SQLERRM);
1889: p_err_message := wf_core.translate('WF_WS_CREATE_BUS_ENTITIES');
1890: raise program_exit;
1891: end assign_business_entities;
1892:

Line 1889: p_err_message := wf_core.translate('WF_WS_CREATE_BUS_ENTITIES');

1885: p_err_code := -1;
1886: wf_core.token('DerivedClassName', p_derived_class_name);
1887: wf_core.token('DerivedClassId',p_derived_class_id);
1888: wf_core.token('SqlErr',SQLERRM);
1889: p_err_message := wf_core.translate('WF_WS_CREATE_BUS_ENTITIES');
1890: raise program_exit;
1891: end assign_business_entities;
1892:
1893: procedure ws_base_method_overload

Line 1951: p_err_message := wf_core.translate('WF_WS_SUCCESS');

1947: fetch c_function_name into p_function_name;
1948: close c_function_name;
1949:
1950: p_err_code := 0;
1951: p_err_message := wf_core.translate('WF_WS_SUCCESS');
1952: exception
1953: when others then
1954: p_err_code := -1;
1955: wf_core.token('DerivedFunctionName', p_function_name);

Line 1955: wf_core.token('DerivedFunctionName', p_function_name);

1951: p_err_message := wf_core.translate('WF_WS_SUCCESS');
1952: exception
1953: when others then
1954: p_err_code := -1;
1955: wf_core.token('DerivedFunctionName', p_function_name);
1956: wf_core.token('DerivedFunctionId',p_function_id);
1957: wf_core.token('SqlErr',SQLERRM);
1958: p_err_message := wf_core.translate('WF_WS_OVERLOAD_SEQ');
1959: raise program_exit;

Line 1956: wf_core.token('DerivedFunctionId',p_function_id);

1952: exception
1953: when others then
1954: p_err_code := -1;
1955: wf_core.token('DerivedFunctionName', p_function_name);
1956: wf_core.token('DerivedFunctionId',p_function_id);
1957: wf_core.token('SqlErr',SQLERRM);
1958: p_err_message := wf_core.translate('WF_WS_OVERLOAD_SEQ');
1959: raise program_exit;
1960: end ws_base_method_overload;

Line 1957: wf_core.token('SqlErr',SQLERRM);

1953: when others then
1954: p_err_code := -1;
1955: wf_core.token('DerivedFunctionName', p_function_name);
1956: wf_core.token('DerivedFunctionId',p_function_id);
1957: wf_core.token('SqlErr',SQLERRM);
1958: p_err_message := wf_core.translate('WF_WS_OVERLOAD_SEQ');
1959: raise program_exit;
1960: end ws_base_method_overload;
1961:

Line 1958: p_err_message := wf_core.translate('WF_WS_OVERLOAD_SEQ');

1954: p_err_code := -1;
1955: wf_core.token('DerivedFunctionName', p_function_name);
1956: wf_core.token('DerivedFunctionId',p_function_id);
1957: wf_core.token('SqlErr',SQLERRM);
1958: p_err_message := wf_core.translate('WF_WS_OVERLOAD_SEQ');
1959: raise program_exit;
1960: end ws_base_method_overload;
1961:
1962:

Line 1997: wf_core.token('GetRootElement mapCode', p_map_code);

1993:
1994: exception
1995: when others then
1996: p_err_code := -1;
1997: wf_core.token('GetRootElement mapCode', p_map_code);
1998: wf_core.token('SqlErr',SQLERRM);
1999: p_err_message := wf_core.translate('WF_WS_MODULE_FAILED');
2000: raise program_exit;
2001: end get_root_element;

Line 1998: wf_core.token('SqlErr',SQLERRM);

1994: exception
1995: when others then
1996: p_err_code := -1;
1997: wf_core.token('GetRootElement mapCode', p_map_code);
1998: wf_core.token('SqlErr',SQLERRM);
1999: p_err_message := wf_core.translate('WF_WS_MODULE_FAILED');
2000: raise program_exit;
2001: end get_root_element;
2002:

Line 1999: p_err_message := wf_core.translate('WF_WS_MODULE_FAILED');

1995: when others then
1996: p_err_code := -1;
1997: wf_core.token('GetRootElement mapCode', p_map_code);
1998: wf_core.token('SqlErr',SQLERRM);
1999: p_err_message := wf_core.translate('WF_WS_MODULE_FAILED');
2000: raise program_exit;
2001: end get_root_element;
2002:
2003: end WF_WS_GEN;