DBA Data[Home] [Help]

APPS.WF_EVENT_SYNCHRONIZE_PKG dependencies on WF_CORE

Line 7: -- g_begin_clob varchar2(100) := ''||wf_core.newline;

3: ------------------------------------------------------------------------------
4: /*
5: ** PRIVATE global variable
6: */
7: -- g_begin_clob varchar2(100) := ''||wf_core.newline;
8: g_begin_clob varchar2(100) := '';
9: g_end_clob varchar2(100) := '
';
10: g_begin_string varchar2(100) := '';
11: g_end_string varchar2(100) := '
';

Line 48: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SYNCHRONIZE', p_event.event_name,

44: return (l_result);
45:
46: exception
47: when others then
48: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SYNCHRONIZE', p_event.event_name,
49: p_event.event_key,
50: 'ERROR'); raise;
51: return('ERROR');
52: end;

Line 76: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SYNCHRONIZEUPLOAD', p_event.event_name,

72: return (l_result);
73:
74: exception
75: when others then
76: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SYNCHRONIZEUPLOAD', p_event.event_name,
77: p_event.event_key,
78: 'ERROR'); raise;
79: return('ERROR');
80: end;

Line 180: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'CREATESYNCCLOB', g_objecttype,

176: --return (syncclob);
177:
178: exception
179: when others then
180: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'CREATESYNCCLOB', g_objecttype,
181: p_ObjectKey ,null);
182: raise;
183: end;
184: ------------------------------------------------------------------------------

Line 240: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'CREATEFILE', p_Directory||

236: wf_event_synchronize_pkg.CreateClobFile(p_Directory, p_Filename, l_clob);
237:
238: exception
239: when others then
240: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'CREATEFILE', p_Directory||
241: '*'||p_Filename,p_ObjectType||'*'||p_ObjectKey ,null);
242: raise;
243: end;
244: ------------------------------------------------------------------------------

Line 353: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'CREATECLOBFILE', p_Directory||

349: utl_file.fclose(l_filehandle);
350:
351: exception
352: when others then
353: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'CREATECLOBFILE', p_Directory||
354: '*'||p_Filename,null);
355: raise;
356: end;
357: ------------------------------------------------------------------------------

Line 421: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,

417: wf_event_synchronize_pkg.uploadsyncclob( l_clob);
418:
419: exception
420: when utl_file.invalid_path then
421: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
422: p_Filename,null);
423: wf_core.raise('WFE_INVALID_PATH');
424: when utl_file.invalid_mode then
425: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,

Line 423: wf_core.raise('WFE_INVALID_PATH');

419: exception
420: when utl_file.invalid_path then
421: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
422: p_Filename,null);
423: wf_core.raise('WFE_INVALID_PATH');
424: when utl_file.invalid_mode then
425: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
426: p_Filename,null);
427: wf_core.raise('WFE_INVALID_MODE');

Line 425: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,

421: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
422: p_Filename,null);
423: wf_core.raise('WFE_INVALID_PATH');
424: when utl_file.invalid_mode then
425: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
426: p_Filename,null);
427: wf_core.raise('WFE_INVALID_MODE');
428: when utl_file.invalid_operation then
429: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,

Line 427: wf_core.raise('WFE_INVALID_MODE');

423: wf_core.raise('WFE_INVALID_PATH');
424: when utl_file.invalid_mode then
425: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
426: p_Filename,null);
427: wf_core.raise('WFE_INVALID_MODE');
428: when utl_file.invalid_operation then
429: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
430: p_Filename,null);
431: wf_core.raise('WFE_INVALID_OPERATION');

Line 429: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,

425: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
426: p_Filename,null);
427: wf_core.raise('WFE_INVALID_MODE');
428: when utl_file.invalid_operation then
429: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
430: p_Filename,null);
431: wf_core.raise('WFE_INVALID_OPERATION');
432: when utl_file.read_error then
433: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,

Line 431: wf_core.raise('WFE_INVALID_OPERATION');

427: wf_core.raise('WFE_INVALID_MODE');
428: when utl_file.invalid_operation then
429: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
430: p_Filename,null);
431: wf_core.raise('WFE_INVALID_OPERATION');
432: when utl_file.read_error then
433: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
434: p_Filename,null);
435: wf_core.raise('WFE_READ_ERROR');

Line 433: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,

