DBA Data[Home] [Help]

APPS.IGC_CC_APPROVAL_WF_PKG dependencies on WF_ENGINE

Line 203: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME',g_approver_name);

199: IF (g_wf_version = 1) THEN --First version - no approval hierarchy
200: g_approver_name := g_owner_name;
201: g_approver_id := g_owner_id;
202:
203: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME',g_approver_name);
204: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_ID',g_approver_id);
205:
206: IF g_debug_mode = 'Y'
207: THEN

Line 204: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_ID',g_approver_id);

200: g_approver_name := g_owner_name;
201: g_approver_id := g_owner_id;
202:
203: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME',g_approver_name);
204: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_ID',g_approver_id);
205:
206: IF g_debug_mode = 'Y'
207: THEN
208: --Put_Debug_Msg( l_full_path,l_api_name||' successfully completed, WF version '||g_wf_version||' new approver name '||g_approver_name);

Line 236: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_OLD_NAME',g_old_approver_name);

232: END IF;
233:
234: END IF;
235:
236: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_OLD_NAME',g_old_approver_name);
237: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME',g_approver_name);
238: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_ID',g_approver_id);
239:
240: IF g_debug_mode = 'Y'

Line 237: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME',g_approver_name);

233:
234: END IF;
235:
236: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_OLD_NAME',g_old_approver_name);
237: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME',g_approver_name);
238: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_ID',g_approver_id);
239:
240: IF g_debug_mode = 'Y'
241: THEN

Line 238: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_ID',g_approver_id);

234: END IF;
235:
236: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_OLD_NAME',g_old_approver_name);
237: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME',g_approver_name);
238: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'APPROVER_ID',g_approver_id);
239:
240: IF g_debug_mode = 'Y'
241: THEN
242: --Put_Debug_Msg( l_full_path,l_api_name||' successfully completed, WF version '||g_wf_version||' new approver name '||g_approver_name);

Line 461: g_bc_reqired:= wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED');

457: END IF;
458:
459: IF ( funcmode = 'RUN' ) THEN
460:
461: g_bc_reqired:= wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED');
462:
463: IF g_bc_reqired='N' THEN
464:
465: IF g_debug_mode = 'Y'

Line 810: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'BC_EXECUTED',g_bc_executed);

806: END IF;
807:
808: g_bc_executed :='Y';
809:
810: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'BC_EXECUTED',g_bc_executed);
811:
812: IF g_debug_mode = 'Y'
813: THEN
814: --Put_Debug_Msg( l_full_path,l_api_name||' successfully completed, Return result: P');

Line 829: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'BC_FAILURE_MESSAGE',g_bc_failure_message);

825: Generate_Message();
826:
827: g_bc_failure_message:=g_error_text;
828:
829: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'BC_FAILURE_MESSAGE',g_bc_failure_message);
830:
831: IF g_debug_mode = 'Y'
832: THEN
833: Put_Debug_Msg( l_full_path,l_api_name||' successfully completed, Return result: F, BC failed ');

Line 1199: wf_engine.CreateProcess ( ItemType => g_wf_name,

1195: THEN
1196: Put_Debug_Msg( l_full_path,'Success, create process');
1197: END IF;
1198:
1199: wf_engine.CreateProcess ( ItemType => g_wf_name,
1200: ItemKey => p_item_key,
1201: Process => g_process_name );
1202:
1203: WF_Engine.SetItemUserKey

Line 1203: WF_Engine.SetItemUserKey

1199: wf_engine.CreateProcess ( ItemType => g_wf_name,
1200: ItemKey => p_item_key,
1201: Process => g_process_name );
1202:
1203: WF_Engine.SetItemUserKey
1204: (
1205: ItemType => g_wf_name ,
1206: ItemKey => p_item_key ,
1207: UserKey => p_cc_header_id

Line 1234: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED',g_bc_reqired);

1230: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
1231: raise FND_API.G_EXC_ERROR;
1232: END IF;
1233:
1234: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED',g_bc_reqired);
1235:
1236: -- Check if the requested CC state and status are valid and can be handler by the process
1237:
1238: Generate_CC_Action(

Line 1281: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'DEBUG_MODE', FND_API.G_TRUE);

1277:
1278: -- Start the process
1279:
1280: IF IGC_MSGS_PKG.g_debug_mode = TRUE THEN
1281: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'DEBUG_MODE', FND_API.G_TRUE);
1282: ELSE
1283: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'DEBUG_MODE', FND_API.G_FALSE);
1284: END IF;
1285:

Line 1283: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'DEBUG_MODE', FND_API.G_FALSE);

1279:
1280: IF IGC_MSGS_PKG.g_debug_mode = TRUE THEN
1281: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'DEBUG_MODE', FND_API.G_TRUE);
1282: ELSE
1283: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'DEBUG_MODE', FND_API.G_FALSE);
1284: END IF;
1285:
1286: IF g_debug_mode = 'Y'
1287: THEN

Line 1291: wf_engine.StartProcess ( ItemType => g_wf_name,

1287: THEN
1288: Put_Debug_Msg( l_full_path,'Starting process');
1289: END IF;
1290:
1291: wf_engine.StartProcess ( ItemType => g_wf_name,
1292: ItemKey => p_item_key );
1293:
1294:
1295: COMMIT WORK;

Line 1623: g_old_approver_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'APPROVER_OLD_NAME');

1619: THEN
1620: Put_Debug_Msg( l_full_path,l_api_name||' started');
1621: END IF;
1622:
1623: g_old_approver_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'APPROVER_OLD_NAME');
1624: g_approver_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME');
1625: g_preparer_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME');
1626: g_approver_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'APPROVER_ID');
1627: g_owner_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME');

Line 1624: g_approver_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME');

1620: Put_Debug_Msg( l_full_path,l_api_name||' started');
1621: END IF;
1622:
1623: g_old_approver_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'APPROVER_OLD_NAME');
1624: g_approver_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME');
1625: g_preparer_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME');
1626: g_approver_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'APPROVER_ID');
1627: g_owner_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME');
1628: g_wf_version := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'WF_VERSION');

Line 1625: g_preparer_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME');

1621: END IF;
1622:
1623: g_old_approver_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'APPROVER_OLD_NAME');
1624: g_approver_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME');
1625: g_preparer_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME');
1626: g_approver_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'APPROVER_ID');
1627: g_owner_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME');
1628: g_wf_version := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'WF_VERSION');
1629: g_cc_header_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'CC_HEADER_ID');

Line 1626: g_approver_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'APPROVER_ID');

1622:
1623: g_old_approver_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'APPROVER_OLD_NAME');
1624: g_approver_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME');
1625: g_preparer_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME');
1626: g_approver_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'APPROVER_ID');
1627: g_owner_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME');
1628: g_wf_version := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'WF_VERSION');
1629: g_cc_header_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'CC_HEADER_ID');
1630: g_cc_state := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_STATE');

Line 1627: g_owner_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME');

1623: g_old_approver_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'APPROVER_OLD_NAME');
1624: g_approver_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME');
1625: g_preparer_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME');
1626: g_approver_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'APPROVER_ID');
1627: g_owner_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME');
1628: g_wf_version := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'WF_VERSION');
1629: g_cc_header_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'CC_HEADER_ID');
1630: g_cc_state := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_STATE');
1631: g_cc_enc_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS');

Line 1628: g_wf_version := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'WF_VERSION');

1624: g_approver_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'APPROVER_NAME');
1625: g_preparer_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME');
1626: g_approver_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'APPROVER_ID');
1627: g_owner_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME');
1628: g_wf_version := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'WF_VERSION');
1629: g_cc_header_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'CC_HEADER_ID');
1630: g_cc_state := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_STATE');
1631: g_cc_enc_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS');
1632: g_cc_appr_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS');

Line 1629: g_cc_header_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'CC_HEADER_ID');

1625: g_preparer_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME');
1626: g_approver_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'APPROVER_ID');
1627: g_owner_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME');
1628: g_wf_version := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'WF_VERSION');
1629: g_cc_header_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'CC_HEADER_ID');
1630: g_cc_state := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_STATE');
1631: g_cc_enc_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS');
1632: g_cc_appr_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS');
1633: g_bc_reqired := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED');

Line 1630: g_cc_state := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_STATE');

1626: g_approver_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'APPROVER_ID');
1627: g_owner_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME');
1628: g_wf_version := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'WF_VERSION');
1629: g_cc_header_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'CC_HEADER_ID');
1630: g_cc_state := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_STATE');
1631: g_cc_enc_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS');
1632: g_cc_appr_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS');
1633: g_bc_reqired := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED');
1634: g_cc_type := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE');

Line 1631: g_cc_enc_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS');

1627: g_owner_name := wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME');
1628: g_wf_version := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'WF_VERSION');
1629: g_cc_header_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'CC_HEADER_ID');
1630: g_cc_state := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_STATE');
1631: g_cc_enc_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS');
1632: g_cc_appr_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS');
1633: g_bc_reqired := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED');
1634: g_cc_type := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE');
1635: g_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'NOTE');

Line 1632: g_cc_appr_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS');

1628: g_wf_version := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'WF_VERSION');
1629: g_cc_header_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'CC_HEADER_ID');
1630: g_cc_state := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_STATE');
1631: g_cc_enc_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS');
1632: g_cc_appr_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS');
1633: g_bc_reqired := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED');
1634: g_cc_type := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE');
1635: g_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'NOTE');
1636: g_reject_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'REJECT_NOTE');

Line 1633: g_bc_reqired := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED');

1629: g_cc_header_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'CC_HEADER_ID');
1630: g_cc_state := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_STATE');
1631: g_cc_enc_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS');
1632: g_cc_appr_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS');
1633: g_bc_reqired := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED');
1634: g_cc_type := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE');
1635: g_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'NOTE');
1636: g_reject_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'REJECT_NOTE');
1637: g_bc_failure_message := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_FAILURE_MESSAGE');

Line 1634: g_cc_type := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE');

1630: g_cc_state := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_STATE');
1631: g_cc_enc_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS');
1632: g_cc_appr_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS');
1633: g_bc_reqired := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED');
1634: g_cc_type := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE');
1635: g_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'NOTE');
1636: g_reject_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'REJECT_NOTE');
1637: g_bc_failure_message := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_FAILURE_MESSAGE');
1638: g_cc_version_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM');

Line 1635: g_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'NOTE');

1631: g_cc_enc_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS');
1632: g_cc_appr_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS');
1633: g_bc_reqired := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED');
1634: g_cc_type := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE');
1635: g_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'NOTE');
1636: g_reject_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'REJECT_NOTE');
1637: g_bc_failure_message := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_FAILURE_MESSAGE');
1638: g_cc_version_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM');
1639: g_bc_executed := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED');

Line 1636: g_reject_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'REJECT_NOTE');

1632: g_cc_appr_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS');
1633: g_bc_reqired := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED');
1634: g_cc_type := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE');
1635: g_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'NOTE');
1636: g_reject_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'REJECT_NOTE');
1637: g_bc_failure_message := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_FAILURE_MESSAGE');
1638: g_cc_version_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM');
1639: g_bc_executed := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED');
1640: g_cc_ctrl_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS');

Line 1637: g_bc_failure_message := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_FAILURE_MESSAGE');

1633: g_bc_reqired := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED');
1634: g_cc_type := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE');
1635: g_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'NOTE');
1636: g_reject_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'REJECT_NOTE');
1637: g_bc_failure_message := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_FAILURE_MESSAGE');
1638: g_cc_version_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM');
1639: g_bc_executed := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED');
1640: g_cc_ctrl_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS');
1641: g_org_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'ORG_ID');

Line 1638: g_cc_version_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM');

1634: g_cc_type := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE');
1635: g_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'NOTE');
1636: g_reject_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'REJECT_NOTE');
1637: g_bc_failure_message := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_FAILURE_MESSAGE');
1638: g_cc_version_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM');
1639: g_bc_executed := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED');
1640: g_cc_ctrl_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS');
1641: g_org_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'ORG_ID');
1642: g_sob_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'SOB_ID');

Line 1639: g_bc_executed := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED');

1635: g_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'NOTE');
1636: g_reject_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'REJECT_NOTE');
1637: g_bc_failure_message := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_FAILURE_MESSAGE');
1638: g_cc_version_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM');
1639: g_bc_executed := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED');
1640: g_cc_ctrl_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS');
1641: g_org_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'ORG_ID');
1642: g_sob_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'SOB_ID');
1643: g_cc_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER');

Line 1640: g_cc_ctrl_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS');

1636: g_reject_note := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'REJECT_NOTE');
1637: g_bc_failure_message := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_FAILURE_MESSAGE');
1638: g_cc_version_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM');
1639: g_bc_executed := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED');
1640: g_cc_ctrl_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS');
1641: g_org_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'ORG_ID');
1642: g_sob_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'SOB_ID');
1643: g_cc_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER');
1644: g_acct_date := wf_engine.GetItemAttrDate (g_itemtype,g_itemkey,'CC_ACCT_DATE');

Line 1641: g_org_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'ORG_ID');

1637: g_bc_failure_message := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_FAILURE_MESSAGE');
1638: g_cc_version_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM');
1639: g_bc_executed := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED');
1640: g_cc_ctrl_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS');
1641: g_org_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'ORG_ID');
1642: g_sob_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'SOB_ID');
1643: g_cc_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER');
1644: g_acct_date := wf_engine.GetItemAttrDate (g_itemtype,g_itemkey,'CC_ACCT_DATE');
1645:

Line 1642: g_sob_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'SOB_ID');

1638: g_cc_version_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM');
1639: g_bc_executed := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED');
1640: g_cc_ctrl_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS');
1641: g_org_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'ORG_ID');
1642: g_sob_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'SOB_ID');
1643: g_cc_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER');
1644: g_acct_date := wf_engine.GetItemAttrDate (g_itemtype,g_itemkey,'CC_ACCT_DATE');
1645:
1646: IF g_org_id IS NOT NULL THEN

Line 1643: g_cc_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER');

1639: g_bc_executed := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED');
1640: g_cc_ctrl_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS');
1641: g_org_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'ORG_ID');
1642: g_sob_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'SOB_ID');
1643: g_cc_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER');
1644: g_acct_date := wf_engine.GetItemAttrDate (g_itemtype,g_itemkey,'CC_ACCT_DATE');
1645:
1646: IF g_org_id IS NOT NULL THEN
1647:

Line 1644: g_acct_date := wf_engine.GetItemAttrDate (g_itemtype,g_itemkey,'CC_ACCT_DATE');

1640: g_cc_ctrl_status := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS');
1641: g_org_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'ORG_ID');
1642: g_sob_id := wf_engine.GetItemAttrNumber(g_itemtype,g_itemkey,'SOB_ID');
1643: g_cc_number := wf_engine.GetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER');
1644: g_acct_date := wf_engine.GetItemAttrDate (g_itemtype,g_itemkey,'CC_ACCT_DATE');
1645:
1646: IF g_org_id IS NOT NULL THEN
1647:
1648: /*Replaced below line with call to mo_global. for MOAC uptake for bug#6341012 */

Line 1743: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_STATE_MEANING',l_value);

1739: l_value:=null;
1740: OPEN c_meaning('IGC_CC_STATE',g_cc_state);
1741: FETCH c_meaning INTO l_value;
1742: CLOSE c_meaning;
1743: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_STATE_MEANING',l_value);
1744:
1745: l_value:=null;
1746: OPEN c_meaning('IGC_CC_STATE',g_cc_new_state);
1747: FETCH c_meaning INTO l_value;

Line 1749: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_STATE_NEW_MEANING',l_value);

1745: l_value:=null;
1746: OPEN c_meaning('IGC_CC_STATE',g_cc_new_state);
1747: FETCH c_meaning INTO l_value;
1748: CLOSE c_meaning;
1749: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_STATE_NEW_MEANING',l_value);
1750:
1751: l_value:=null;
1752: OPEN c_meaning('IGC_CC_CONTROL_STATUS',g_cc_ctrl_status);
1753: FETCH c_meaning INTO l_value;

Line 1755: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_MEANING',l_value);

1751: l_value:=null;
1752: OPEN c_meaning('IGC_CC_CONTROL_STATUS',g_cc_ctrl_status);
1753: FETCH c_meaning INTO l_value;
1754: CLOSE c_meaning;
1755: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_MEANING',l_value);
1756:
1757: l_value:=null;
1758: OPEN c_meaning('IGC_CC_TYPE',g_cc_type);
1759: FETCH c_meaning INTO l_value;

Line 1761: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE_MEANING',l_value);

1757: l_value:=null;
1758: OPEN c_meaning('IGC_CC_TYPE',g_cc_type);
1759: FETCH c_meaning INTO l_value;
1760: CLOSE c_meaning;
1761: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE_MEANING',l_value);
1762:
1763: l_value:=null;
1764: OPEN c_meaning('IGC_CC_APPROVAL_STATUS',g_cc_appr_status);
1765: FETCH c_meaning INTO l_value;

Line 1767: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_MEANING',l_value);

1763: l_value:=null;
1764: OPEN c_meaning('IGC_CC_APPROVAL_STATUS',g_cc_appr_status);
1765: FETCH c_meaning INTO l_value;
1766: CLOSE c_meaning;
1767: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_MEANING',l_value);
1768:
1769: l_value:=null;
1770: OPEN c_meaning('IGC_CC_APPROVAL_STATUS',g_cc_new_appr_status);
1771: FETCH c_meaning INTO l_value;

Line 1773: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_NEW_MEANING',l_value);

1769: l_value:=null;
1770: OPEN c_meaning('IGC_CC_APPROVAL_STATUS',g_cc_new_appr_status);
1771: FETCH c_meaning INTO l_value;
1772: CLOSE c_meaning;
1773: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_NEW_MEANING',l_value);
1774:
1775:
1776: l_value:=null;
1777: OPEN c_meaning('IGC_CC_ENCUMBRANCE_STATUS',g_cc_enc_status);

Line 1780: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCU_MEANING',l_value);

1776: l_value:=null;
1777: OPEN c_meaning('IGC_CC_ENCUMBRANCE_STATUS',g_cc_enc_status);
1778: FETCH c_meaning INTO l_value;
1779: CLOSE c_meaning;
1780: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCU_MEANING',l_value);
1781:
1782: l_value:=null;
1783: OPEN c_meaning('IGC_CC_ENCUMBRANCE_STATUS',g_cc_new_enc_status);
1784: FETCH c_meaning INTO l_value;

Line 1786: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCU_NEW_MEANING',l_value);

1782: l_value:=null;
1783: OPEN c_meaning('IGC_CC_ENCUMBRANCE_STATUS',g_cc_new_enc_status);
1784: FETCH c_meaning INTO l_value;
1785: CLOSE c_meaning;
1786: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCU_NEW_MEANING',l_value);
1787:
1788: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NEW_STATE',g_cc_new_state);
1789: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_NEW_STATUS',g_cc_new_enc_status);
1790: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_NEW_STATUS',g_cc_new_appr_status);

Line 1788: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NEW_STATE',g_cc_new_state);

1784: FETCH c_meaning INTO l_value;
1785: CLOSE c_meaning;
1786: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCU_NEW_MEANING',l_value);
1787:
1788: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NEW_STATE',g_cc_new_state);
1789: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_NEW_STATUS',g_cc_new_enc_status);
1790: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_NEW_STATUS',g_cc_new_appr_status);
1791:
1792: IF g_debug_mode = 'Y'

Line 1789: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_NEW_STATUS',g_cc_new_enc_status);

1785: CLOSE c_meaning;
1786: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCU_NEW_MEANING',l_value);
1787:
1788: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NEW_STATE',g_cc_new_state);
1789: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_NEW_STATUS',g_cc_new_enc_status);
1790: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_NEW_STATUS',g_cc_new_appr_status);
1791:
1792: IF g_debug_mode = 'Y'
1793: THEN

Line 1790: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_NEW_STATUS',g_cc_new_appr_status);

1786: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCU_NEW_MEANING',l_value);
1787:
1788: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NEW_STATE',g_cc_new_state);
1789: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_NEW_STATUS',g_cc_new_enc_status);
1790: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_NEW_STATUS',g_cc_new_appr_status);
1791:
1792: IF g_debug_mode = 'Y'
1793: THEN
1794: Put_Debug_Msg( l_full_path,l_api_name||' Successfully completed');

Line 1988: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);

1984: END IF;
1985:
1986: END IF;
1987:
1988: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);
1989: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
1990: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'WF_VERSION',g_wf_version);
1991: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_STATE',g_cc_state);
1992: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS',g_cc_enc_status);

Line 1989: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);

1985:
1986: END IF;
1987:
1988: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);
1989: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
1990: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'WF_VERSION',g_wf_version);
1991: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_STATE',g_cc_state);
1992: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS',g_cc_enc_status);
1993: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS',g_cc_appr_status);

Line 1990: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'WF_VERSION',g_wf_version);

1986: END IF;
1987:
1988: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);
1989: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
1990: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'WF_VERSION',g_wf_version);
1991: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_STATE',g_cc_state);
1992: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS',g_cc_enc_status);
1993: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS',g_cc_appr_status);
1994: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED',g_bc_reqired);

Line 1991: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_STATE',g_cc_state);

1987:
1988: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);
1989: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
1990: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'WF_VERSION',g_wf_version);
1991: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_STATE',g_cc_state);
1992: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS',g_cc_enc_status);
1993: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS',g_cc_appr_status);
1994: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED',g_bc_reqired);
1995: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE',g_cc_type);

Line 1992: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS',g_cc_enc_status);

1988: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);
1989: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
1990: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'WF_VERSION',g_wf_version);
1991: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_STATE',g_cc_state);
1992: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS',g_cc_enc_status);
1993: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS',g_cc_appr_status);
1994: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED',g_bc_reqired);
1995: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE',g_cc_type);
1996: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'NOTE',g_note);

Line 1993: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS',g_cc_appr_status);

1989: wf_engine.SetItemAttrText(g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
1990: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'WF_VERSION',g_wf_version);
1991: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_STATE',g_cc_state);
1992: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS',g_cc_enc_status);
1993: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS',g_cc_appr_status);
1994: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED',g_bc_reqired);
1995: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE',g_cc_type);
1996: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'NOTE',g_note);
1997: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);

Line 1994: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED',g_bc_reqired);

1990: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'WF_VERSION',g_wf_version);
1991: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_STATE',g_cc_state);
1992: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS',g_cc_enc_status);
1993: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS',g_cc_appr_status);
1994: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED',g_bc_reqired);
1995: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE',g_cc_type);
1996: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'NOTE',g_note);
1997: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
1998: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM',g_cc_version_number);

Line 1995: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE',g_cc_type);

1991: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_STATE',g_cc_state);
1992: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS',g_cc_enc_status);
1993: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS',g_cc_appr_status);
1994: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED',g_bc_reqired);
1995: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE',g_cc_type);
1996: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'NOTE',g_note);
1997: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
1998: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM',g_cc_version_number);
1999: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED',g_bc_executed);

Line 1996: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'NOTE',g_note);

1992: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_STATUS',g_cc_enc_status);
1993: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS',g_cc_appr_status);
1994: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED',g_bc_reqired);
1995: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE',g_cc_type);
1996: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'NOTE',g_note);
1997: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
1998: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM',g_cc_version_number);
1999: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED',g_bc_executed);
2000: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS',g_cc_ctrl_status);

Line 1997: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);

1993: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_APPRVL_STATUS',g_cc_appr_status);
1994: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED',g_bc_reqired);
1995: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE',g_cc_type);
1996: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'NOTE',g_note);
1997: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
1998: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM',g_cc_version_number);
1999: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED',g_bc_executed);
2000: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS',g_cc_ctrl_status);
2001: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'ORG_ID',g_org_id);

Line 1998: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM',g_cc_version_number);

1994: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_REQUIRED',g_bc_reqired);
1995: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE',g_cc_type);
1996: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'NOTE',g_note);
1997: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
1998: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM',g_cc_version_number);
1999: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED',g_bc_executed);
2000: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS',g_cc_ctrl_status);
2001: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'ORG_ID',g_org_id);
2002: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'SOB_ID',g_sob_id);

Line 1999: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED',g_bc_executed);

1995: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_TYPE',g_cc_type);
1996: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'NOTE',g_note);
1997: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
1998: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM',g_cc_version_number);
1999: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED',g_bc_executed);
2000: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS',g_cc_ctrl_status);
2001: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'ORG_ID',g_org_id);
2002: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'SOB_ID',g_sob_id);
2003:

Line 2000: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS',g_cc_ctrl_status);

1996: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'NOTE',g_note);
1997: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
1998: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM',g_cc_version_number);
1999: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED',g_bc_executed);
2000: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS',g_cc_ctrl_status);
2001: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'ORG_ID',g_org_id);
2002: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'SOB_ID',g_sob_id);
2003:
2004: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_HEADER_ID',g_cc_header_id);

