DBA Data[Home] [Help]

APPS.EGO_REPORT_WF_UTIL dependencies on EGO_REPORT_WF_UTIL

Line 1: PACKAGE BODY EGO_REPORT_WF_UTIL AS

1: PACKAGE BODY EGO_REPORT_WF_UTIL AS
2: /* $Header: EGORWKFB.pls 120.3 2006/03/03 05:51:27 sdarbha noship $ */
3:
4: G_PKG_NAME CONSTANT VARCHAR2(30):= 'EGO_REPORT_WF_UTIL' ;
5:

Line 4: G_PKG_NAME CONSTANT VARCHAR2(30):= 'EGO_REPORT_WF_UTIL' ;

1: PACKAGE BODY EGO_REPORT_WF_UTIL AS
2: /* $Header: EGORWKFB.pls 120.3 2006/03/03 05:51:27 sdarbha noship $ */
3:
4: G_PKG_NAME CONSTANT VARCHAR2(30):= 'EGO_REPORT_WF_UTIL' ;
5:
6: -- For Debug
7: g_debug_file UTL_FILE.FILE_TYPE ;
8: g_debug_flag BOOLEAN := FALSE ; -- For Debug, set TRUE

Line 841: x_message_text_body := 'PLSQLCLOB:EGO_REPORT_WF_UTIL.GetMessageTextBody/'

837:
838: BEGIN
839:
840: -- Message Text Body Document API
841: x_message_text_body := 'PLSQLCLOB:EGO_REPORT_WF_UTIL.GetMessageTextBody/'
842: || p_item_type ||':'||p_item_key ||':&#NID' ;
843:
844: -- Message HTML Body Document API
845: x_message_html_body := 'PLSQLCLOB:EGO_REPORT_WF_UTIL.GetMessageHTMLBody/'

Line 845: x_message_html_body := 'PLSQLCLOB:EGO_REPORT_WF_UTIL.GetMessageHTMLBody/'

841: x_message_text_body := 'PLSQLCLOB:EGO_REPORT_WF_UTIL.GetMessageTextBody/'
842: || p_item_type ||':'||p_item_key ||':&#NID' ;
843:
844: -- Message HTML Body Document API
845: x_message_html_body := 'PLSQLCLOB:EGO_REPORT_WF_UTIL.GetMessageHTMLBody/'
846: || p_report_url ||':'||p_message ||':&#NID' ;
847:
848:
849: END GetNtfMessageDocumentAPI ;

Line 1080: ( p_role_prefix => EGO_REPORT_WF_UTIL.G_ADHOC_PARTY_ROLE

1076: -- Adhoc Party Role
1077: I := I + 1 ;
1078: l_text_attr_name_tbl(I) := 'ADHOC_PARTY_ROLE' ;
1079: l_text_attr_value_tbl(I) := GetWFAdhocRoleName
1080: ( p_role_prefix => EGO_REPORT_WF_UTIL.G_ADHOC_PARTY_ROLE
1081: , p_item_type => p_item_type
1082: , p_item_key => p_item_key ) ;
1083:
1084:

Line 1237: x_return_status := EGO_REPORT_WF_UTIL.G_RET_STS_NONE;

1233: );
1234: ELSE
1235:
1236: -- Return N as None
1237: x_return_status := EGO_REPORT_WF_UTIL.G_RET_STS_NONE;
1238:
1239: END IF;
1240:
1241: return;

Line 1284: ( p_role_prefix => EGO_REPORT_WF_UTIL.G_ADHOC_PARTY_ROLE

1280:
1281:
1282: I := I + 1 ;
1283: l_role_names(I) := GetWFAdhocRoleName
1284: ( p_role_prefix => EGO_REPORT_WF_UTIL.G_ADHOC_PARTY_ROLE
1285: , p_item_type => p_item_type
1286: , p_item_key => p_item_key ) ;
1287:
1288:

Line 1674: ELSIF l_return_status = EGO_REPORT_WF_UTIL.G_RET_STS_NONE THEN

1670: result := 'COMPLETE';
1671: return;
1672:
1673: -- None
1674: ELSIF l_return_status = EGO_REPORT_WF_UTIL.G_RET_STS_NONE THEN
1675: -- set result
1676: result := 'COMPLETE:NONE';
1677: return;
1678: ELSE

Line 1717: wf_core.context('EGO_REPORT_WF_UTIL', 'SELECT_ADHOC_PARTY',

1713:
1714: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1715: -- The line below records this function call in the error system
1716: -- in the case of an exception.
1717: wf_core.context('EGO_REPORT_WF_UTIL', 'SELECT_ADHOC_PARTY',
1718: itemtype, itemkey, to_char(actid), funcmode);
1719: raise;
1720:
1721: WHEN OTHERS THEN

Line 1724: wf_core.context('EGO_REPORT_WF_UTIL', 'SELECT_ADHOC_PARTY',

1720:
1721: WHEN OTHERS THEN
1722: -- The line below records this function call in the error system
1723: -- in the case of an exception.
1724: wf_core.context('EGO_REPORT_WF_UTIL', 'SELECT_ADHOC_PARTY',
1725: itemtype, itemkey, to_char(actid), funcmode);
1726: raise;
1727:
1728: END SELECT_ADHOC_PARTY ;

Line 1811: wf_core.context('EGO_REPORT_WF_UTIL', 'DELETE_ADHOC_ROLES_AND_USERS',

1807:
1808: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1809: -- The line below records this function call in the error system
1810: -- in the case of an exception.
1811: wf_core.context('EGO_REPORT_WF_UTIL', 'DELETE_ADHOC_ROLES_AND_USERS',
1812: itemtype, itemkey, to_char(actid), funcmode);
1813: raise;
1814:
1815:

Line 1819: wf_core.context('EGO_REPORT_WF_UTIL', 'DELETE_ADHOC_ROLES_AND_USERS',

1815:
1816: WHEN OTHERS THEN
1817: -- The line below records this function call in the error system
1818: -- in the case of an exception.
1819: wf_core.context('EGO_REPORT_WF_UTIL', 'DELETE_ADHOC_ROLES_AND_USERS',
1820: itemtype, itemkey, to_char(actid), funcmode);
1821: raise;
1822:
1823: END DELETE_ADHOC_ROLES_AND_USERS ;

Line 1825: END EGO_REPORT_WF_UTIL ;

1821: raise;
1822:
1823: END DELETE_ADHOC_ROLES_AND_USERS ;
1824:
1825: END EGO_REPORT_WF_UTIL ;