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

Password check

Former Member
0 Likes
485

Hi,

I have a reqmt where in material Master after change in material the QA approal should be done.

For that QA approval i have developed a report program where the report fetch the material number that has been changed.

From this report the user will click the button Select approval then a pop will prompt to give the password.

This password field i took it from structure RSYST and field BCODE, butit is accepting only 8 char even as per documentation it is explained.

But i need to pass more than 8 chars.

Could anyone suggest me, what can be for thsi.

Thanks

3 REPLIES 3
Read only

Jelena_Perfiljeva
Active Contributor
0 Likes
451

Uhm... Not sure why every approval should require a password (isn't authorization level security enough for this?), but you can always build your own screen/table for the password entry. Then you can declare the password field as big as you need.

Read only

Former Member
0 Likes
451

You are re-inventing the wheel.

The process you are describing is what Change Numbers (Cross-Application Components -> Engineering Change Management -> Change Number ...) are for: a regulated, linear process for changing (amongst others) material master. Combined with workflow and proper authorisations (see Jelena's answer) should do the trick nicely.

Programming passwords in Abap, which are not properly encoded (hashed?) and frequently used by numerous people who need them to work on a single process are not security, but an obstacle!

Which is why SAP invented Cross-Applications.

Read only

Former Member
0 Likes
451

Thank you answered