DBA Data[Home] [Help]

APPS.AS_AUTOCREATE_OPP dependencies on FND_LOG

Line 140: IF p_debug_mode = 'Y' and (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN

136: x_msg_data => l_msg_data,
137: X_opportunity_ID => l_opportunity_id);
138:
139: IF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
140: IF p_debug_mode = 'Y' and (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
141: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,'as.plsql.conc.asxldopb', 'Successfully create opportunity '||
142: to_char(l_opportunity_id) || 'for sales lead' ||
143: to_char(l_sales_lead_id));
144: END IF;

Line 141: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,'as.plsql.conc.asxldopb', 'Successfully create opportunity '||

137: X_opportunity_ID => l_opportunity_id);
138:
139: IF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
140: IF p_debug_mode = 'Y' and (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
141: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,'as.plsql.conc.asxldopb', 'Successfully create opportunity '||
142: to_char(l_opportunity_id) || 'for sales lead' ||
143: to_char(l_sales_lead_id));
144: END IF;
145: l_total_success := l_total_success + 1;

Line 156: IF p_debug_mode = 'Y' and (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN

152: Write_log (1,'Fail to create opportunity for sales lead : ' ||
153: to_char(l_sales_lead_id));
154: Write_log (1, 'Error is : '|| l_msg_data);
155:
156: IF p_debug_mode = 'Y' and (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
157: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,'as.plsql.conc.asxldopb', 'Fail to create opportunity for sales lead' ||
158: to_char(l_sales_lead_id));
159: END IF;
160: IF l_return_status <> FND_API.G_RET_STS_ERROR THEN

Line 157: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,'as.plsql.conc.asxldopb', 'Fail to create opportunity for sales lead' ||

153: to_char(l_sales_lead_id));
154: Write_log (1, 'Error is : '|| l_msg_data);
155:
156: IF p_debug_mode = 'Y' and (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
157: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,'as.plsql.conc.asxldopb', 'Fail to create opportunity for sales lead' ||
158: to_char(l_sales_lead_id));
159: END IF;
160: IF l_return_status <> FND_API.G_RET_STS_ERROR THEN
161: raise FND_API.G_EXC_UNEXPECTED_ERROR;