DBA Data[Home] [Help]

APPS.PO_APPROVAL_REMINDER_SV dependencies on FND_MESSAGE

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

1894:
1895: IF l_doc_type IN ('PO','PA','RELEASE','REQUISITION') THEN
1896: -- Bug 6082842; Setting the NEVER_APPROVED_MSG attribute text to REQUIRES_APPROVAL_MSG text, since never approved msg is wrong.
1897: -- Get has never been approved message
1898: --fnd_message.set_name ('PO','PO_WF_NOTIF_NEVER_APPROVED');
1899: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
1900:
1901: l_error_msg := fnd_message.get;
1902:

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

1895: IF l_doc_type IN ('PO','PA','RELEASE','REQUISITION') THEN
1896: -- Bug 6082842; Setting the NEVER_APPROVED_MSG attribute text to REQUIRES_APPROVAL_MSG text, since never approved msg is wrong.
1897: -- Get has never been approved message
1898: --fnd_message.set_name ('PO','PO_WF_NOTIF_NEVER_APPROVED');
1899: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
1900:
1901: l_error_msg := fnd_message.get;
1902:
1903: wf_engine.SetItemAttrText ( itemtype => itemType,

Line 1901: l_error_msg := fnd_message.get;

1897: -- Get has never been approved message
1898: --fnd_message.set_name ('PO','PO_WF_NOTIF_NEVER_APPROVED');
1899: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
1900:
1901: l_error_msg := fnd_message.get;
1902:
1903: wf_engine.SetItemAttrText ( itemtype => itemType,
1904: itemkey => itemkey,
1905: aname => 'NEVER_APPROVED_MSG' ,

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

1906: avalue => l_error_msg);
1907:
1908:
1909: -- Get requires approval message
1910: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
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:
1908:
1909: -- Get requires approval message
1910: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
1911: l_error_msg := fnd_message.get;
1912:
1913: wf_engine.SetItemAttrText ( itemtype => itemType,
1914: itemkey => itemkey,
1915: aname => 'REQUIRES_APPROVAL_MSG' ,

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

1925:
1926: if NVL(l_req_status, 'INCOMPLETE') = 'RETURNED' then
1927:
1928: -- Get requisition returned approval message
1929: fnd_message.set_name ('PO','PO_WF_NOTIF_RETURNED');
1930: l_error_msg := fnd_message.get;
1931:
1932: wf_engine.SetItemAttrText ( itemtype => itemType,
1933: itemkey => itemkey,

Line 1930: l_error_msg := fnd_message.get;

1926: if NVL(l_req_status, 'INCOMPLETE') = 'RETURNED' then
1927:
1928: -- Get requisition returned approval message
1929: fnd_message.set_name ('PO','PO_WF_NOTIF_RETURNED');
1930: l_error_msg := fnd_message.get;
1931:
1932: wf_engine.SetItemAttrText ( itemtype => itemType,
1933: itemkey => itemkey,
1934: aname => 'REQUISITION_RETURNED_MSG' ,

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

1936:
1937: elsif NVL(l_req_status, 'INCOMPLETE') = 'REJECTED' then
1938:
1939: -- Get requisition returned approval message
1940: fnd_message.set_name ('PO','PO_WF_NOTIF_REJECTED');
1941: l_error_msg := fnd_message.get;
1942:
1943: wf_engine.SetItemAttrText ( itemtype => itemType,
1944: itemkey => itemkey,

Line 1941: l_error_msg := fnd_message.get;

1937: elsif NVL(l_req_status, 'INCOMPLETE') = 'REJECTED' then
1938:
1939: -- Get requisition returned approval message
1940: fnd_message.set_name ('PO','PO_WF_NOTIF_REJECTED');
1941: l_error_msg := fnd_message.get;
1942:
1943: wf_engine.SetItemAttrText ( itemtype => itemType,
1944: itemkey => itemkey,
1945: aname => 'REQUISITION_REJECTED_MSG' ,

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

2736: /* Set the Subject of the Approval notification to "requires your approval".
2737: ** Since the user entered a valid forward-to, then set the
2738: ** "Invalid Forward-to" message to NULL.
2739: */
2740: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
2741: l_error_msg := fnd_message.get;
2742:
2743: wf_engine.SetItemAttrText ( itemtype => itemType,
2744: itemkey => itemkey,

Line 2741: l_error_msg := fnd_message.get;

2737: ** Since the user entered a valid forward-to, then set the
2738: ** "Invalid Forward-to" message to NULL.
2739: */
2740: fnd_message.set_name ('PO','PO_WF_NOTIF_REQUIRES_APPROVAL');
2741: l_error_msg := fnd_message.get;
2742:
2743: wf_engine.SetItemAttrText ( itemtype => itemType,
2744: itemkey => itemkey,
2745: aname => 'REQUIRES_APPROVAL_MSG' ,

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

2765: /* Set the Subject of the Approval notification to "Invalid forward-to"
2766: ** Since the user entered an invalid forward-to, then set the
2767: ** "requires your approval" message to NULL.
2768: */
2769: fnd_message.set_name ('PO','PO_WF_NOTIF_INVALID_FORWARD');
2770: l_error_msg := fnd_message.get;
2771:
2772: wf_engine.SetItemAttrText ( itemtype => itemType,
2773: itemkey => itemkey,

Line 2770: l_error_msg := fnd_message.get;

2766: ** Since the user entered an invalid forward-to, then set the
2767: ** "requires your approval" message to NULL.
2768: */
2769: fnd_message.set_name ('PO','PO_WF_NOTIF_INVALID_FORWARD');
2770: l_error_msg := fnd_message.get;
2771:
2772: wf_engine.SetItemAttrText ( itemtype => itemType,
2773: itemkey => itemkey,
2774: aname => 'REQUIRES_APPROVAL_MSG' ,

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

3301: INTO l_user_profile_name
3302: FROM FND_PROFILE_OPTIONS_VL
3303: WHERE profile_option_name = l_profile_name;
3304:
3305: FND_MESSAGE.set_name ('PO', 'PO_PROFILE_OPTION_NUMERIC');
3306: FND_MESSAGE.set_token ( 'PROFILE_OPTION', l_user_profile_name );
3307: FND_FILE.put_line ( FND_FILE.OUTPUT, FND_MESSAGE.get );
3308: RAISE;
3309: END;

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

3302: FROM FND_PROFILE_OPTIONS_VL
3303: WHERE profile_option_name = l_profile_name;
3304:
3305: FND_MESSAGE.set_name ('PO', 'PO_PROFILE_OPTION_NUMERIC');
3306: FND_MESSAGE.set_token ( 'PROFILE_OPTION', l_user_profile_name );
3307: FND_FILE.put_line ( FND_FILE.OUTPUT, FND_MESSAGE.get );
3308: RAISE;
3309: END;
3310:

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

3303: WHERE profile_option_name = l_profile_name;
3304:
3305: FND_MESSAGE.set_name ('PO', 'PO_PROFILE_OPTION_NUMERIC');
3306: FND_MESSAGE.set_token ( 'PROFILE_OPTION', l_user_profile_name );
3307: FND_FILE.put_line ( FND_FILE.OUTPUT, FND_MESSAGE.get );
3308: RAISE;
3309: END;
3310:
3311: IF (g_fnd_debug = 'Y') THEN

Line 3409: message => FND_MESSAGE.get );

3405: p_procedure_name => l_proc_name );
3406: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_UNEXPECTED) THEN
3407: FND_LOG.string( log_level => FND_LOG.LEVEL_UNEXPECTED,
3408: module => g_module_prefix || l_proc_name,
3409: message => FND_MESSAGE.get );
3410: END IF;
3411: END IF;
3412:
3413: RAISE;

Line 3616: message => FND_MESSAGE.get );

3612: p_procedure_name => l_proc_name );
3613: IF (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_UNEXPECTED) THEN
3614: FND_LOG.string( log_level => FND_LOG.LEVEL_UNEXPECTED,
3615: module => g_module_prefix || l_proc_name,
3616: message => FND_MESSAGE.get );
3617: END IF;
3618: END IF;
3619:
3620: RAISE;