429: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
430: p_Filename,null);
431: wf_core.raise('WFE_INVALID_OPERATION');
432: when utl_file.read_error then
433: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
434: p_Filename,null);
435: wf_core.raise('WFE_READ_ERROR');
436: when utl_file.internal_error then
437: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,

Line 435: wf_core.raise('WFE_READ_ERROR');

431: wf_core.raise('WFE_INVALID_OPERATION');
432: when utl_file.read_error then
433: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
434: p_Filename,null);
435: wf_core.raise('WFE_READ_ERROR');
436: when utl_file.internal_error then
437: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
438: p_Filename,null);
439: wf_core.raise('WFE_INTERNAL_ERROR');

Line 437: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,

433: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
434: p_Filename,null);
435: wf_core.raise('WFE_READ_ERROR');
436: when utl_file.internal_error then
437: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
438: p_Filename,null);
439: wf_core.raise('WFE_INTERNAL_ERROR');
440: when utl_file.invalid_filehandle then
441: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,

Line 439: wf_core.raise('WFE_INTERNAL_ERROR');

435: wf_core.raise('WFE_READ_ERROR');
436: when utl_file.internal_error then
437: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
438: p_Filename,null);
439: wf_core.raise('WFE_INTERNAL_ERROR');
440: when utl_file.invalid_filehandle then
441: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
442: p_Filename,null);
443: wf_core.raise('WFE_INVALID_FILEHANDLE');

Line 441: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,

437: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
438: p_Filename,null);
439: wf_core.raise('WFE_INTERNAL_ERROR');
440: when utl_file.invalid_filehandle then
441: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
442: p_Filename,null);
443: wf_core.raise('WFE_INVALID_FILEHANDLE');
444: when others then
445: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,

Line 443: wf_core.raise('WFE_INVALID_FILEHANDLE');

439: wf_core.raise('WFE_INTERNAL_ERROR');
440: when utl_file.invalid_filehandle then
441: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
442: p_Filename,null);
443: wf_core.raise('WFE_INVALID_FILEHANDLE');
444: when others then
445: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
446: p_Filename,null);
447: raise;

Line 445: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,

441: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
442: p_Filename,null);
443: wf_core.raise('WFE_INVALID_FILEHANDLE');
444: when others then
445: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADFILE', p_Directory,
446: p_Filename,null);
447: raise;
448: end;
449: ------------------------------------------------------------------------------

Line 530: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADSYNCCLOB', l_counter,

526: END LOOP;
527:
528: exception
529: when others then
530: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UPLOADSYNCCLOB', l_counter,
531: substr(l_messagedata,1,100)
532: ,null);
533: raise;
534: end;

Line 574: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetSystems', p_key,null,

570: return (returnclob);
571:
572: exception
573: when others then
574: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetSystems', p_key,null,
575: 'ERROR'); raise;
576: end;
577: ------------------------------------------------------------------------------
578: /*

Line 609: l_guid := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));

605: -- upper(g_ObjectType) = 'EVENT' OR
606: -- upper(g_ObjectType) = 'SUBSCRIPTIONS' OR
607: -- upper(g_ObjectType) = 'GROUPS' OR
608: upper(g_ObjectType) = 'EVENTS') THEN
609: l_guid := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));
610: ELSE
611: l_guid := hextoraw(null);
612: END IF;
613:

Line 665: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetAgents', p_key,null,

661:
662:
663: exception
664: when others then
665: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetAgents', p_key,null,
666: 'ERROR'); raise;
667: end;
668: ------------------------------------------------------------------------------
669: /*

Line 718: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetAgentGroups', p_key,null,

714: return (returnclob);
715:
716: exception
717: when others then
718: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetAgentGroups', p_key,null,
719: 'ERROR'); raise;
720: end;
721:
722: ------------------------------------------------------------------------------

Line 783: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetEvents', p_key,null,

779: return (returnclob);
780:
781: exception
782: when others then
783: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetEvents', p_key,null,
784: 'ERROR'); raise;
785: end;
786: ------------------------------------------------------------------------------
787: /*

Line 852: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetEventGroups', p_key,null,

848: return (returnclob);
849:
850: exception
851: when others then
852: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetEventGroups', p_key,null,
853: 'ERROR'); raise;
854: end;
855: ------------------------------------------------------------------------------
856: /*

Line 915: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetGroups', p_key,null,

911: return (returnclob);
912:
913: exception
914: when others then
915: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetGroups', p_key,null,
916: 'ERROR'); raise;
917: end;
918: ------------------------------------------------------------------------------
919: function GETEVENTGROUPBYGROUP (

Line 960: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetEventGroupByGroup', p_key,null,

956: return (returnclob);
957:
958: exception
959: when others then
960: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetEventGroupByGroup', p_key,null,
961: 'ERROR'); raise;
962: end;
963:
964: ------------------------------------------------------------------------------

Line 1006: l_guid := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));

1002: -- upper(g_ObjectType) = 'EVENT' OR
1003: -- upper(g_ObjectType) = 'SUBSCRIPTIONS' OR
1004: -- upper(g_ObjectType) = 'GROUPS' OR
1005: upper(g_ObjectType) = 'EVENTS') THEN
1006: l_guid := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));
1007: ELSE
1008: l_guid := hextoraw(null);
1009: END IF;
1010:

Line 1134: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetSubscriptions', p_key,null,

1130: return (returnclob);
1131:
1132: exception
1133: when others then
1134: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetSubscriptions', p_key,null,
1135: 'ERROR'); raise;
1136: end;
1137: ------------------------------------------------------------------------------
1138: /*

Line 1169: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetObjectType',

1165: return (l_return);
1166:
1167: exception
1168: when others then
1169: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetObjectType',
1170: substr(p_messagedata,1,100),null,
1171: 'ERROR'); raise;
1172: end;
1173: ------------------------------------------------------------------------------

Line 1203: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UploadObject',

1199: END IF;
1200:
1201: /*exception
1202: when others then
1203: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UploadObject',
1204: substr(p_messagedata,1,100),
1205: p_objecttype,
1206: 'ERROR'); raise;*/
1207: end;

Line 1233: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UpdateGUID');

1229: end if;
1230: end if;
1231: exception
1232: when others then
1233: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'UpdateGUID');
1234: raise;
1235: end;
1236: ------------------------------------------------------------------------------
1237: /*

Line 1277: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'ReplaceContent');

1273: end if;
1274: return (retStr);
1275: exception
1276: when others then
1277: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'ReplaceContent');
1278: raise;
1279: end;
1280: ------------------------------------------------------------------------------
1281: /*

Line 1313: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SetGUID');

1309: end if;
1310: return (retStr);
1311: exception
1312: when others then
1313: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SetGUID');
1314: raise;
1315: end;
1316: ------------------------------------------------------------------------------
1317: /*

Line 1334: l_sys_guid := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));

1330:
1331: begin
1332: if dataStr is not null then
1333: -- beg_pos := instr(dataStr, g_guid);
1334: l_sys_guid := hextoraw(wf_core.translate('WF_SYSTEM_GUID'));
1335: retStr := replace(dataStr,g_sys_guid,''||l_sys_guid||'');
1336: else
1337: retStr := dataStr;
1338: end if;

Line 1342: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SetSYSTEMGUID');

1338: end if;
1339: return (retStr);
1340: exception
1341: when others then
1342: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SetSYSTEMGUID');
1343: raise;
1344: end;
1345: ------------------------------------------------------------------------------
1346: /*

Line 1373: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetSID');

1369: return upper(substr(l_sid,1,30));
1370:
1371: exception
1372: when others then
1373: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetSID');
1374: raise;
1375: end;
1376: ------------------------------------------------------------------------------
1377: /*

Line 1404: g_qowner := upper(wf_core.translate('WF_SCHEMA'));

1400: from wf_agents
1401: where name = 'WF_IN';
1402: */
1403: if (g_qowner is null) then
1404: g_qowner := upper(wf_core.translate('WF_SCHEMA'));
1405: end if;
1406:
1407: end;
1408:

Line 1412: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetQOwner');

