DBA Data[Home] [Help]

APPS.ITG_BOAPI_WRAPPERS dependencies on FND_PROFILE

Line 5: l_debug_level NUMBER := to_number(nvl(fnd_profile.value('CLN_DEBUG_LEVEL'), '5'));

1: PACKAGE BODY ITG_BOAPI_Wrappers AS
2: /* ARCS: $Header: itgwrapb.pls 120.7 2006/08/24 06:06:01 pvaddana noship $
3: * CVS: itgwrapb.pls,v 1.52 2003/05/30 00:49:39 klai Exp
4: */
5: l_debug_level NUMBER := to_number(nvl(fnd_profile.value('CLN_DEBUG_LEVEL'), '5'));
6:
7: g_collaboration_id NUMBER;
8: g_return_status VARCHAR2(1);
9: g_return_message VARCHAR2(2000);

Line 73: FND_PROFILE.put('FND_AS_MSG_LEVEL_THRESHOLD', 0);

69: g_doctyp := p_doctyp;
70: g_clntyp := p_clntyp;
71: g_org := p_org;
72:
73: FND_PROFILE.put('FND_AS_MSG_LEVEL_THRESHOLD', 0);
74:
75: IF (l_Debug_Level <= 2) THEN
76: itg_debug_pub.Add('--- Entering Begin_Wrapper ---' ,2);
77: END IF;

Line 96: user_id => nvl(fnd_profile.value('ITG_XML_USER'),itg_x_utils.c_user_id),

92: FND_MSG_PUB.INITIALIZE;
93:
94: /*
95: FND_GLOBAL.apps_initialize(
96: user_id => nvl(fnd_profile.value('ITG_XML_USER'),itg_x_utils.c_user_id),
97: resp_id => itg_x_utils.c_resp_id,
98: resp_appl_id => itg_x_utils.c_resp_appl_id
99: );*/
100:

Line 106: nvl(fnd_profile.value('ITG_XML_USER'),itg_x_utils.c_user_id),

102: -- fnd_global.apps_initialize sets it to -1,
103: -- hence calling FND_GLOBAl.INITIALIZE as a workaround.
104: -- this resolves the issue with the close_PO API failue
105: FND_GLOBAl.INITIALIZE(l_session_id,
106: nvl(fnd_profile.value('ITG_XML_USER'),itg_x_utils.c_user_id),
107: itg_x_utils.c_resp_id,
108: itg_x_utils.c_resp_appl_id,
109: 0, -1, 1, -1, -1, -1, -1, null,null,null,null,null,null,-1);
110: