DBA Data[Home] [Help]

APPS.PO_REQ_WF_BUILD_ACCOUNT_INIT dependencies on PO_WF_UTIL_PKG

Line 892: PO_WF_UTIL_PKG.SetItemAttrNumber (itemtype => itemtype,

888: --
889: --Call WF API to set unit_price attribute.
890: --unit_price will be taken into consideration when generating accounts.
891:
892: PO_WF_UTIL_PKG.SetItemAttrNumber (itemtype => itemtype,
893: itemkey => wf_itemkey,
894: aname => 'UNIT_PRICE',
895: avalue => p_unit_price);
896:

Line 901: PO_WF_UTIL_PKG.GetItemAttrNumber (

897: IF (g_po_wf_debug = 'Y') THEN
898: PO_WF_DEBUG_PKG.insert_debug(itemtype,
899: wf_itemkey,
900: 'Set WF item UNIT_PRICE to ' ||
901: PO_WF_UTIL_PKG.GetItemAttrNumber (
902: itemtype => itemtype,
903: itemkey => wf_itemkey,
904: aname => 'UNIT_PRICE'));
905: END IF;

Line 911: PO_WF_UTIL_PKG.SetItemAttrNumber(itemtype => itemtype,

907:
908: --
909: -- Call WF API to set blanket_po_line_num attribute.
910: -- blanket_po_line_num will be taken into consideration when generating accounts.
911: PO_WF_UTIL_PKG.SetItemAttrNumber(itemtype => itemtype,
912: itemkey => wf_itemkey,
913: aname => 'BLANKET_PO_LINE_NUM',
914: avalue => p_blanket_po_line_num);
915:

Line 919: PO_WF_UTIL_PKG.GetItemAttrNumber(

915:
916: IF (g_po_wf_debug = 'Y') THEN
917: PO_WF_DEBUG_PKG.insert_debug(itemtype, wf_itemkey,
918: 'Set WF item BLANKET_PO_LINE_NUM to ' ||
919: PO_WF_UTIL_PKG.GetItemAttrNumber(
920: itemtype => itemtype,
921: itemkey => wf_itemkey,
922: aname => 'BLANKET_PO_LINE_NUM'));
923: END IF;

Line 942: po_wf_util_pkg.SetItemAttrDate(itemtype => itemtype,

938:
939: x_block_activity_label := NULL;
940:
941: -- Bug 1497909 : Set the encumbrance date for validation
942: po_wf_util_pkg.SetItemAttrDate(itemtype => itemtype,
943: itemkey => wf_itemkey,
944: aname => 'ENCUMBRANCE_DATE',
945: avalue => x_gl_encumbered_date);
946:

Line 1029: po_wf_util_pkg.SetItemAttrDate(itemtype => itemtype,

1025: x_block_activity_label := NULL;
1026: end if;
1027:
1028: -- Bug 1497909 : Set the encumbrance date for validation
1029: po_wf_util_pkg.SetItemAttrDate(itemtype => itemtype,
1030: itemkey => wf_itemkey,
1031: aname => 'ENCUMBRANCE_DATE',
1032: avalue => x_gl_encumbered_date);
1033:

Line 1095: po_wf_util_pkg.SetItemAttrDate(itemtype => itemtype,

1091: end if;
1092: end if;
1093:
1094: -- Bug 1497909 : Set the encumbrance date for validation
1095: po_wf_util_pkg.SetItemAttrDate(itemtype => itemtype,
1096: itemkey => wf_itemkey,
1097: aname => 'ENCUMBRANCE_DATE',
1098: avalue => x_gl_encumbered_date);
1099:

Line 1135: po_wf_util_pkg.SetItemAttrDate(itemtype => itemtype,

1131: avalue => x_accrual_account_id );
1132:
1133: -- Generate Variance Account
1134: -- Bug 1497909 : Set the encumbrance date for validation
1135: po_wf_util_pkg.SetItemAttrDate(itemtype => itemtype,
1136: itemkey => wf_itemkey,
1137: aname => 'ENCUMBRANCE_DATE',
1138: avalue => x_gl_encumbered_date);
1139:

Line 1176: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

1172: */
1173:
1174: x_new_combination := x_new_ccid_generated;
1175:
1176: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361
1177:
1178: return (x_success);
1179:
1180: else -- accrual acc failed.

Line 1186: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

1182: /* If (debug_acc_generator_wf) then
1183: dbms_output.put_line (' aa failed');
1184: end if; */
1185:
1186: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361
1187:
1188: return (x_success);
1189:
1190: end if;

Line 1198: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

1194: /* If (debug_acc_generator_wf) then
1195: dbms_output.put_line (' ba failed');
1196: end if; */
1197:
1198: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361
1199:
1200: return (x_success);
1201: end if;
1202:

Line 1209: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

1205:
1206: /* If (debug_acc_generator_wf) then dbms_output.put_line (' ca failed'); end if;
1207: */
1208:
1209: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361
1210:
1211: return (x_success);
1212:
1213: end if;

Line 1215: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

1211: return (x_success);
1212:
1213: end if;
1214:
1215: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361
1216:
1217: return x_success;
1218: ELSE
1219:

Line 1222: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

1218: ELSE
1219:
1220: FB_ERROR_MSG := 'Invalid Item Type OR Item Key';
1221:
1222: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361
1223:
1224: return FALSE;
1225: END IF;
1226:

Line 1230: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

1226:
1227: EXCEPTION
1228: WHEN OTHERS THEN
1229:
1230: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361
1231:
1232: po_message_s.sql_error('PO_REQ_WF_BUILD_ACCOUNT_INIT.Start_Workflow', x_progress, sqlcode);
1233: RAISE;
1234: