cancel
Showing results for 
Search instead for 
Did you mean: 

Automated password emails for Users_Gen (Upload users from files)

Former Member
0 Kudos

Hello ,

when we upload new users from file in users_gen , an automated email is being sent to the users which contains the user's password.

Can you please let me know if we can change the text of that email , if yes how ..

I want to include an extra line when the mail is sent to the users ...

rgds

Chetan

Accepted Solutions (0)

Answers (1)

Answers (1)

ricardo_cavedini
Active Contributor
0 Kudos

Hello,

Following notes allow you to not send e-mail when user is created via USERS_GEN.

1324718

1231716

Perhaps checking these codes you are able to find the responsible method to create such mail.

Regards,

Ricardo

Former Member
0 Kudos

Hi ,

not of much help as I dont want to stop these emails , I just want to change the text

thanks anyways ..

Can anybody help me on this ..

Former Member
0 Kudos

Hello Chatan,

unfortunately the text is hard coded, so you need an ABAP-er. He would need to insert the following code:

Include: LBBP_MASS_CREATIONF02

Form: help_form_send_email

...

MOVE TEXT-010 TO MAIL_CONTENT-LINE.

APPEND MAIL_CONTENT.

*<<< Start of Insert >>>

MOVE 'Your text' TO MAIL_CONTENT-LINE.

APPEND MAIL_CONTENT.

*<<< End of Insert >>>

RECEIVERS-RECEIVER = p_email.

RECEIVERS-REC_TYPE = 'U'.

RECEIVERS-COM_TYPE = 'INT'.

APPEND RECEIVERS.

...

Regards,

Peter Jancik