DBA Data[Home] [Help]

APPS.JMF_SHIKYU_ONT_PVT dependencies on FND_API

Line 304: l_return_status varchar2(1) := FND_API.G_RET_STS_SUCCESS;

300: l_oe_line_rec oe_order_pub.Line_Rec_Type;
301:
302: l_msg_count number;
303: l_msg_data varchar2(2000);
304: l_return_status varchar2(1) := FND_API.G_RET_STS_SUCCESS;
305: l_header_rec oe_order_pub.Header_Rec_Type;
306: l_header_val_rec oe_order_pub.Header_Val_Rec_Type ;
307: l_Header_Adj_tbl oe_order_pub.Header_Adj_Tbl_Type;
308: l_Header_Adj_val_tbl oe_order_pub.Header_Adj_Val_Tbl_Type;

Line 818: , p_init_msg_list => FND_API.G_TRUE

814: -- Calling the Custom Hook allowing the user to default
815: -- the DFF attributes at header level.
816: JMF_CUSTOM_HOOK.Default_OE_Hdr_Attr
817: ( p_api_version_number => 1.0
818: , p_init_msg_list => FND_API.G_TRUE
819: , p_x_header_Rec => l_header_rec
820: , x_attribute1 => l_header_rec.attribute1
821: , x_attribute2 => l_header_rec.attribute2
822: , x_attribute3 => l_header_rec.attribute3

Line 862: , p_init_msg_list => FND_API.G_TRUE

858: -- Calling the Custom Hook allowing the user to default
859: -- the DFF attributes at line level.
860: JMF_CUSTOM_HOOK.Default_OE_Line_Attr
861: ( p_api_version_number => 1.0
862: , p_init_msg_list => FND_API.G_TRUE
863: , p_x_line_tbl => l_line_tbl
864: , x_line_attr_tbl => l_line_attr_tbl
865: , x_return_status => l_return_status
866: , x_msg_count => l_msg_count

Line 921: , p_init_msg_list => FND_API.G_TRUE

917: SAVEPOINT before_process_order;
918:
919: OE_Order_PVT.Process_order
920: ( p_api_version_number => 1.0
921: , p_init_msg_list => FND_API.G_TRUE
922: , x_return_status => l_return_status
923: , x_msg_count => l_msg_count
924: , x_msg_data => l_msg_data
925: , p_control_rec => l_control_rec

Line 957: IF l_return_status <> FND_API.G_RET_STS_SUCCESS

953: || ', Sales Order Line ID = ' || l_line_tbl(1).line_id
954: );
955: END IF;
956:
957: IF l_return_status <> FND_API.G_RET_STS_SUCCESS
958: THEN
959: FND_MESSAGE.set_name('JMF', 'JMF_SHK_REPLENISH_SO_ERR');
960: FND_MSG_PUB.Add;
961: /* Bug 7000413 - Start */

Line 1300: x_return_status := FND_API.G_RET_STS_ERROR;

1296:
1297: EXCEPTION
1298:
1299: WHEN l_too_many_effective_prices THEN
1300: x_return_status := FND_API.G_RET_STS_ERROR;
1301:
1302: ROLLBACK TO before_process_order;
1303:
1304: IF g_log_enabled AND

Line 1320: x_return_status := FND_API.G_RET_STS_ERROR;

1316: , '>> ' || l_program || ': Too many prices effective for item "' || l_item_number || '"');
1317: END IF;
1318:
1319: WHEN l_no_price_list_found THEN
1320: x_return_status := FND_API.G_RET_STS_ERROR;
1321:
1322: --Bugfix 9767052
1323: ROLLBACK TO before_process_order;
1324:

Line 1341: x_return_status := FND_API.G_RET_STS_ERROR;

1337: , '>> ' || l_program || ': No effective price list found for item "' || l_item_number || '"');
1338: END IF;
1339:
1340: WHEN l_null_unit_price THEN
1341: x_return_status := FND_API.G_RET_STS_ERROR;
1342:
1343: --Bugfix 9767052
1344: ROLLBACK TO before_process_order;
1345:

Line 1377: x_return_status := FND_API.G_RET_STS_ERROR;

1373: END IF;
1374: END IF;
1375:
1376: WHEN l_too_many_project_task_ref THEN
1377: x_return_status := FND_API.G_RET_STS_ERROR;
1378:
1379: --Bugfix 9767052
1380: ROLLBACK TO before_process_order;
1381:

Line 1393: x_return_status := FND_API.G_RET_STS_ERROR;

1389: );
1390: END IF;
1391:
1392: WHEN OTHERS THEN
1393: x_return_status := FND_API.G_RET_STS_ERROR;
1394:
1395: --Bugfix 9767052
1396: ROLLBACK TO before_process_order;
1397: