DBA Data[Home] [Help]

APPS.IES_TELESALES_BP_PKG dependencies on FND_MSG_PUB

Line 109: l_count := FND_MSG_PUB.Count_Msg;

105: -- DBMS_OUTPUT.PUT_LINE('x_msg_data: ' || l_msg_data);
106: -- DBMS_OUTPUT.PUT_LINE('x_msg_count: ' || l_msg_count);
107:
108:
109: l_count := FND_MSG_PUB.Count_Msg;
110: -- dbms_output.put_line('There are ' || l_count || ' messages.');
111: FOR l_index IN 1..l_count LOOP
112: my_message := FND_MSG_PUB.Get(
113: p_msg_index => l_index,

Line 112: my_message := FND_MSG_PUB.Get(

108:
109: l_count := FND_MSG_PUB.Count_Msg;
110: -- dbms_output.put_line('There are ' || l_count || ' messages.');
111: FOR l_index IN 1..l_count LOOP
112: my_message := FND_MSG_PUB.Get(
113: p_msg_index => l_index,
114: p_encoded => FND_API.G_FALSE);
115: -- dbms_output.put_line(substr(my_message,1,255));
116: END LOOP;

Line 162: FND_MSG_PUB.G_MSG_LEVEL_THRESHOLD := FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW;

158:
159:
160: FND_GLOBAL.APPS_INITIALIZE(l_user_id, null, 279);
161:
162: FND_MSG_PUB.G_MSG_LEVEL_THRESHOLD := FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW;
163:
164:
165: AS_SALES_LEADS_PUB.Create_Opportunity_For_Lead(
166: p_api_version_number => 2.0

Line 182: l_count := FND_MSG_PUB.Count_Msg;

178: ,x_msg_data => l_msg_data
179: ,x_opportunity_id => l_opp_id );
180:
181:
182: l_count := FND_MSG_PUB.Count_Msg;
183: -- dbms_output.put_line('There are ' || l_count || ' messages.');
184: FOR l_index IN 1..l_count LOOP
185: my_message := FND_MSG_PUB.Get(
186: p_msg_index => l_index,

Line 185: my_message := FND_MSG_PUB.Get(

181:
182: l_count := FND_MSG_PUB.Count_Msg;
183: -- dbms_output.put_line('There are ' || l_count || ' messages.');
184: FOR l_index IN 1..l_count LOOP
185: my_message := FND_MSG_PUB.Get(
186: p_msg_index => l_index,
187: p_encoded => FND_API.G_FALSE);
188: -- dbms_output.put_line(substr(my_message,1,255));
189: END LOOP;