Skip to Content
0
Former Member
May 16, 2008 at 12:53 PM

Error Code 836 by sending over SO_NEW_DOCUMENT_SEND_API1

562 Views

Hi,

my programm sending emails over SO_NEW_DOCUMENT_SEND_API1.

The Code is:

s_receivers-receiver = 'my.email at my-company.de.

s_receivers-rec_type = 'U'.

s_receivers-express = 'X'.

APPEND s_receivers TO t_receivers.

document_data-obj_descr = 'Hello World'.

"Body

s_content = 'Hello World'.

APPEND s_content TO t_content.

"Sending Mail.

CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'

EXPORTING

document_data = document_data

put_in_outbox = 'X'

TABLES

object_content = t_content

receivers = t_receivers

EXCEPTIONS

too_many_receivers = 1

document_not_sent = 2

document_type_not_exist = 3

operation_no_authorization = 4

parameter_error = 5

x_error = 6

enqueue_error = 7

OTHERS = 8.

SUBMIT rsconn01 WITH mode = 'INT' AND RETURN.

But the System doesn't send these mail and produce an Error code 836 (Contact the Administrator).

The Details of these error 836 is that the "Sending abord by Administrator". But when I restart the sending

of these Message, the Message will be send perfectly.

Whats wrong? Please, could anybody help me 😊

Edited by: Thomas Bucklitsch on May 16, 2008 2:54 PM