cancel
Showing results for 
Search instead for 
Did you mean: 

I am trying to send a Messgage through database.

ravi_sharma9390
Explorer
0 Kudos

Hello,

I wanna send a message using trigger (AFTER INSERT).

I have a trigger which calls the procedure where all my message link and number with text message is written.

This thing I am trying on creating a new Business Partner.

But Internal error (1) occurred  [Message 131-183] error is coming.

So, please help me out in this..

Accepted Solutions (1)

Accepted Solutions (1)

former_member201110
Active Contributor
0 Kudos

Hi Ravi,

Triggers are not supported by SAP for use on SBO system tables so I don't recommend you integrate your messaging in this way. Instead, you could put your code in the SBO_SP_TransactionNotification stored procedure. This will be called by the SBO client (or the DI API) when a business partner is added (ie when @object_type = 2 and @transaction_type = 'A') so you can add your code in here.

Kind Regards,

Owen

Answers (0)