DBA Data[Home] [Help]

APPS.OZF_CLAIM_SETTLEMENT_WF_PVT dependencies on WF_ENGINE

Line 99: l_setl_doc_counter := WF_ENGINE.GetItemAttrNumber(itemtype => itemtype,

95: ---- RUN mode ----
96: IF (funcmode = 'RUN') THEN
97: -- Transaction Identifier
98:
99: l_setl_doc_counter := WF_ENGINE.GetItemAttrNumber(itemtype => itemtype,
100: itemkey => itemkey,
101: aname => 'OZF_SETL_DOC_COUNTER'
102: );
103:

Line 104: l_claim_id := WF_ENGINE.GetItemAttrText( itemtype => itemtype,

100: itemkey => itemkey,
101: aname => 'OZF_SETL_DOC_COUNTER'
102: );
103:
104: l_claim_id := WF_ENGINE.GetItemAttrText( itemtype => itemtype,
105: itemkey => itemkey,
106: aname => 'OZF_CLAIM_ID'
107: );
108:

Line 208: l_claim_class := WF_ENGINE.GetItemAttrText( itemtype => itemtype,

204:
205: BEGIN
206: ---- RUN mode ----
207: IF (funcmode = 'RUN') THEN
208: l_claim_class := WF_ENGINE.GetItemAttrText( itemtype => itemtype,
209: itemkey => itemkey,
210: aname => 'OZF_CLAIM_CLASS'
211: );
212:

Line 213: l_setl_proc_type := WF_ENGINE.GetItemAttrText( itemtype => itemtype,

209: itemkey => itemkey,
210: aname => 'OZF_CLAIM_CLASS'
211: );
212:
213: l_setl_proc_type := WF_ENGINE.GetItemAttrText( itemtype => itemtype,
214: itemkey => itemkey,
215: aname => 'OZF_CSETL_TYPE'
216: );
217:

Line 218: l_setl_counter := WF_ENGINE.GetItemAttrText( itemtype => itemtype,

214: itemkey => itemkey,
215: aname => 'OZF_CSETL_TYPE'
216: );
217:
218: l_setl_counter := WF_ENGINE.GetItemAttrText( itemtype => itemtype,
219: itemkey => itemkey,
220: aname => 'OZF_SETL_DOC_COUNTER'
221: );
222:

Line 235: WF_ENGINE.SetItemAttrText( itemtype => itemtype

231: END IF;
232:
233: l_setl_counter := l_setl_counter + 1;
234:
235: WF_ENGINE.SetItemAttrText( itemtype => itemtype
236: , itemkey => itemkey
237: , aname => 'OZF_SETL_DOC_COUNTER'
238: , avalue => l_setl_counter
239: );

Line 324: l_claim_id := WF_ENGINE.GetItemAttrText( itemtype => itemtype,

320: BEGIN
321: ---- RUN mode ----
322: IF (funcmode = 'RUN') THEN
323:
324: l_claim_id := WF_ENGINE.GetItemAttrText( itemtype => itemtype,
325: itemkey => itemkey,
326: aname => 'OZF_CLAIM_ID'
327: );
328:

Line 329: l_claim_number := WF_ENGINE.GetItemAttrText( itemtype => itemtype,

325: itemkey => itemkey,
326: aname => 'OZF_CLAIM_ID'
327: );
328:
329: l_claim_number := WF_ENGINE.GetItemAttrText( itemtype => itemtype,
330: itemkey => itemkey,
331: aname => 'OZF_CLAIM_NUMBER'
332: );
333:

Line 343: WF_ENGINE.SetItemAttrNumber( itemtype => itemtype,

339: IF l_ar_setl_doc.customer_trx_id IS NULL THEN
340: resultout := 'COMPLETE:N';
341: ELSE
342:
343: WF_ENGINE.SetItemAttrNumber( itemtype => itemtype,
344: itemkey => itemkey,
345: aname => 'OZF_TRX_ID_1',
346: avalue => l_ar_setl_doc.customer_trx_id
347: );

Line 349: WF_ENGINE.SetItemAttrText( itemtype => itemtype,

345: aname => 'OZF_TRX_ID_1',
346: avalue => l_ar_setl_doc.customer_trx_id
347: );
348: -- Transaction Type
349: WF_ENGINE.SetItemAttrText( itemtype => itemtype,
350: itemkey => itemkey,
351: aname => 'OZF_TRX_TYPE_1',
352: avalue => 'CM'
353: );

Line 355: WF_ENGINE.SetItemAttrText( itemtype => itemtype,

351: aname => 'OZF_TRX_TYPE_1',
352: avalue => 'CM'
353: );
354: -- Transaction Number
355: WF_ENGINE.SetItemAttrText( itemtype => itemtype,
356: itemkey => itemkey,
357: aname => 'OZF_TRX_NUMBER_1',
358: avalue => l_ar_setl_doc.trx_number
359: );

Line 361: WF_ENGINE.SetItemAttrDate( itemtype => itemtype,

357: aname => 'OZF_TRX_NUMBER_1',
358: avalue => l_ar_setl_doc.trx_number
359: );
360: -- Transaction Date
361: WF_ENGINE.SetItemAttrDate( itemtype => itemtype,
362: itemkey => itemkey,
363: aname => 'OZF_TRX_DATE_1',
364: avalue => l_ar_setl_doc.trx_date
365: );

Line 367: WF_ENGINE.SetItemAttrNumber( itemtype => itemtype,

363: aname => 'OZF_TRX_DATE_1',
364: avalue => l_ar_setl_doc.trx_date
365: );
366: -- Transaction Amount
367: WF_ENGINE.SetItemAttrNumber( itemtype => itemtype,
368: itemkey => itemkey,
369: aname => 'OZF_TRX_AMOUNT_1',
370: avalue => l_ar_setl_doc.amount_due_original
371: );

Line 373: WF_ENGINE.SetItemAttrText( itemtype => itemtype,

369: aname => 'OZF_TRX_AMOUNT_1',
370: avalue => l_ar_setl_doc.amount_due_original
371: );
372: -- Transaction Status
373: WF_ENGINE.SetItemAttrText( itemtype => itemtype,
374: itemkey => itemkey,
375: aname => 'OZF_TRX_STATUS_1',
376: avalue => l_ar_setl_doc.status
377: );