cancel
Showing results for 
Search instead for 
Did you mean: 

Display autho

Former Member
0 Kudos

Dear all

If my user has authorization for display DIR (CV03N), with this authorization he can copy the original to his computer, how can we stop him?

Regards

Sandeep

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

we achieved it thru development

Pranil1
Participant
0 Kudos

You can avoid user to copy the file on right click of mouse by using BADI 'DOCUMENT_MAIN02'.

I m also attaching the below code for this BADI.

Implement this BADI and add following code in D101_BEFORE_PAI method of it.

**********************************************************************

method IF_EX_DOCUMENT_MAIN02~D101_BEFORE_PAI.

data : tc like sy-tcode,

oc like sy-ucomm.

tc = tcode.

oc = okcode.

if oc = 'CF_EXP_COPY' and tc = 'CV03'.

message 'Copy not allowed' type 'I'.

LEAVE TO SCREEN '101'.

endif.

endmethod.

Former Member
0 Kudos

Hi Sandeep,

Whenever user clicks on Original in CV03N or CV02N

the file gets copied to temp folder mentioned in DC20.

What you can do is you may try to give a Network link where u give read authorization for all users.

Thus the doc is copied to that Network folder and may be have a ext report to delete the folder contents at the end of the day.

But still users ll be able to save the document on hard disk by Save as option available in the application viewer.

Niranjan

Let me know if it helps !!!

ttripati_subudhi
Explorer
0 Kudos

Hi,

The original file is displayed in the front end application. Till now ther is no such feature/finctionality in SAP DMS by which we can control the behaviour of the application installed in frontend.

Regards,

T T Subudhi