DBA Data[Home] [Help]

APPS.XDPCORE_FA dependencies on DUAL

Line 2990: select to_char(XDP_WF_ITEMKEY_S.NEXTVAL) into l_tempKey from dual;

2986: l_LineItemID := wf_engine.GetItemAttrNumber(itemtype => parentitemtype,
2987: itemkey => parentitemkey,
2988: aname => 'LINE_ITEM_ID');
2989:
2990: select to_char(XDP_WF_ITEMKEY_S.NEXTVAL) into l_tempKey from dual;
2991: FaItemkey := to_char(OrderID) || '-WI-' || to_char(WIInstanceID) || '-FA' || l_tempKey;
2992:
2993:
2994: -- Create Process and Bulk Set Item Attribute

Line 3102: select to_char(XDP_WF_ITEMKEY_S.NEXTVAL) into l_tempKey from dual;

3098: FaItemtype := 'XDPPROV';
3099: ErrCode := 0;
3100: ErrStr := null;
3101:
3102: select to_char(XDP_WF_ITEMKEY_S.NEXTVAL) into l_tempKey from dual;
3103: FaItemkey := to_char(OrderID) || '-WI-' || to_char(WIInstanceID) || '-FA' || l_tempKey;
3104:
3105:
3106:

Line 3296: select to_char(XDP_WF_ITEMKEY_S.NEXTVAL) into l_tempKey from dual;

3292: EXIT when c_GetIndFA%NOTFOUND;
3293:
3294: l_Counter := l_Counter + 1;
3295:
3296: select to_char(XDP_WF_ITEMKEY_S.NEXTVAL) into l_tempKey from dual;
3297: l_tempKey := to_char(l_OrderID) || '-WI-' || to_char(l_WIInstanceID) || '-INDFA-' || l_tempKey;
3298:
3299: t_ChildTypes(l_Counter) := 'XDPPROV';
3300: t_ChildKeys(l_Counter) := l_tempKey;

Line 3357: select to_char(XDP_WF_ITEMKEY_S.NEXTVAL) into l_tempKey from dual;

3353:
3354: if c_GetDepFA%FOUND then
3355: l_Counter := l_Counter + 1;
3356:
3357: select to_char(XDP_WF_ITEMKEY_S.NEXTVAL) into l_tempKey from dual;
3358: l_tempKey := to_char(l_OrderID) || '-WI-' || to_char(l_WIInstanceID) || '-DEPFA-' || l_tempKey;
3359:
3360: t_ChildTypes(l_Counter) := 'XDPPROV';
3361: t_ChildKeys(l_Counter) := l_tempKey;

Line 5030: select to_char(XDP_WF_ITEMKEY_S.NEXTVAL) into l_item_key from dual;

5026: l_order_id number;
5027: begin
5028:
5029: l_item_type := 'XDPWFSTD' ;
5030: select to_char(XDP_WF_ITEMKEY_S.NEXTVAL) into l_item_key from dual;
5031:
5032: l_order_id := wf_engine.GetItemAttrNumber(
5033: itemtype => SendAdapterErrorNotif.itemtype,
5034: itemkey => SendAdapterErrorNotif.itemkey,