Certainly. Bitcoin Core has various utility RPCs which are separate from the wallet. You can use createrawtransaction to create a transaction. Of course, without the wallet, you will need to specify the inputs and outputs for the transaction manually. You can sign that transaction with a private key not in the wallet by using signrawtransactionwithkey. You can then broadcast that transaction using sendrawtransaction.
To get the outputs for an address that you can use in createrawtransaction, you can use scantxoutset to scan the UTXO set for UTXOs pertaining to a particular address.
All of these can be done without the internal wallet and separate from the internal wallet.
signrawtransaction accepts private keys as parameters. – Raghav Sood – 2018-10-12T09:18:58.950
yes, i also look about that method too, but since you have to get listunspent to get txid for creatrawtransaction, so how we do it in our current node? We cannot listunspent address that outside our node. – redondoxx – 2018-10-12T09:20:20.917
1You can add addresses as watch only – Raghav Sood – 2018-10-12T09:33:04.990
How will you sign it that’s the real problem. – Haddar Macdasi – 2018-10-23T19:55:36.523