DBA Data[Home] [Help]

APPS.WMS_SHIPPING_TRANSACTION_PUB dependencies on WSH_INTEGRATION

Line 1202: l_InvPCInRecType wsh_integration.InvPCInRecType;

1198: l_lot_number VARCHAR2(80);
1199: l_picked_quantity NUMBER := 0;
1200:
1201: l_detail_attributes wsh_interface.ChangedAttributeTabType;
1202: l_InvPCInRecType wsh_integration.InvPCInRecType;
1203: l_return_status VARCHAR2(1);
1204: l_msg_count NUMBER;
1205: l_msg_data VARCHAR2(2000);
1206:

Line 1251: debug('About to call wsh_integration.Set_Inv_PC_Attributes','nested_serial_check');

1247: from dual;
1248:
1249: l_transaction_temp_id := l_InvPCInRecType.transaction_temp_id;
1250:
1251: debug('About to call wsh_integration.Set_Inv_PC_Attributes','nested_serial_check');
1252: debug('transaction_temp_id set to: ' ||
1253: l_InvPCInRecType.transaction_temp_id,
1254: 'nested_serial_check');
1255:

Line 1258: wsh_integration.Set_Inv_PC_Attributes

1254: 'nested_serial_check');
1255:
1256: --patchset J. Shipping API cleanup
1257: --call to set the global variable in preparation to update transaction_temp_id
1258: wsh_integration.Set_Inv_PC_Attributes
1259: (p_in_attributes => l_InvPCInRecType,
1260: x_return_status => l_return_status,
1261: x_msg_count => l_msg_count,
1262: x_msg_data => l_msg_data);

Line 1265: debug('wsh_integration.set_inv_pc_attributes failed'

1261: x_msg_count => l_msg_count,
1262: x_msg_data => l_msg_data);
1263:
1264: IF l_return_status IN (G_RET_STS_ERROR, G_RET_STS_UNEXP_ERROR) THEN
1265: debug('wsh_integration.set_inv_pc_attributes failed'
1266: || ' with status: ' || l_return_status,'nested_serial_check');
1267: --check where to handle this error
1268: RAISE fnd_api.g_exc_unexpected_error;
1269: END IF;