Line 2001: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'ORG_ID',g_org_id);

1997: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
1998: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM',g_cc_version_number);
1999: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED',g_bc_executed);
2000: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS',g_cc_ctrl_status);
2001: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'ORG_ID',g_org_id);
2002: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'SOB_ID',g_sob_id);
2003:
2004: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_HEADER_ID',g_cc_header_id);
2005: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER',g_cc_number);

Line 2002: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'SOB_ID',g_sob_id);

1998: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM',g_cc_version_number);
1999: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'BC_EXECUTED',g_bc_executed);
2000: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS',g_cc_ctrl_status);
2001: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'ORG_ID',g_org_id);
2002: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'SOB_ID',g_sob_id);
2003:
2004: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_HEADER_ID',g_cc_header_id);
2005: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER',g_cc_number);
2006: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_OWNER_USER_ID',g_owner_id);

Line 2004: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_HEADER_ID',g_cc_header_id);

2000: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_CTRL_STATUS',g_cc_ctrl_status);
2001: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'ORG_ID',g_org_id);
2002: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'SOB_ID',g_sob_id);
2003:
2004: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_HEADER_ID',g_cc_header_id);
2005: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER',g_cc_number);
2006: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_OWNER_USER_ID',g_owner_id);
2007: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
2008: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_DISP_NAME',l_owner_display_name);

Line 2005: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER',g_cc_number);

2001: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'ORG_ID',g_org_id);
2002: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'SOB_ID',g_sob_id);
2003:
2004: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_HEADER_ID',g_cc_header_id);
2005: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER',g_cc_number);
2006: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_OWNER_USER_ID',g_owner_id);
2007: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
2008: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_DISP_NAME',l_owner_display_name);
2009: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_PREPARER_USER_ID',g_preparer_id);

Line 2006: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_OWNER_USER_ID',g_owner_id);

2002: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'SOB_ID',g_sob_id);
2003:
2004: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_HEADER_ID',g_cc_header_id);
2005: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER',g_cc_number);
2006: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_OWNER_USER_ID',g_owner_id);
2007: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
2008: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_DISP_NAME',l_owner_display_name);
2009: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_PREPARER_USER_ID',g_preparer_id);
2010: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);

Line 2007: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);

2003:
2004: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_HEADER_ID',g_cc_header_id);
2005: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER',g_cc_number);
2006: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_OWNER_USER_ID',g_owner_id);
2007: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
2008: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_DISP_NAME',l_owner_display_name);
2009: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_PREPARER_USER_ID',g_preparer_id);
2010: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);
2011: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_DISP_NAME',l_user_display_name);

Line 2008: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_DISP_NAME',l_owner_display_name);

2004: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_HEADER_ID',g_cc_header_id);
2005: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER',g_cc_number);
2006: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_OWNER_USER_ID',g_owner_id);
2007: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
2008: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_DISP_NAME',l_owner_display_name);
2009: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_PREPARER_USER_ID',g_preparer_id);
2010: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);
2011: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_DISP_NAME',l_user_display_name);
2012: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);

Line 2009: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_PREPARER_USER_ID',g_preparer_id);

2005: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_NUMBER',g_cc_number);
2006: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_OWNER_USER_ID',g_owner_id);
2007: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
2008: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_DISP_NAME',l_owner_display_name);
2009: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_PREPARER_USER_ID',g_preparer_id);
2010: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);
2011: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_DISP_NAME',l_user_display_name);
2012: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
2013: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_START_DATE',l_cc_start_date);

Line 2010: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);

2006: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_OWNER_USER_ID',g_owner_id);
2007: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
2008: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_DISP_NAME',l_owner_display_name);
2009: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_PREPARER_USER_ID',g_preparer_id);
2010: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);
2011: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_DISP_NAME',l_user_display_name);
2012: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
2013: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_START_DATE',l_cc_start_date);
2014: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_END_DATE',l_cc_end_date);

Line 2011: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_DISP_NAME',l_user_display_name);

2007: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_NAME',g_owner_name);
2008: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_DISP_NAME',l_owner_display_name);
2009: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_PREPARER_USER_ID',g_preparer_id);
2010: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);
2011: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_DISP_NAME',l_user_display_name);
2012: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
2013: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_START_DATE',l_cc_start_date);
2014: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_END_DATE',l_cc_end_date);
2015: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'ORGANIZATION_NAME',l_org_name);

