cancel
Showing results for 
Search instead for 
Did you mean: 

Password Validation

sachinjakkaria
Active Participant
0 Kudos

Hi everyone,

I have one requirement in that i have to validate the user with the std sap password

from my prog.

When user execute program, the three others has to give him the auth to carry on the further process.

Three user will give the auth by entering the their entering SAP login password.

Thanxs in adv.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Everyone,

Can anybody tell me how to restrict the length of the password when the user changes it in ISA. The user only wants upto 8 characters

Thanks!

Srini

Former Member
0 Kudos

Srini,

Hi. Please could you clarify what you mean by the ISA.

Cheers

Rob

Former Member
0 Kudos

Hi,

You can call function module "SUSR_INTERNET_USERSWITCH". This is remote enabled and can be called from an external application i.e. C# application.

.call function 'SUSR_INTERNET_USERSWITCH'

....exporting

......username = username

......password = password

....tables

......return = return

....exceptions

.......current_user_not_servicetyp = 1

.......more_than_one_mode = 2

.......internal_error = 3

.......others = 4.

evaluate return[] and sy-subrc if called from SAP.

Cheers

Rob