DBA Data[Home] [Help]

APPS.GML_MOBILE_RECEIPT dependencies on FND_API

Line 331: x_return_status := fnd_api.g_ret_sts_success;

327: l_lot_count NUMBER := 0;
328: l_msg_count NUMBER;
329: BEGIN
330:
331: x_return_status := fnd_api.g_ret_sts_success;
332:
333: --If the lot number and transaction_interface_id combination already exists
334: --then add the specified transaction_quantity and primary_quantity to the
335: --current lot interface record.

Line 420: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

416:
417:
418: EXCEPTION
419: WHEN OTHERS THEN
420: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
421: fnd_msg_pub.count_and_get (
422: p_encoded => FND_API.G_FALSE
423: , p_count => l_msg_count
424: , p_data => x_msg_data );

Line 422: p_encoded => FND_API.G_FALSE

418: EXCEPTION
419: WHEN OTHERS THEN
420: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
421: fnd_msg_pub.count_and_get (
422: p_encoded => FND_API.G_FALSE
423: , p_count => l_msg_count
424: , p_data => x_msg_data );
425: END insert_lot;
426:

Line 430: l_return_status VARCHAR2(1) := fnd_api.g_ret_sts_success;

426:
427:
428:
429: PROCEDURE rcv_clear_global IS
430: l_return_status VARCHAR2(1) := fnd_api.g_ret_sts_success;
431: l_msg_count NUMBER;
432: l_msg_data VARCHAR2(400);
433: BEGIN
434: gml_rcv_std_rcpt_apis.g_shipment_header_id := NULL;

Line 463: x_return_status := fnd_api.g_ret_sts_success;

459: ) IS
460: l_count NUMBER;
461:
462: BEGIN
463: x_return_status := fnd_api.g_ret_sts_success;
464:
465: x_uom_code := '@@@';
466: l_count := 0;
467:

Line 525: x_return_status := fnd_api.g_ret_sts_unexp_error;

521: END IF;
522: END IF;
523: EXCEPTION
524: WHEN OTHERS THEN
525: x_return_status := fnd_api.g_ret_sts_unexp_error;
526:
527: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
528: fnd_msg_pub.add_exc_msg(g_pkg_name, 'get_uom_code');
529: END IF;

Line 611: (p_encoded => FND_API.g_false,

607: l_message VARCHAR2(2000);
608: l_msg_count NUMBER;
609: BEGIN
610: fnd_msg_pub.Count_And_Get
611: (p_encoded => FND_API.g_false,
612: p_count => l_msg_count,
613: p_data => l_message
614: );
615:

Line 619: p_encoded => FND_API.g_false)),1,2000);

615:
616: IF l_msg_count > 1 THEN
617: FOR i IN 1..l_msg_count LOOP
618: l_message := substr((l_message || '|' || FND_MSG_PUB.GET(p_msg_index => l_msg_count - i + 1,
619: p_encoded => FND_API.g_false)),1,2000);
620: END LOOP;
621: END IF;
622:
623: fnd_msg_pub.delete_msg;