DBA Data[Home] [Help]

APPS.OE_ORDER_WF_UTIL dependencies on WF_PURGE

Line 1165: WF_PURGE.Items

1161: WF_ENGINE.AbortProcess
1162: (itemtype => OE_GLOBALS.G_WFI_LIN,
1163: itemkey => OE_GLOBALS.G_START_LINE_FLOWS_TBL(CTR).line_id);
1164:
1165: WF_PURGE.Items
1166: (itemtype => OE_GLOBALS.G_WFI_LIN,
1167: itemkey => OE_GLOBALS.G_START_LINE_FLOWS_TBL(CTR).line_id,
1168: force => TRUE,
1169: docommit => false);

Line 1335: WF_PURGE.Items(itemtype => OE_GLOBALS.G_WFI_HDR,

1331: IF l_status <> 'COMPLETE' THEN
1332: WF_ENGINE.AbortProcess(itemtype => OE_GLOBALS.G_WFI_HDR,
1333: itemkey => p_id);
1334: END IF;
1335: WF_PURGE.Items(itemtype => OE_GLOBALS.G_WFI_HDR,
1336: itemkey => p_id,
1337: force => TRUE,
1338: docommit => false);
1339:

Line 1347: WF_PURGE.Items(itemtype => OE_GLOBALS.G_WFI_NGO,

1343: where item_type=OE_GLOBALS.G_WFI_NGO
1344: and item_key=to_char(p_id);
1345:
1346: IF l_count > 0 THEN
1347: WF_PURGE.Items(itemtype => OE_GLOBALS.G_WFI_NGO,
1348: itemkey => p_id,
1349: force => TRUE,
1350: docommit => false);
1351: END IF;

Line 1373: WF_PURGE.Items(itemtype => OE_GLOBALS.G_WFI_LIN,

1369: END IF;
1370: IF l_debug_level > 0 THEN
1371: oe_debug_pub.add( 'PURGING WF ITEM' ) ;
1372: END IF;
1373: WF_PURGE.Items(itemtype => OE_GLOBALS.G_WFI_LIN,
1374: itemkey => p_id,
1375: force => TRUE,
1376: docommit => false);
1377: END IF;

Line 1391: WF_PURGE.Items(itemtype => OE_GLOBALS.G_WFI_NGO,

1387: END IF;
1388: IF l_debug_level > 0 THEN
1389: oe_debug_pub.add( 'PURGING WF ITEM - Negotiate') ;
1390: END IF;
1391: WF_PURGE.Items(itemtype => OE_GLOBALS.G_WFI_NGO,
1392: itemkey => p_id,
1393: force => TRUE,
1394: docommit => false);
1395: ELSIF p_type = 'BLANKET' THEN

Line 1407: WF_PURGE.Items(itemtype => OE_GLOBALS.G_WFI_BKT,

1403: END IF;
1404: IF l_debug_level > 0 THEN
1405: oe_debug_pub.add( 'PURGING WF ITEM - BLANKET') ;
1406: END IF;
1407: WF_PURGE.Items(itemtype => OE_GLOBALS.G_WFI_BKT,
1408: itemkey => p_id,
1409: force => TRUE,
1410: docommit => false);
1411:

Line 1419: WF_PURGE.Items(itemtype => OE_GLOBALS.G_WFI_NGO,

1415: where item_type=OE_GLOBALS.G_WFI_NGO
1416: and item_key=to_char(p_id);
1417:
1418: IF l_count > 0 THEN
1419: WF_PURGE.Items(itemtype => OE_GLOBALS.G_WFI_NGO,
1420: itemkey => p_id,
1421: force => TRUE,
1422: docommit => false);
1423: END IF;