cancel
Showing results for 
Search instead for 
Did you mean: 

Login Id /Password help required..

Former Member
0 Kudos

Hi Experts,

I am creating a webdynpro java application.

The application is built as usual but i need to have a login page with login id and password..?

The login Id and password ( encrypted ) needs to be stored in a Ztable...

Can someone suggest best possible way for this..?

Best Regards,

Navin Fernandes.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

You can use one function module which will store the user-id and password. Another Function module to verify the user name and password.

Regards,

Saravanan K

Former Member
0 Kudos

Hi saravanan,

Can you elaborate on the same..?

Best Regards,

Navin Fernandes.

Former Member
0 Kudos

Hi,

Develop a Function module that takes User-id and password as input parameter to store them in the ztable. Using this function module store the user-id and password.

Develop another function module that will check the given input (user-id and password in the form) against the user-id and password duo in the ztable where we stored.

Regards,

Saravanan K

Answers (1)

Answers (1)

gill367
Active Contributor
0 Kudos

You have to create one function module in the abap side and then this function module needs to be called by the web dynpro application.

Suppose you have creaed the function module in the abap side this function module should have input parameters as user id and password and then it generates one output parameter after checking in the table as true or false. based on the output parameter recieved from the function module you should write the logic in the web dynpro application.

In web dynpro side, you need to import the function module as model in the web dynpro project and then execute this model object after entering the userid and password.

Then check the output of the model object executed and do the processing accordingly,

Former Member
0 Kudos

Hi sarabjeet,

Thank You for your inputs..

Could you suggest me some reliable function modules to encrypt password while storing in the ztable..

Best Regards,

Navin Fernandes.

gill367
Active Contributor
0 Kudos

You can create your own function module in abap side and declare the import and export parameters there and

then write the logic there to process the inputs provided.

Thanks,

Sarbjeet Singh

Former Member
0 Kudos

hello,

Thank You for your valuable inputs.

Best Regards,

Navin Fernandes.