DBA Data[Home] [Help]

APPS.PO_REQ_WF_BUILD_ACCOUNT_INIT dependencies on PO_WF_UTIL_PKG

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

870: --
871: --Call WF API to set unit_price attribute.
872: --unit_price will be taken into consideration when generating accounts.
873:
874: PO_WF_UTIL_PKG.SetItemAttrNumber (itemtype => itemtype,
875: itemkey => wf_itemkey,
876: aname => 'UNIT_PRICE',
877: avalue => p_unit_price);
878:

Line 883: PO_WF_UTIL_PKG.GetItemAttrNumber (

879: IF (g_po_wf_debug = 'Y') THEN
880: PO_WF_DEBUG_PKG.insert_debug(itemtype,
881: wf_itemkey,
882: 'Set WF item UNIT_PRICE to ' ||
883: PO_WF_UTIL_PKG.GetItemAttrNumber (
884: itemtype => itemtype,
885: itemkey => wf_itemkey,
886: aname => 'UNIT_PRICE'));
887: END IF;

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

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

Line 901: PO_WF_UTIL_PKG.GetItemAttrNumber(

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

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

920:
921: x_block_activity_label := NULL;
922:
923: -- Bug 1497909 : Set the encumbrance date for validation
924: po_wf_util_pkg.SetItemAttrDate(itemtype => itemtype,
925: itemkey => wf_itemkey,
926: aname => 'ENCUMBRANCE_DATE',
927: avalue => x_gl_encumbered_date);
928:

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

1006: x_block_activity_label := NULL;
1007: end if;
1008:
1009: -- Bug 1497909 : Set the encumbrance date for validation
1010: po_wf_util_pkg.SetItemAttrDate(itemtype => itemtype,
1011: itemkey => wf_itemkey,
1012: aname => 'ENCUMBRANCE_DATE',
1013: avalue => x_gl_encumbered_date);
1014:

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

1068: end if;
1069: end if;
1070:
1071: -- Bug 1497909 : Set the encumbrance date for validation
1072: po_wf_util_pkg.SetItemAttrDate(itemtype => itemtype,
1073: itemkey => wf_itemkey,
1074: aname => 'ENCUMBRANCE_DATE',
1075: avalue => x_gl_encumbered_date);
1076:

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

1108: avalue => x_accrual_account_id );
1109:
1110: -- Generate Variance Account
1111: -- Bug 1497909 : Set the encumbrance date for validation
1112: po_wf_util_pkg.SetItemAttrDate(itemtype => itemtype,
1113: itemkey => wf_itemkey,
1114: aname => 'ENCUMBRANCE_DATE',
1115: avalue => x_gl_encumbered_date);
1116:

Line 1153: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

1149: */
1150:
1151: x_new_combination := x_new_ccid_generated;
1152:
1153: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361
1154:
1155: return (x_success);
1156:
1157: else -- accrual acc failed.

Line 1163: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

1159: /* If (debug_acc_generator_wf) then
1160: dbms_output.put_line (' aa failed');
1161: end if; */
1162:
1163: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361
1164:
1165: return (x_success);
1166:
1167: end if;

Line 1175: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

1171: /* If (debug_acc_generator_wf) then
1172: dbms_output.put_line (' ba failed');
1173: end if; */
1174:
1175: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361
1176:
1177: return (x_success);
1178: end if;
1179:

Line 1186: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

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

Line 1192: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

1188: return (x_success);
1189:
1190: end if;
1191:
1192: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361
1193:
1194: return x_success;
1195: ELSE
1196:

Line 1199: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

1195: ELSE
1196:
1197: FB_ERROR_MSG := 'Invalid Item Type OR Item Key';
1198:
1199: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361
1200:
1201: return FALSE;
1202: END IF;
1203:

Line 1207: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361

1203:
1204: EXCEPTION
1205: WHEN OTHERS THEN
1206:
1207: PO_WF_UTIL_PKG.clear_wf_cache; -- bug5075361
1208:
1209: po_message_s.sql_error('PO_REQ_WF_BUILD_ACCOUNT_INIT.Start_Workflow', x_progress, sqlcode);
1210: RAISE;
1211: