DBA Data[Home] [Help]

APPS.OE_ORDER_PUB dependencies on OE_DEBUG_PUB

Line 234: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

230:
231: procedure set_context (p_org_id in number) is
232: l_org_id number ;
233: l_return_status varchar2(1);
234: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
235: begin
236: l_org_id := p_org_id;
237: if l_debug_level > 0 then
238: oe_debug_pub.add('Entering set_context');

Line 238: oe_debug_pub.add('Entering set_context');

234: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
235: begin
236: l_org_id := p_org_id;
237: if l_debug_level > 0 then
238: oe_debug_pub.add('Entering set_context');
239: oe_debug_pub.add('Org_id is '||nvl(p_org_id,-1));
240: end if;
241: MO_GLOBAL.validate_orgid_pub_api(org_id=>l_org_id , status=>l_return_status);
242: if l_debug_level > 0 then

Line 239: oe_debug_pub.add('Org_id is '||nvl(p_org_id,-1));

235: begin
236: l_org_id := p_org_id;
237: if l_debug_level > 0 then
238: oe_debug_pub.add('Entering set_context');
239: oe_debug_pub.add('Org_id is '||nvl(p_org_id,-1));
240: end if;
241: MO_GLOBAL.validate_orgid_pub_api(org_id=>l_org_id , status=>l_return_status);
242: if l_debug_level > 0 then
243: oe_debug_pub.add('After call to mo_global.validate_orgid_pub_api Org_id'||l_org_id|| 'Return status'||nvl(l_return_status,'?'));

Line 243: oe_debug_pub.add('After call to mo_global.validate_orgid_pub_api Org_id'||l_org_id|| 'Return status'||nvl(l_return_status,'?'));

239: oe_debug_pub.add('Org_id is '||nvl(p_org_id,-1));
240: end if;
241: MO_GLOBAL.validate_orgid_pub_api(org_id=>l_org_id , status=>l_return_status);
242: if l_debug_level > 0 then
243: oe_debug_pub.add('After call to mo_global.validate_orgid_pub_api Org_id'||l_org_id|| 'Return status'||nvl(l_return_status,'?'));
244: end if;
245: --If return status is O then we need not do anythinf (backward compatibility)
246: --If return status is F then raise error
247: --If return status is S (in case org_id was passed to process order API) then set context to the passed org_id

Line 258: oe_debug_pub.add('Before call to mo_utils.get_default_orgid');

254: raise FND_API.G_EXC_ERROR;
255: else
256: If p_org_id is null then -- In this case we will look at org_id passed to process order API and not that which is returned by mo_global.validate_pub_api
257: if l_debug_level > 0 then
258: oe_debug_pub.add('Before call to mo_utils.get_default_orgid');
259: end if;
260: l_org_id :=mo_utils.get_default_org_id ;
261: if l_debug_level > 0 then
262: oe_debug_pub.add('Default org_id is '||l_org_id );

Line 262: oe_debug_pub.add('Default org_id is '||l_org_id );

258: oe_debug_pub.add('Before call to mo_utils.get_default_orgid');
259: end if;
260: l_org_id :=mo_utils.get_default_org_id ;
261: if l_debug_level > 0 then
262: oe_debug_pub.add('Default org_id is '||l_org_id );
263: end if;
264: if l_org_id is null then
265: raise FND_API.G_EXC_ERROR;
266: end if;

Line 3860: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

3856:
3857: l_aac_header_rec OE_Order_PUB.Header_Rec_Type;
3858: l_aac_line_tbl OE_Order_PUB.Line_Tbl_Type;
3859:
3860: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
3861: l_cust_info_tbl OE_ORDER_PUB.CUSTOMER_INFO_TABLE_TYPE; --ER7675548
3862: BEGIN
3863:
3864: -- Standard call to check for call compatibility

Line 3977: oe_debug_pub.add('calling AAC from Pub Prcoess Order');

3973:
3974: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510'
3975: THEN
3976:
3977: oe_debug_pub.add('calling AAC from Pub Prcoess Order');
3978: OE_Order_GRP.automatic_account_creation(p_header_rec => p_header_rec,
3979: p_header_val_rec => p_header_val_rec,
3980: p_line_tbl => p_line_tbl,
3981: p_line_val_tbl => p_line_val_tbl,

Line 4006: oe_debug_pub.add('Call OE_HEADER_UTIL.Get_customer_info_ids :'||x_return_status);

4002: x_msg_data => x_msg_data
4003: );
4004:
4005: IF l_debug_level > 0 THEN
4006: oe_debug_pub.add('Call OE_HEADER_UTIL.Get_customer_info_ids :'||x_return_status);
4007: END IF;
4008:
4009: IF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
4010: ROLLBACK TO SAVEPOINT ADD_CUSTOMER_INFO;

Line 4030: oe_debug_pub.add('Call OE_LINE_UTIL.Get_customer_info_ids :'||x_return_status);

4026: x_msg_data => x_msg_data
4027: );
4028:
4029: IF l_debug_level > 0 THEN
4030: oe_debug_pub.add('Call OE_LINE_UTIL.Get_customer_info_ids :'||x_return_status);
4031: END IF;
4032:
4033: IF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
4034: ROLLBACK TO SAVEPOINT ADD_CUSTOMER_INFO;

Line 5218: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

5214:
5215: l_org_id NUMBER;
5216: l_return_status VARCHAR2(30);
5217: l_header_id NUMBER;
5218: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
5219: l_number_of_containers NUMBER;
5220: BEGIN
5221: -- Logic added for MOAC
5222:

Line 5290: oe_debug_pub.add(' Before calling private Process_MACD_Order', 1 ) ;

5286:
5287: l_header_id := p_header_id;
5288:
5289: IF l_debug_level > 0 THEN
5290: oe_debug_pub.add(' Before calling private Process_MACD_Order', 1 ) ;
5291: END IF;
5292:
5293: x_return_status := FND_API.G_RET_STS_SUCCESS;
5294:

Line 5311: oe_debug_pub.add(' After calling private Process_MACD_Order ' || x_return_status, 1 ) ;

5307: x_msg_count => x_msg_count,
5308: x_msg_data => x_msg_data);
5309:
5310: IF l_debug_level > 0 THEN
5311: oe_debug_pub.add(' After calling private Process_MACD_Order ' || x_return_status, 1 ) ;
5312: END IF;
5313:
5314:
5315: IF l_debug_level > 0 THEN

Line 5316: oe_debug_pub.add('Entering into public Process_MACD_Order', 1 ) ;

5312: END IF;
5313:
5314:
5315: IF l_debug_level > 0 THEN
5316: oe_debug_pub.add('Entering into public Process_MACD_Order', 1 ) ;
5317: END IF;
5318:
5319: Null;
5320: