DBA Data[Home] [Help]

APPS.PO_APPROVAL_REMINDER_SV dependencies on FND_MESSAGE

Line 1868: --fnd_message.set_name ('PO','PO_WF_NOTIF_NEVER_APPROVED');

1864:
1865: IF l_doc_type IN ('PO','PA','RELEASE','REQUISITION') THEN
1866: -- Bug 6082842; Setting the NEVER_APPROVED_MSG attribute text to REQUIRES_APPROVAL_MSG text, since never approved msg is wrong.
1867: -- Get has never been approved message
1868: --fnd_message.set_name ('PO','PO_WF_NOTIF_NEVER_APPROVED');
1869: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
1870:
1871: l_error_msg := fnd_message.get;
1872:

Line 1869: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');

1865: IF l_doc_type IN ('PO','PA','RELEASE','REQUISITION') THEN
1866: -- Bug 6082842; Setting the NEVER_APPROVED_MSG attribute text to REQUIRES_APPROVAL_MSG text, since never approved msg is wrong.
1867: -- Get has never been approved message
1868: --fnd_message.set_name ('PO','PO_WF_NOTIF_NEVER_APPROVED');
1869: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
1870:
1871: l_error_msg := fnd_message.get;
1872:
1873: wf_engine.SetItemAttrText ( itemtype => itemType,

Line 1871: l_error_msg := fnd_message.get;

1867: -- Get has never been approved message
1868: --fnd_message.set_name ('PO','PO_WF_NOTIF_NEVER_APPROVED');
1869: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
1870:
1871: l_error_msg := fnd_message.get;
1872:
1873: wf_engine.SetItemAttrText ( itemtype => itemType,
1874: itemkey => itemkey,
1875: aname => 'NEVER_APPROVED_MSG' ,

Line 1880: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');

1876: avalue => l_error_msg);
1877:
1878:
1879: -- Get requires approval message
1880: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
1881: l_error_msg := fnd_message.get;
1882:
1883: wf_engine.SetItemAttrText ( itemtype => itemType,
1884: itemkey => itemkey,

Line 1881: l_error_msg := fnd_message.get;

1877:
1878:
1879: -- Get requires approval message
1880: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
1881: l_error_msg := fnd_message.get;
1882:
1883: wf_engine.SetItemAttrText ( itemtype => itemType,
1884: itemkey => itemkey,
1885: aname => 'REQUIRES_APPROVAL_MSG' ,

Line 1899: fnd_message.set_name ('PO','PO_WF_NOTIF_RETURNED');

1895:
1896: if NVL(l_req_status, 'INCOMPLETE') = 'RETURNED' then
1897:
1898: -- Get requisition returned approval message
1899: fnd_message.set_name ('PO','PO_WF_NOTIF_RETURNED');
1900: l_error_msg := fnd_message.get;
1901:
1902: wf_engine.SetItemAttrText ( itemtype => itemType,
1903: itemkey => itemkey,

Line 1900: l_error_msg := fnd_message.get;

1896: if NVL(l_req_status, 'INCOMPLETE') = 'RETURNED' then
1897:
1898: -- Get requisition returned approval message
1899: fnd_message.set_name ('PO','PO_WF_NOTIF_RETURNED');
1900: l_error_msg := fnd_message.get;
1901:
1902: wf_engine.SetItemAttrText ( itemtype => itemType,
1903: itemkey => itemkey,
1904: aname => 'REQUISITION_RETURNED_MSG' ,

Line 1910: fnd_message.set_name ('PO','PO_WF_NOTIF_REJECTED');

1906:
1907: elsif NVL(l_req_status, 'INCOMPLETE') = 'REJECTED' then
1908:
1909: -- Get requisition returned approval message
1910: fnd_message.set_name ('PO','PO_WF_NOTIF_REJECTED');
1911: l_error_msg := fnd_message.get;
1912:
1913: wf_engine.SetItemAttrText ( itemtype => itemType,
1914: itemkey => itemkey,

Line 1911: l_error_msg := fnd_message.get;

1907: elsif NVL(l_req_status, 'INCOMPLETE') = 'REJECTED' then
1908:
1909: -- Get requisition returned approval message
1910: fnd_message.set_name ('PO','PO_WF_NOTIF_REJECTED');
1911: l_error_msg := fnd_message.get;
1912:
1913: wf_engine.SetItemAttrText ( itemtype => itemType,
1914: itemkey => itemkey,
1915: aname => 'REQUISITION_REJECTED_MSG' ,

Line 2706: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');

2702: /* Set the Subject of the Approval notification to "requires your approval".
2703: ** Since the user entered a valid forward-to, then set the
2704: ** "Invalid Forward-to" message to NULL.
2705: */
2706: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
2707: l_error_msg := fnd_message.get;
2708:
2709: wf_engine.SetItemAttrText ( itemtype => itemType,
2710: itemkey => itemkey,

Line 2707: l_error_msg := fnd_message.get;

2703: ** Since the user entered a valid forward-to, then set the
2704: ** "Invalid Forward-to" message to NULL.
2705: */
2706: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
2707: l_error_msg := fnd_message.get;
2708:
2709: wf_engine.SetItemAttrText ( itemtype => itemType,
2710: itemkey => itemkey,
2711: aname => 'REQUIRES_APPROVAL_MSG' ,

Line 2735: fnd_message.set_name ('PO','PO_WF_NOTIF_INVALID_FORWARD');

2731: /* Set the Subject of the Approval notification to "Invalid forward-to"
2732: ** Since the user entered an invalid forward-to, then set the
2733: ** "requires your approval" message to NULL.
2734: */
2735: fnd_message.set_name ('PO','PO_WF_NOTIF_INVALID_FORWARD');
2736: l_error_msg := fnd_message.get;
2737:
2738: wf_engine.SetItemAttrText ( itemtype => itemType,
2739: itemkey => itemkey,

Line 2736: l_error_msg := fnd_message.get;

2732: ** Since the user entered an invalid forward-to, then set the
2733: ** "requires your approval" message to NULL.
2734: */
2735: fnd_message.set_name ('PO','PO_WF_NOTIF_INVALID_FORWARD');
2736: l_error_msg := fnd_message.get;
2737:
2738: wf_engine.SetItemAttrText ( itemtype => itemType,
2739: itemkey => itemkey,
2740: aname => 'REQUIRES_APPROVAL_MSG' ,

Line 3271: FND_MESSAGE.set_name ('PO', 'PO_PROFILE_OPTION_NUMERIC');

3267: INTO l_user_profile_name
3268: FROM FND_PROFILE_OPTIONS_VL
3269: WHERE profile_option_name = l_profile_name;
3270:
3271: FND_MESSAGE.set_name ('PO', 'PO_PROFILE_OPTION_NUMERIC');
3272: FND_MESSAGE.set_token ( 'PROFILE_OPTION', l_user_profile_name );
3273: FND_FILE.put_line ( FND_FILE.OUTPUT, FND_MESSAGE.get );
3274: RAISE;
3275: END;

Line 3272: FND_MESSAGE.set_token ( 'PROFILE_OPTION', l_user_profile_name );

3268: FROM FND_PROFILE_OPTIONS_VL
3269: WHERE profile_option_name = l_profile_name;
3270:
3271: FND_MESSAGE.set_name ('PO', 'PO_PROFILE_OPTION_NUMERIC');
3272: FND_MESSAGE.set_token ( 'PROFILE_OPTION', l_user_profile_name );
3273: FND_FILE.put_line ( FND_FILE.OUTPUT, FND_MESSAGE.get );
3274: RAISE;
3275: END;
3276:

Line 3273: FND_FILE.put_line ( FND_FILE.OUTPUT, FND_MESSAGE.get );

3269: WHERE profile_option_name = l_profile_name;
3270:
3271: FND_MESSAGE.set_name ('PO', 'PO_PROFILE_OPTION_NUMERIC');
3272: FND_MESSAGE.set_token ( 'PROFILE_OPTION', l_user_profile_name );
3273: FND_FILE.put_line ( FND_FILE.OUTPUT, FND_MESSAGE.get );
3274: RAISE;
3275: END;
3276:
3277: IF (g_fnd_debug = 'Y') THEN

Line 3375: message => FND_MESSAGE.get );

3371: p_procedure_name => l_proc_name );
3372: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_UNEXPECTED) THEN
3373: FND_LOG.string( log_level => FND_LOG.LEVEL_UNEXPECTED,
3374: module => g_module_prefix || l_proc_name,
3375: message => FND_MESSAGE.get );
3376: END IF;
3377: END IF;
3378:
3379: RAISE;

Line 3582: message => FND_MESSAGE.get );

3578: p_procedure_name => l_proc_name );
3579: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_UNEXPECTED) THEN
3580: FND_LOG.string( log_level => FND_LOG.LEVEL_UNEXPECTED,
3581: module => g_module_prefix || l_proc_name,
3582: message => FND_MESSAGE.get );
3583: END IF;
3584: END IF;
3585:
3586: RAISE;