DBA Data[Home] [Help]

APPS.POS_ASN dependencies on WF_ENGINE

Line 371: wf_engine.createProcess(ItemType => l_ItemType,

367:
368: i := i + 1;
369: l_ItemKey := 'POS_CREATE_ASN' || to_char(l_header_id) || '-' || to_char(i);
370:
371: wf_engine.createProcess(ItemType => l_ItemType,
372: ItemKey => l_ItemKey,
373: Process => 'BUYER_NOTIFICATION');
374:
375: wf_engine.SetItemAttrNumber(itemtype => l_ItemType,

Line 375: wf_engine.SetItemAttrNumber(itemtype => l_ItemType,

371: wf_engine.createProcess(ItemType => l_ItemType,
372: ItemKey => l_ItemKey,
373: Process => 'BUYER_NOTIFICATION');
374:
375: wf_engine.SetItemAttrNumber(itemtype => l_ItemType,
376: itemkey => l_ItemKey,
377: aname => 'BUYER_USER_ID',
378: avalue => c_rec.buyer_id);
379:

Line 380: wf_engine.SetItemAttrText(itemtype => l_ItemType,

376: itemkey => l_ItemKey,
377: aname => 'BUYER_USER_ID',
378: avalue => c_rec.buyer_id);
379:
380: wf_engine.SetItemAttrText(itemtype => l_ItemType,
381: itemkey => l_ItemKey,
382: aname => 'SHIPMENT_NUM',
383: avalue => c_rec.shipment_num);
384:

Line 385: wf_engine.SetItemAttrDate(itemtype => l_ItemType,

381: itemkey => l_ItemKey,
382: aname => 'SHIPMENT_NUM',
383: avalue => c_rec.shipment_num);
384:
385: wf_engine.SetItemAttrDate(itemtype => l_ItemType,
386: itemkey => l_ItemKey,
387: aname => 'SHIP_DATE',
388: avalue => c_rec.ship_date);
389:

Line 390: wf_engine.SetItemAttrDate(itemtype => l_ItemType,

386: itemkey => l_ItemKey,
387: aname => 'SHIP_DATE',
388: avalue => c_rec.ship_date);
389:
390: wf_engine.SetItemAttrDate(itemtype => l_ItemType,
391: itemkey => l_ItemKey,
392: aname => 'EXPECTED_RECEIPT_DATE',
393: avalue => c_rec.expected_receipt_date);
394:

Line 395: wf_engine.SetItemAttrNumber(itemtype => l_ItemType,

391: itemkey => l_ItemKey,
392: aname => 'EXPECTED_RECEIPT_DATE',
393: avalue => c_rec.expected_receipt_date);
394:
395: wf_engine.SetItemAttrNumber(itemtype => l_ItemType,
396: itemkey => l_ItemKey,
397: aname => 'SUPPLIER_ID',
398: avalue => c_rec.supplier_id);
399:

Line 400: wf_engine.SetItemAttrText(itemtype => l_ItemType,

396: itemkey => l_ItemKey,
397: aname => 'SUPPLIER_ID',
398: avalue => c_rec.supplier_id);
399:
400: wf_engine.SetItemAttrText(itemtype => l_ItemType,
401: itemkey => l_ItemKey,
402: aname => 'SUPPLIER',
403: avalue => c_rec.supplier);
404:

Line 405: wf_engine.StartProcess(ItemType => l_ItemType,

401: itemkey => l_ItemKey,
402: aname => 'SUPPLIER',
403: avalue => c_rec.supplier);
404:
405: wf_engine.StartProcess(ItemType => l_ItemType,
406: ItemKey => l_ItemKey );
407: END LOOP;
408:
409: END buyer_notify;