1408:
1409: return (g_qowner);
1410: exception
1411: when others then
1412: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'GetQOwner');
1413: raise;
1414: end;
1415: ------------------------------------------------------------------------------
1416: /*

Line 1460: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SetSID');

1456: return (retStr);
1457:
1458: exception
1459: when others then
1460: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SetSID');
1461: raise;
1462: end;
1463: ------------------------------------------------------------------------------
1464: /*

Line 1482: and system_guid = hextoraw(wf_core.translate('WF_SYSTEM_GUID'));

1478:
1479: cursor agent(str varchar2) is
1480: select guid from wf_agents
1481: where name=str
1482: and system_guid = hextoraw(wf_core.translate('WF_SYSTEM_GUID'));
1483:
1484: begin
1485: if dataStr is not null then
1486: tmpStr := dataStr;

Line 1550: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SetAgent');

1546: return (retStr);
1547:
1548: exception
1549: when others then
1550: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SetAgent');
1551: raise;
1552: end;
1553:
1554: ------------------------------------------------------------------------------

Line 1623: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SetPound');

1619: end if;
1620: return (retStr);
1621: exception
1622: when others then
1623: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SetPound');
1624: raise;
1625: end;
1626:
1627: ------------------------------------------------------------------------------

Line 1678: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SetNull');

1674: end if;
1675: return (retStr);
1676: exception
1677: when others then
1678: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'SetNull');
1679: raise;
1680: end;
1681:
1682: ------------------------------------------------------------------------------

Line 1700: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'CREATEEMPTYCLOB');

1696:
1697: dbms_lob.createtemporary(p_outclob, FALSE, DBMS_LOB.CALL);
1698: exception
1699: when others then
1700: wf_core.context('WF_EVENT_SYNCHRONIZE_PKG', 'CREATEEMPTYCLOB');
1701: raise;
1702: end;
1703: ------------------------------------------------------------------------------
1704: /*

Line 1744: wf_core.token('GUID', l_agtguid);

1740: from wf_agents
1741: where guid = l_agtguid;
1742: exception
1743: when others then
1744: wf_core.token('GUID', l_agtguid);
1745: wf_core.raise('WFE_AGENT_NOTRESOLVE');
1746: end;
1747:
1748: l_replaceTarget := '#'||l_replaceTarget;

Line 1745: wf_core.raise('WFE_AGENT_NOTRESOLVE');

1741: where guid = l_agtguid;
1742: exception
1743: when others then
1744: wf_core.token('GUID', l_agtguid);
1745: wf_core.raise('WFE_AGENT_NOTRESOLVE');
1746: end;
1747:
1748: l_replaceTarget := '#'||l_replaceTarget;
1749:

Line 1761: wf_core.context('Wf_Event_Synchronize_Pkg', 'GetAgent');

1757: end if;
1758: return (retStr);
1759: exception
1760: when others then
1761: wf_core.context('Wf_Event_Synchronize_Pkg', 'GetAgent');
1762: raise;
1763: end;
1764: --------------------------------------------------------------------------------------------
1765: /*

Line 1821: wf_core.token('AGENT',l_agtname);

1817: end if;
1818: return (retStr);
1819: exception
1820: when no_data_found then
1821: wf_core.token('AGENT',l_agtname);
1822: wf_core.raise('WFE_SEEDAGT_NOTFOUND');
1823: when others then
1824: raise;
1825: end;

Line 1822: wf_core.raise('WFE_SEEDAGT_NOTFOUND');

1818: return (retStr);
1819: exception
1820: when no_data_found then
1821: wf_core.token('AGENT',l_agtname);
1822: wf_core.raise('WFE_SEEDAGT_NOTFOUND');
1823: when others then
1824: raise;
1825: end;
1826: --------------------------------------------------------------------------------------------

Line 1844: if (wf_core.error_name is not null) then

1840: p_error_code := null;
1841: p_error_msg := null;
1842: exception
1843: when others then
1844: if (wf_core.error_name is not null) then
1845: p_error_code := wf_core.error_name;
1846: p_error_msg := wf_core.error_message;
1847: else
1848: raise;

Line 1845: p_error_code := wf_core.error_name;

1841: p_error_msg := null;
1842: exception
1843: when others then
1844: if (wf_core.error_name is not null) then
1845: p_error_code := wf_core.error_name;
1846: p_error_msg := wf_core.error_message;
1847: else
1848: raise;
1849: end if;

Line 1846: p_error_msg := wf_core.error_message;

1842: exception
1843: when others then
1844: if (wf_core.error_name is not null) then
1845: p_error_code := wf_core.error_name;
1846: p_error_msg := wf_core.error_message;
1847: else
1848: raise;
1849: end if;
1850: end CREATESYNCCLOB2;

Line 1880: WF_CORE.context(l_package_name, l_module_name, l_tem_tab_name, sqlerrm);

1876: g_nzdtPrepare := true;
1877: end if;
1878: exception
1879: when others then
1880: WF_CORE.context(l_package_name, l_module_name, l_tem_tab_name, sqlerrm);
1881: raise;
1882: end Prepare_Zero_Down_Time;
1883:
1884: --------------------------------------------------------------------------------------------