DBA Data[Home] [Help]

APPS.INV_TRANSACTION_FLOW_PUB dependencies on INV_TRANSACTION_FLOW_PUB

Line 1: PACKAGE BODY INV_TRANSACTION_FLOW_PUB AS

1: PACKAGE BODY INV_TRANSACTION_FLOW_PUB AS
2: /* $Header: INVPICTB.pls 120.17 2007/12/17 11:59:50 ancgupta ship $ */
3:
4: /** These two global variable are used to cache the start OU and get the functional currency of
5: The start OU

Line 17: G_PKG_NAME CONSTANT VARCHAR2(50) := 'INV_TRANSACTION_FLOW_PUB';

13: G_FLOW_TYPE NUMBER := -1;
14: g_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
15: g_version_printed BOOLEAN := FALSE;
16:
17: G_PKG_NAME CONSTANT VARCHAR2(50) := 'INV_TRANSACTION_FLOW_PUB';
18:
19: G_ORDER_LINE_ID NUMBER := -1; /* Bug 5527437: umoogala */
20:
21: Procedure print_debug(p_message IN VARCHAR2,

Line 38: print_debug(p_message, 'INV_TRANSACTION_FLOW_PUB');

34:
35: Procedure print_debug(p_message IN VARCHAR2)
36: IS
37: BEGIN
38: print_debug(p_message, 'INV_TRANSACTION_FLOW_PUB');
39: --dbms_output.put_line(p_module || ' ' || p_message);
40: end;
41:
42:

Line 1112: inv_transaction_flow_pub.validate_ic_relation_rec

1108: IF (g_debug=1) THEN
1109: print_debug('NO IC RELATION EXISTS HENCE GO AHEAD AND CREATE, Ship Org=' || p_ship_organization_id_tbl(i) || ', Sell Org=' || p_Sell_Organization_Id_tbl(i));
1110: END IF;
1111:
1112: inv_transaction_flow_pub.validate_ic_relation_rec
1113: (x_return_status => l_return_status,
1114: x_msg_data => l_msg_data,
1115: x_msg_count => l_msg_count,
1116: x_valid => l_valid,

Line 1418: print_debug('Before inv_transaction_flow_pub.update_transaction_flow_header call...');

1414: fnd_msg_pub.initialize;
1415: END IF;
1416:
1417: IF (g_debug=1) THEN
1418: print_debug('Before inv_transaction_flow_pub.update_transaction_flow_header call...');
1419: END IF;
1420:
1421: inv_transaction_flow_pub.update_transaction_flow_header
1422: (x_return_status => l_return_status,

Line 1421: inv_transaction_flow_pub.update_transaction_flow_header

1417: IF (g_debug=1) THEN
1418: print_debug('Before inv_transaction_flow_pub.update_transaction_flow_header call...');
1419: END IF;
1420:
1421: inv_transaction_flow_pub.update_transaction_flow_header
1422: (x_return_status => l_return_status,
1423: x_msg_count => l_msg_count,
1424: x_msg_data => l_msg_data,
1425: p_api_version => p_api_version,

Line 1449: print_debug('After inv_transaction_flow_pub.update_transaction_flow_header call... Return Status=' || l_return_status);

1445: p_attribute15 => p_attribute15
1446: );
1447:
1448: IF (g_debug=1) THEN
1449: print_debug('After inv_transaction_flow_pub.update_transaction_flow_header call... Return Status=' || l_return_status);
1450: END IF;
1451:
1452: IF x_return_status = fnd_api.g_ret_sts_error THEN
1453: RAISE fnd_api.g_exc_error;

Line 1465: print_debug('Before inv_transaction_flow_pub.update_transaction_flow_line call...');

1461:
1462: FOR i IN 1..p_line_number_tbl.COUNT LOOP
1463:
1464: IF (g_debug=1) THEN
1465: print_debug('Before inv_transaction_flow_pub.update_transaction_flow_line call...');
1466: END IF;
1467:
1468: inv_transaction_flow_pub.update_transaction_flow_line
1469: ( x_return_status => l_return_status

Line 1468: inv_transaction_flow_pub.update_transaction_flow_line

1464: IF (g_debug=1) THEN
1465: print_debug('Before inv_transaction_flow_pub.update_transaction_flow_line call...');
1466: END IF;
1467:
1468: inv_transaction_flow_pub.update_transaction_flow_line
1469: ( x_return_status => l_return_status
1470: , x_msg_data => l_msg_data
1471: , x_msg_count => l_msg_count
1472: , p_api_version => p_api_version

Line 1495: print_debug('After inv_transaction_flow_pub.update_transaction_flow_line call... Return Status=' || l_return_status);

1491: , p_attribute15 => p_line_attribute15_tbl(i)
1492: );
1493:
1494: IF (g_debug=1) THEN
1495: print_debug('After inv_transaction_flow_pub.update_transaction_flow_line call... Return Status=' || l_return_status);
1496: END IF;
1497:
1498: IF l_return_status = g_ret_sts_error THEN
1499: RAISE fnd_api.g_exc_error;

Line 1508: print_debug('Before inv_transaction_flow_pub.update_ic_relation call...');

1504: l_msg_data:=NULL;
1505: l_msg_count:=NULL;
1506:
1507: IF (g_debug=1) THEN
1508: print_debug('Before inv_transaction_flow_pub.update_ic_relation call...');
1509: END IF;
1510:
1511: inv_transaction_flow_pub.update_ic_relation
1512: (x_return_status => l_return_status,

Line 1511: inv_transaction_flow_pub.update_ic_relation

1507: IF (g_debug=1) THEN
1508: print_debug('Before inv_transaction_flow_pub.update_ic_relation call...');
1509: END IF;
1510:
1511: inv_transaction_flow_pub.update_ic_relation
1512: (x_return_status => l_return_status,
1513: x_msg_data => l_msg_data,
1514: x_msg_count => l_msg_count,
1515: p_api_version => p_api_version,

Line 1552: print_debug('After inv_transaction_flow_pub.update_ic_relation call...Return Status=' || l_return_status);

1548:
1549: );
1550:
1551: IF (g_debug=1) THEN
1552: print_debug('After inv_transaction_flow_pub.update_ic_relation call...Return Status=' || l_return_status);
1553: END IF;
1554:
1555: IF l_return_status = g_ret_sts_error THEN
1556: RAISE fnd_api.g_exc_error;

Line 1991: inv_transaction_flow_pub.validate_ic_relation_rec

1987: END IF;
1988:
1989: SAVEPOINT update_ic_relation;
1990:
1991: inv_transaction_flow_pub.validate_ic_relation_rec
1992: (x_return_status => l_return_status,
1993: x_msg_data => l_msg_data,
1994: x_msg_count => l_msg_count,
1995: x_valid => l_valid,

Line 3112: INV_TRANSACTION_FLOW_PUB.CHECK_TRANSACTION_FLOW

3108: fnd_msg_pub.add;
3109: RAISE fnd_api.g_exc_error;
3110: END;
3111:
3112: INV_TRANSACTION_FLOW_PUB.CHECK_TRANSACTION_FLOW
3113: (p_api_version => 1.0
3114: ,p_start_operating_unit => l_ship_from_ou
3115: ,p_end_operating_unit => l_selling_ou
3116: ,p_flow_type => 1 --shipping

Line 4757: END INV_TRANSACTION_FLOW_PUB;

4753: print_debug('in When Others, l_progress = ' || l_progress, 'Get_Transfer_price');
4754:
4755: END get_transfer_price;
4756:
4757: END INV_TRANSACTION_FLOW_PUB;