DBA Data[Home] [Help]

APPS.PO_WF_PO_RULE_ACC dependencies on PO_WF_UTIL_PKG

Line 52: x_requester_id := PO_WF_UTIL_PKG.GetItemAttrNumber(itemtype => itemtype,

48:
49: end if;
50:
51: x_progress := 'PO_WF_PO_RULE_ACC.get_default_requester_acc: 02';
52: x_requester_id := PO_WF_UTIL_PKG.GetItemAttrNumber(itemtype => itemtype,
53: itemkey => itemkey,
54: aname => 'TO_PERSON_ID');
55:
56: /* Bug#11810952-Start: If there exists no "Deliver-To" person, consider

Line 59: x_requester_id := PO_WF_UTIL_PKG.GetItemAttrNumber(itemtype => itemtype,

55:
56: /* Bug#11810952-Start: If there exists no "Deliver-To" person, consider
57: "Preparer" as Requester. */
58: IF x_requester_id IS NULL THEN
59: x_requester_id := PO_WF_UTIL_PKG.GetItemAttrNumber(itemtype => itemtype,
60: itemkey => itemkey,
61: aname => 'PREPARER_ID');
62: END IF;
63: /* Bug#11810952-End */

Line 77: -- the PO_WF_UTIL_PKG.GetItemAttrNumber() would return NULL.

73: -- Expense Account rules to either POU or DOU's org ID depending
74: -- on which OU's accounts are being generated.
75: -- For Req AG Workflow, the attribute EXPENSE_RULES_ORG_ID
76: -- would not be present. In that case,
77: -- the PO_WF_UTIL_PKG.GetItemAttrNumber() would return NULL.
78: -- Then, we would populate it with the ORG_ID in the org context.
79:
80: l_expense_rules_org_id := PO_WF_UTIL_PKG.GetItemAttrNumber(
81: itemtype => itemtype,

Line 80: l_expense_rules_org_id := PO_WF_UTIL_PKG.GetItemAttrNumber(

76: -- would not be present. In that case,
77: -- the PO_WF_UTIL_PKG.GetItemAttrNumber() would return NULL.
78: -- Then, we would populate it with the ORG_ID in the org context.
79:
80: l_expense_rules_org_id := PO_WF_UTIL_PKG.GetItemAttrNumber(
81: itemtype => itemtype,
82: itemkey => itemkey,
83: aname => 'EXPENSE_RULES_ORG_ID');
84:

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

197: x_progress := 'PO_WF_PO_RULE_ACC.get_default_requester_acc: 03';
198: if x_ccid is not null THEN
199:
200:
201: PO_WF_UTIL_PKG.SetItemAttrNumber (itemtype => itemtype,
202: itemkey => itemkey,
203: aname => 'DEFAULT_ACCT_ID',
204: avalue => x_ccid );
205:

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

211: end if;
212:
213: ELSE
214:
215: PO_WF_UTIL_PKG.SetItemAttrNumber (itemtype => itemtype,
216: itemkey => itemkey,
217: aname => 'DEFAULT_ACCT_ID',
218: avalue => x_ccid );
219:

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

287: x_progress := 'PO_WF_PO_RULE_ACC.get_favorite_charge_acc: 04';
288:
289:
290: if x_ccid is not null then
291: PO_WF_UTIL_PKG.SetItemAttrNumber (itemtype => itemtype,
292: itemkey => itemkey,
293: aname => 'DEFAULT_ACCT_ID',
294: avalue => x_ccid );
295: result := 'COMPLETE:SUCCESS';

Line 393: -- the PO_WF_UTIL_PKG.GetItemAttrNumber() would return NULL.

389: -- Expense Account rules to either POU or DOU's org ID depending
390: -- on which OU's accounts are being generated.
391: -- For Req AG Workflow, the attribute EXPENSE_RULES_ORG_ID
392: -- would not be present. In that case,
393: -- the PO_WF_UTIL_PKG.GetItemAttrNumber() would return NULL.
394: -- Then, we would populate it with the ORG_ID in the org context.
395:
396: l_expense_rules_org_id := PO_WF_UTIL_PKG.GetItemAttrNumber(
397: itemtype => itemtype,

Line 396: l_expense_rules_org_id := PO_WF_UTIL_PKG.GetItemAttrNumber(

392: -- would not be present. In that case,
393: -- the PO_WF_UTIL_PKG.GetItemAttrNumber() would return NULL.
394: -- Then, we would populate it with the ORG_ID in the org context.
395:
396: l_expense_rules_org_id := PO_WF_UTIL_PKG.GetItemAttrNumber(
397: itemtype => itemtype,
398: itemkey => itemkey,
399: aname => 'EXPENSE_RULES_ORG_ID');
400:

Line 512: PO_WF_UTIL_PKG.SetItemAttrNumber (

508:
509: l_progress := 'PO_WF_PO_RULE_ACC.IF_RULE_EXIST_FOR_ALL_SEGMENTS: 10';
510:
511: if l_ccId is not null then
512: PO_WF_UTIL_PKG.SetItemAttrNumber (
513: itemtype => itemtype,
514: itemkey => itemkey,
515: aname => 'DEFAULT_ACCT_ID',
516: avalue => l_ccId );

Line 605: PO_WF_UTIL_PKG.SetItemAttrText ( itemtype => itemtype,

601: else
602: x_segment_name := l_segment_table(l_counter).segment_name;
603: x_segment_value := l_segment_table(l_counter).segment_value;
604:
605: PO_WF_UTIL_PKG.SetItemAttrText ( itemtype => itemtype,
606: itemkey => itemkey,
607: aname => 'SEGMENT',
608: avalue => x_segment_name);
609:

Line 610: PO_WF_UTIL_PKG.SetItemAttrText ( itemtype => itemtype,

606: itemkey => itemkey,
607: aname => 'SEGMENT',
608: avalue => x_segment_name);
609:
610: PO_WF_UTIL_PKG.SetItemAttrText ( itemtype => itemtype,
611: itemkey => itemkey,
612: aname => 'VALUE',
613: avalue => x_segment_value);
614:

Line 648: x_category_id := PO_WF_UTIL_PKG.GetItemAttrText ( itemtype => itemtype,

644: --< Shared Proc FPJ End >
645:
646: BEGIN
647: x_progress := 'PO_WF_PO_RULE_ACC.get_segment_records: 01';
648: x_category_id := PO_WF_UTIL_PKG.GetItemAttrText ( itemtype => itemtype,
649: itemkey => itemkey,
650: aname => 'CATEGORY_ID');
651:
652: --< Shared Proc FPJ Start >

Line 653: l_expense_rules_org_id := PO_WF_UTIL_PKG.GetItemAttrNumber(

649: itemkey => itemkey,
650: aname => 'CATEGORY_ID');
651:
652: --< Shared Proc FPJ Start >
653: l_expense_rules_org_id := PO_WF_UTIL_PKG.GetItemAttrNumber(
654: itemtype => itemtype,
655: itemkey => itemkey,
656: aname => 'EXPENSE_RULES_ORG_ID');
657:

Line 795: l_purchasing_ou_id := PO_WF_UTIL_PKG.GetItemAttrNumber(

791: result := WF_ENGINE.eng_null;
792: RETURN;
793: END IF;
794:
795: l_purchasing_ou_id := PO_WF_UTIL_PKG.GetItemAttrNumber(
796: itemtype => itemtype,
797: itemkey => itemkey,
798: aname => 'PURCHASING_OU_ID');
799:

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

796: itemtype => itemtype,
797: itemkey => itemkey,
798: aname => 'PURCHASING_OU_ID');
799:
800: PO_WF_UTIL_PKG.SetItemAttrNumber( itemtype => itemtype,
801: itemkey => itemkey,
802: aname => 'EXPENSE_RULES_ORG_ID',
803: avalue => l_purchasing_ou_id);
804: EXCEPTION

Line 845: l_destination_ou_id := PO_WF_UTIL_PKG.GetItemAttrNumber(

841: result := WF_ENGINE.eng_null;
842: RETURN;
843: END IF;
844:
845: l_destination_ou_id := PO_WF_UTIL_PKG.GetItemAttrNumber(
846: itemtype => itemtype,
847: itemkey => itemkey,
848: aname => 'SHIP_TO_OU_ID');
849:

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

846: itemtype => itemtype,
847: itemkey => itemkey,
848: aname => 'SHIP_TO_OU_ID');
849:
850: PO_WF_UTIL_PKG.SetItemAttrNumber( itemtype => itemtype,
851: itemkey => itemkey,
852: aname => 'EXPENSE_RULES_ORG_ID',
853: avalue => l_destination_ou_id);
854: EXCEPTION