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

Parameter password

Former Member
0 Likes
584

Hi there,

Can I set a Parameter in a report as a password field?

Thanks,

Alexandre Nogueira

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
524

Yes, you can, here's how.



report zrich_0001.


parameters: p_pass(20) type c.

at selection-screen output.

  loop at screen.
    if screen-name = 'P_PASS'.
      screen-invisible = '1'.
      modify screen.
    endif.
  endloop.

Regards,

Rich Heilman

4 REPLIES 4
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
525

Yes, you can, here's how.



report zrich_0001.


parameters: p_pass(20) type c.

at selection-screen output.

  loop at screen.
    if screen-name = 'P_PASS'.
      screen-invisible = '1'.
      modify screen.
    endif.
  endloop.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
524

Hi,

check these threads...

/message/1695778#1695778 [original link is broken]

Read only

Former Member
0 Likes
524

hi Alex,

Check this out

Regards,

Santosh

Read only

Former Member
0 Likes
524

You can also try with a function G_CHECK_PASSWORD ...

mirko