cancel
Showing results for 
Search instead for 
Did you mean: 

Masking Bank details in FK03, XK03

0 Kudos

Dear Team,

We got a requirement to mask Bank details(Bank key, Bank account etc) to all the users except few particular users for the transactions XK03, FK03 etc. I searched in different threads but couldn't find the required solution. Can you please suggest how can we achieve this so that only a few particular users can see the bank details of a vendor.

Thanks,

Saleem.

Accepted Solutions (0)

Answers (5)

Answers (5)

former_member196331
Active Contributor
0 Kudos

What i would like to suggest is, Check the correct program, and Find the user name, then Disappear the fields like

  1. LOOP AT SCREEN.
  2. IF SCREEN-NAME = 'FLD NAME'.
  3. SCREEN-ACTIVE = 1. "enable
  4. *SCREEN-ACTIVE = 0. " diable
  5. ENDIF.
  6. MODIFY SCREEN.
  7. ENDLOOP.
former_member513101
Active Contributor
0 Kudos

Hi Saleem,

You can try user exit SAPMF02K.

Thanks.

akvijay
Participant
0 Kudos

Hello,

You can create Transaction variant in SHD0 and then assign them to group of users. This will make sure the field/column is visible or hidden.

0 Kudos

Hi Arun,

Thanks for your reply. But my requirement is to show some part of the information in the fields like if my bank account number is 1000562 then it should be visible something like *****62. I guess this cant be achieved through Transaction variant.

Thanks,

Saleem.

akvijay
Participant
0 Kudos

Hello

This is not possible with Transaction variant and standard doesn't support this functionality. You can go for TV if there are many users and restrict based on role.

Best Regards- Arun

0 Kudos

Hello Arun,

I have created TV and works exactly what I wanted to achieve, but I would like to hide bank details

1) only for one particular Vendor group

2) Would like to restrict also based on authorization so only authorized users can able to see those bank details.

Can you please suggest how can we achieve this using TV?

Thanks,

Saleem.

akvijay
Participant
0 Kudos

Hi Saleem,

Please let us know the resolution for this. Did you use any exit to solve your requirement ?

Best Regards- Arun

former_member229478
Participant
0 Kudos

Dear,

Control it via authorization Matrix.

Br,

TammyPowlas
Active Contributor
0 Kudos