DBA Data[Home] [Help]

APPS.XNP_MESSAGE dependencies on WF_ENGINE

Line 1600: wf_engine.createprocess(l_item_type,

1596: 'MSG_FAILURE_NOTIFICATION',
1597: l_item_type,
1598: l_item_key) ;
1599:
1600: wf_engine.createprocess(l_item_type,
1601: l_item_key,
1602: 'MSG_FAILURE_NOTIFICATION') ;
1603:
1604: wf_engine.SetItemAttrNumber(

Line 1604: wf_engine.SetItemAttrNumber(

1600: wf_engine.createprocess(l_item_type,
1601: l_item_key,
1602: 'MSG_FAILURE_NOTIFICATION') ;
1603:
1604: wf_engine.SetItemAttrNumber(
1605: ItemType=>l_item_type,
1606: itemkey=>l_item_key,
1607: aname=>'MSG_ID',
1608: avalue=>p_msg_id);

Line 1610: wf_engine.SetItemAttrText(

1606: itemkey=>l_item_key,
1607: aname=>'MSG_ID',
1608: avalue=>p_msg_id);
1609:
1610: wf_engine.SetItemAttrText(
1611: ItemType=>l_item_type,
1612: ItemKey=>l_item_key,
1613: aname=>'MSG_ERROR',
1614: avalue=>p_error_desc);

Line 1616: wf_engine.SetItemAttrText(

1612: ItemKey=>l_item_key,
1613: aname=>'MSG_ERROR',
1614: avalue=>p_error_desc);
1615:
1616: wf_engine.SetItemAttrText(
1617: ItemType=>l_item_type,
1618: ItemKey=>l_item_key,
1619: aname=>'MSG_HANDLING_ROLE',
1620: avalue=>l_performer);

Line 1622: wf_engine.startprocess(l_item_type,

1618: ItemKey=>l_item_key,
1619: aname=>'MSG_HANDLING_ROLE',
1620: avalue=>l_performer);
1621:
1622: wf_engine.startprocess(l_item_type,
1623: l_item_key ) ;
1624:
1625: END notify_fmc ;
1626: