cancel
Showing results for 
Search instead for 
Did you mean: 

problem send email

echo_haryono
Participant
0 Kudos

hi guys

i have some problem when sent report ewa , the error message is :

Internal error: CL_SMTP_RESPONSE ESMTP error code is not known. 530 530 Authentication required

Message no. XS829

<b>Diagnosis</b>

An error occurred in program CL_SMTP_RESPONSE

Error text: ESMTP error code is not known.

Additional information:

530

530 Authentication required

<b>System response</b>

Message processing terminated.

basicly i already config the smtp refer note : 455140

thx for your help

rgds

echo

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Do you still have a problem with sending email?

If so, run report RSSODIAD.

The error may be due to an inconsistency between the communication interface and the address management.

When the report does not exist in your system, find the source code below:

&----


*& Report RSSODIAD *

*& *

&----


*& This report checks existence of the company address for direct *

*& addresses the profile points to. *

& If company address does not exist the pointer in the profile will be

*& deleted. A new company address will be generated on demand. *

&----


REPORT RSSODIAD MESSAGE-ID SO.

INCLUDE RSSOCONS.

tables: sopr, adrc.

data: cnt like sy-tabix.

data lp_text(50).

  • Check authority

AUTHORITY-CHECK OBJECT 'S_OC_ROLE'

ID 'OFFADMI'

FIELD ADMINISTRATOR.

IF SY-SUBRC NE OK.

MESSAGE I015.

LEAVE PROGRAM.

ENDIF.

select single * from sopr.

if sy-subrc = 0

and sopr-diraddress ne space.

select count( * ) from adrc into cnt

where addrnumber = sopr-diraddress.

if sy-subrc ne 0.

update sopr set diraddress = space.

if sy-subrc = 0.

  • write: / 'Inkonsistenzen erfolgreich repariert.'(001).

lp_text = 'Inkonsistenzen erfolgreich repariert.'(001).

endif.

else.

  • write: / 'Keine Inkonsistenz gefunden.'(002).

lp_text = 'Keine Inkonsistenz gefunden.'(002).

endif.

else.

lp_text = 'Keine Inkonsistenz gefunden.'(002).

endif.

if not lp_text is initial.

message s672(so) with lp_text.

endif.

Former Member
0 Kudos

Hi,

I had this problem and I managed to solve it by executing the RSSODIAD report.

Thanks for that info Remy

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Echo:

It seemed to me that the SMTP server you had configured in transaction SCOT is not accepting anonymous connections, you will need to allow your SAP system in the SMTP server.

Regards,

Federico

echo_haryono
Participant
0 Kudos

hi federico,

thanks for your help,

now i can send email from the solman , basicly i was change configuration in tcode sicf , the user i set internet user,

but now i still cant send email from tcode sbwp,

when i try send the email the message "Address does not exist "

btw i alerdy define user with email address on su01

thanks a lot for your help

rgds

echo

0 Kudos

hi Echo

Can you tell me how to configuration in tcode sicf ? i had same issue with you .

Best Regards

peixing

Edited by: peixing jia on Jun 20, 2008 11:11 AM

xinjiang_li
Active Participant
0 Kudos

Hi,echo:

**************************

now i can send email from the solman , basicly i was change configuration in tcode sicf , the user i set internet user,

Internal error: CL_SMTP_RESPONSE ESMTP error code is not

known. 530 530 5.7.0 No AUTH command has been given.

***************************

I am encountering the same problem with you.How did you resolve that?Thanks in advance.

Former Member
0 Kudos

Hey,

you need to set up the default domain in the SCOT.

SCOT -> Settings -> Default Domain.