Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Encrypt.

Former Member
0 Likes
1,031

Hi Experts,

How to convert password generated must be encrypted & saved to DB table.?

Reply me soon,

S.Suresh.

1 ACCEPTED SOLUTION
Read only

former_member188829
Active Contributor
0 Likes
993

Hi,

Check this Example.

Converting Password into Encrpted Password

DATA:Password(32) TYPE C.
DATA:ENCRYPTED_PASSWD(32) TYPE c.

Password = 'dontask'.
CALL FUNCTION 'FIEB_PASSWORD_ENCRYPT'
  EXPORTING
    im_decrypted_password      = Password
 IMPORTING
   EX_ENCRYPTED_PASSWORD       = ENCRYPTED_PASSWD.

WRITE:/ 'Encrypted Password is',ENCRYPTED_PASSWD.

10 REPLIES 10
Read only

Former Member
0 Likes
993

use any convesion exits.

Read only

Former Member
0 Likes
993

I am not sure what is your requirement but you can check the fm G_CHECK_PASSWORD . It may be helpful.

Read only

matt
Active Contributor
0 Likes
993

Duplicated here

Read only

0 Likes
993

Hi all,

This function module is not get access!!

pls tell me another function module!!

Regards,

S.Suresh.

Read only

0 Likes
993

in which version you are working? No idea why it is not accessable for you.

you can check the fm like RMPS_DESK_PASSWORD,

RSDMD_GET_PASSWORD.

or go se37 and search

*PASSWORD*

with F4 help .

Read only

former_member188829
Active Contributor
0 Likes
994

Hi,

Check this Example.

Converting Password into Encrpted Password

DATA:Password(32) TYPE C.
DATA:ENCRYPTED_PASSWD(32) TYPE c.

Password = 'dontask'.
CALL FUNCTION 'FIEB_PASSWORD_ENCRYPT'
  EXPORTING
    im_decrypted_password      = Password
 IMPORTING
   EX_ENCRYPTED_PASSWORD       = ENCRYPTED_PASSWD.

WRITE:/ 'Encrypted Password is',ENCRYPTED_PASSWD.

Read only

0 Likes
993

HI VISHNU,

This function module 'FIEB_PASSWORD_ENCRYPT' does not exist!!

how is prepared for it?

Reply me soon,

s.suresh.

Read only

0 Likes
993

Hi,

Which Version You are Using.?

I have tested this one in ECC 6.0.This is Working Fine in ECC 6.0.

Read only

0 Likes
993

Hi vishnu,

I have tested in SAP Netweaver 7.0 version!!

how is prepared for it??

Read only

0 Likes
993

Hi,

I don't have idea about SAP Netweaver 7.0 version.