Line 2012: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);

2008: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'OWNER_DISP_NAME',l_owner_display_name);
2009: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_PREPARER_USER_ID',g_preparer_id);
2010: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);
2011: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_DISP_NAME',l_user_display_name);
2012: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
2013: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_START_DATE',l_cc_start_date);
2014: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_END_DATE',l_cc_end_date);
2015: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'ORGANIZATION_NAME',l_org_name);
2016: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_ACCT_DATE',g_acct_date);

Line 2013: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_START_DATE',l_cc_start_date);

2009: wf_engine.SetItemAttrNumber (g_itemtype,g_itemkey,'CC_PREPARER_USER_ID',g_preparer_id);
2010: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);
2011: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_DISP_NAME',l_user_display_name);
2012: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
2013: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_START_DATE',l_cc_start_date);
2014: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_END_DATE',l_cc_end_date);
2015: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'ORGANIZATION_NAME',l_org_name);
2016: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_ACCT_DATE',g_acct_date);
2017:

Line 2014: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_END_DATE',l_cc_end_date);

2010: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_NAME',g_preparer_name);
2011: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_DISP_NAME',l_user_display_name);
2012: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
2013: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_START_DATE',l_cc_start_date);
2014: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_END_DATE',l_cc_end_date);
2015: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'ORGANIZATION_NAME',l_org_name);
2016: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_ACCT_DATE',g_acct_date);
2017:
2018: IF g_debug_mode = 'Y'

Line 2015: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'ORGANIZATION_NAME',l_org_name);

2011: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'PREPARER_DISP_NAME',l_user_display_name);
2012: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
2013: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_START_DATE',l_cc_start_date);
2014: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_END_DATE',l_cc_end_date);
2015: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'ORGANIZATION_NAME',l_org_name);
2016: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_ACCT_DATE',g_acct_date);
2017:
2018: IF g_debug_mode = 'Y'
2019: THEN

Line 2016: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_ACCT_DATE',g_acct_date);

2012: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_DESC',l_cc_desc);
2013: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_START_DATE',l_cc_start_date);
2014: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_END_DATE',l_cc_end_date);
2015: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'ORGANIZATION_NAME',l_org_name);
2016: wf_engine.SetItemAttrDate (g_itemtype,g_itemkey,'CC_ACCT_DATE',g_acct_date);
2017:
2018: IF g_debug_mode = 'Y'
2019: THEN
2020: Put_Debug_Msg( l_full_path,'Initialized vaules:'

Line 2128: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM',g_cc_version_number);

2124: END IF;
2125:
2126: CLOSE c_cc_data;
2127:
2128: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM',g_cc_version_number);
2129: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_NEW_STATUS',g_cc_new_enc_status);
2130:
2131: IF g_debug_mode = 'Y'
2132: THEN

Line 2129: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_NEW_STATUS',g_cc_new_enc_status);

2125:
2126: CLOSE c_cc_data;
2127:
2128: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_VERSION_NUM',g_cc_version_number);
2129: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'CC_ENCUMBRANCE_NEW_STATUS',g_cc_new_enc_status);
2130:
2131: IF g_debug_mode = 'Y'
2132: THEN
2133: Put_Debug_Msg( l_full_path,' New values: '||

Line 3805: -- IF wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'DEBUG_MODE') = 'T'

3801: BEGIN
3802:
3803: -- IF g_debug_init IS NULL THEN --Need to init debug
3804: -- FND_API.G_TRUE
3805: -- IF wf_engine.GetItemAttrText(g_itemtype,g_itemkey,'DEBUG_MODE') = 'T'
3806: -- THEN
3807: -- IGC_MSGS_PKG.g_debug_mode := TRUE;
3808: -- ELSE
3809: -- IGC_MSGS_PKG.g_debug_mode := FALSE;

Line 3881: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'ERROR_TEXT',g_error_text);

3877: END LOOP;
3878: ELSE
3879: g_error_text :='Error stack has no data';
3880: END IF;
3881: wf_engine.SetItemAttrText (g_itemtype,g_itemkey,'ERROR_TEXT',g_error_text);
3882:
3883: IF g_debug_mode = 'Y'
3884: THEN
3885: Put_Debug_Msg( l_full_path,'Error text is '||g_error_text);