DBA Data[Home] [Help]

APPS.OE_WF_UPGRADE_UTIL dependencies on OE_ORDER_UPGRADE_UTIL

Line 34: l_Scolumn_value := OE_ORDER_UPGRADE_UTIL.Get_entity_Scolumn_value(itemtype, itemkey, l_Scolumn_name);

30: -- Find out What S column the custom activity is based on ...
31:
32: l_Scolumn_name := WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid, 'S_COLUMN');
33:
34: l_Scolumn_value := OE_ORDER_UPGRADE_UTIL.Get_entity_Scolumn_value(itemtype, itemkey, l_Scolumn_name);
35:
36: IF (l_Scolumn_value IS NOT NULL) THEN
37: IF (l_Scolumn_value = 18) THEN -- As in eligible
38: -- we set result to NOTIFIED. So that it can be externally completed.

Line 135: l_Scolumn_value := OE_ORDER_UPGRADE_UTIL.Get_entity_Scolumn_value(itemtype, itemkey, l_Scolumn_name);

131: -- Find out What S column the approval is based on ...
132:
133: l_Scolumn_name := WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid, 'S_COLUMN');
134:
135: l_Scolumn_value := OE_ORDER_UPGRADE_UTIL.Get_entity_Scolumn_value(itemtype, itemkey, l_Scolumn_name);
136:
137: -- This activity will have the same look-up as the notification activity with an additional code for
138: -- 'NOT_PROCESSED' which will transition to the notification. Runtime, the transitions will be created
139: -- appropriately.

Line 651: OE_ORDER_UPGRADE_UTIL.Get_Invoice_Status_Code(to_number(itemkey), l_invoice_interface_status);

647: if (funcmode = 'RUN') then
648:
649: IF OE_STANDARD_WF.G_UPGRADE_MODE THEN -- Upgrade in progress. Check if Order Line is already Invoiced.
650:
651: OE_ORDER_UPGRADE_UTIL.Get_Invoice_Status_Code(to_number(itemkey), l_invoice_interface_status);
652:
653: IF (l_invoice_interface_status = 'COMPLETE') THEN
654: resultout := 'COMPLETE:COMPLETE';
655: update oe_order_lines_all

Line 916: OE_ORDER_UPGRADE_UTIL.GET_DEMAND_INTERFACE_STATUS

912: IF OE_STANDARD_WF.G_UPGRADE_MODE
913: THEN
914: -- Upgrade in progress. Check if Order Line is already closed.
915:
916: OE_ORDER_UPGRADE_UTIL.GET_DEMAND_INTERFACE_STATUS
917: (to_number(itemkey), l_schedule_status);
918:
919: IF (l_schedule_status = RES_ELIGIBLE) THEN
920: -- Order Line will be scheduled via WF

Line 1021: OE_ORDER_UPGRADE_UTIL.GET_MFG_RELEASE_STATUS

1017: IF OE_STANDARD_WF.G_UPGRADE_MODE
1018: THEN
1019: -- Upgrade in progress. Check if Order Line is already closed.
1020:
1021: OE_ORDER_UPGRADE_UTIL.GET_MFG_RELEASE_STATUS
1022: (to_number(itemkey), l_mfg_release_status);
1023:
1024: IF (l_mfg_release_status = RES_ELIGIBLE) THEN
1025: resultout := 'COMPLETE:ELIGIBLE';

Line 1152: OE_ORDER_UPGRADE_UTIL.GET_MFG_RELEASE_STATUS

1148: IF OE_STANDARD_WF.G_UPGRADE_MODE
1149: THEN
1150: -- Upgrade in progress. Check if Order Line is already closed.
1151:
1152: OE_ORDER_UPGRADE_UTIL.GET_MFG_RELEASE_STATUS
1153: (to_number(itemkey), l_mfg_release_status);
1154:
1155: IF (l_mfg_release_status = RES_NOT_APPLICABLE) THEN
1156: resultout := 'COMPLETE:Y';

Line 1459: OE_ORDER_UPGRADE_UTIL.Get_Pur_Rel_Status

1455: IF OE_STANDARD_WF.G_UPGRADE_MODE
1456: THEN
1457: -- Upgrade in progress. Check if Order Line is already closed.
1458:
1459: OE_ORDER_UPGRADE_UTIL.Get_Pur_Rel_Status
1460: (to_number(itemkey), l_pur_release_status);
1461:
1462: IF (l_pur_release_status = RES_ELIGIBLE) THEN
1463: resultout := 'COMPLETE:ELIGIBLE';