Skip to Content
0
Former Member
May 18, 2010 at 02:02 PM

Email send error msg 672

386 Views

Hi Experts,

I facing the error message 672 - 'Still no entry in queue' when iam using the FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' for HR developement. This FM is written in form..endform which triggered dynamically ( dynamic actions ) when a infotype is created. done.

CLEAR ls_objpack-transf_bin.

ls_objpack-head_start = 1.

ls_objpack-head_num = 0.

ls_objpack-body_start = 1.

ls_objpack-body_num = lv_tab_lines.

ls_objpack-doc_type = 'RAW'.

APPEND ls_objpack TO lt_objpack.

CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'

EXPORTING

document_data = lv_doc

put_in_outbox = gc_checked

commit_work = gc_checked

TABLES

packing_list = lt_objpack

contents_txt = lt_objtxt

receivers = lt_reclist

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 = 99.

Please guide me to slove this issue