DBA Data[Home] [Help]

APPS.CSE_ASSET_MOVE_PKG dependencies on CSE_ASSET_MOVE_PKG

Line 1: PACKAGE BODY cse_asset_move_pkg AS

1: PACKAGE BODY cse_asset_move_pkg AS
2: /* $Header: CSEFAMVB.pls 120.35.12010000.1 2008/07/30 05:17:31 appldev ship $ */
3:
4: l_debug varchar2(1) := NVL(fnd_profile.value('CSE_DEBUG_OPTION'),'N');
5: g_asset_attrib_rec cse_datastructures_pub.asset_attrib_rec ;

Line 1204: l_api_name VARCHAR2(100) := 'cse_asset_move_pkg.process_adjustment_trans';

1200: l_dest_move_trans_tbl move_trans_tbl ;
1201: l_src_move_trans_tbl move_trans_tbl;
1202:
1203: ---For Public API's
1204: l_api_name VARCHAR2(100) := 'cse_asset_move_pkg.process_adjustment_trans';
1205: l_api_version NUMBER := 1.0;
1206: l_commit VARCHAR2(1) := fnd_api.g_false;
1207: l_init_msg_list VARCHAR2(1) := fnd_api.g_true;
1208: l_validation_level NUMBER := fnd_api.g_valid_level_full;

Line 1220: debug('inside api cse_asset_move_pkg.process_adjustment_trans ');

1216:
1217: BEGIN
1218:
1219: x_return_status := l_fnd_success ;
1220: debug('inside api cse_asset_move_pkg.process_adjustment_trans ');
1221:
1222: FOR cse_neg_adj_rec IN cse_neg_adj_cur
1223: LOOP
1224:

Line 1526: x_src_move_trans_tbl OUT nocopy cse_asset_move_pkg.move_trans_tbl,

1522:
1523:
1524: PROCEDURE get_move_txn_details(
1525: p_transaction_id IN number,
1526: x_src_move_trans_tbl OUT nocopy cse_asset_move_pkg.move_trans_tbl,
1527: x_dest_move_trans_tbl OUT nocopy cse_asset_move_pkg.move_trans_tbl,
1528: x_return_status OUT nocopy varchar2)
1529: IS
1530: CURSOR csi_txn_cur IS

Line 1527: x_dest_move_trans_tbl OUT nocopy cse_asset_move_pkg.move_trans_tbl,

1523:
1524: PROCEDURE get_move_txn_details(
1525: p_transaction_id IN number,
1526: x_src_move_trans_tbl OUT nocopy cse_asset_move_pkg.move_trans_tbl,
1527: x_dest_move_trans_tbl OUT nocopy cse_asset_move_pkg.move_trans_tbl,
1528: x_return_status OUT nocopy varchar2)
1529: IS
1530: CURSOR csi_txn_cur IS
1531: SELECT ct.transaction_type_id,

Line 1618: l_src_move_tbl cse_asset_move_pkg.move_trans_tbl;

1614: l_item_id number;
1615: l_organization_id number;
1616: l_txn_quantity number;
1617:
1618: l_src_move_tbl cse_asset_move_pkg.move_trans_tbl;
1619: l_dest_move_tbl cse_asset_move_pkg.move_trans_tbl;
1620: l_src_inst_rec csi_datastructures_pub.instance_header_rec;
1621: l_dest_inst_rec csi_datastructures_pub.instance_header_rec;
1622:

Line 1619: l_dest_move_tbl cse_asset_move_pkg.move_trans_tbl;

1615: l_organization_id number;
1616: l_txn_quantity number;
1617:
1618: l_src_move_tbl cse_asset_move_pkg.move_trans_tbl;
1619: l_dest_move_tbl cse_asset_move_pkg.move_trans_tbl;
1620: l_src_inst_rec csi_datastructures_pub.instance_header_rec;
1621: l_dest_inst_rec csi_datastructures_pub.instance_header_rec;
1622:
1623: s_ind binary_integer := 0;

Line 2474: debug('Inside API cse_asset_move_pkg.process_a_move_txn');

2470:
2471: BEGIN
2472:
2473: x_return_status := fnd_api.g_ret_sts_success;
2474: debug('Inside API cse_asset_move_pkg.process_a_move_txn');
2475: debug(' transaction_id : '||p_transaction_id);
2476:
2477: get_move_txn_details(
2478: p_transaction_id => p_transaction_id,

Line 2673: l_api_name := 'CSE_ASSET_MOVE_PKG.process_misc_moves';

2669: l_api_version := 1.0;
2670: l_commit := fnd_api.g_false;
2671: l_init_msg_list := fnd_api.g_true;
2672: l_validation_level := fnd_api.g_valid_level_full;
2673: l_api_name := 'CSE_ASSET_MOVE_PKG.process_misc_moves';
2674: l_sysdate := SYSDATE ;
2675: l_time_stamp := NULL ;
2676: l_move_processed_flag := 'N';
2677: l_inst_asset_failed := 'N' ;

Line 4353: l_api_name :='cse_asset_move_pkg.process_move_transactions';

4349: debug('Inside process_move_transaction - '||to_char(sysdate, 'dd-mon-yyy hh24:mi:ss'));
4350:
4351: debug(' param.inv_item_id : '||p_inventory_item_id);
4352:
4353: l_api_name :='cse_asset_move_pkg.process_move_transactions';
4354: l_api_version := 1.0;
4355: l_commit := fnd_api.g_false;
4356: l_init_msg_list := fnd_api.g_true;
4357: l_validation_level := fnd_api.g_valid_level_full;

Line 4515: END cse_asset_move_pkg;

4511: report_output(
4512: p_success_txn_tbl => l_success_txn_tbl,
4513: p_failure_txn_tbl => l_failure_txn_tbl);
4514: END process_move_transactions ;
4515: END cse_asset_move_pkg;