cancel
Showing results for 
Search instead for 
Did you mean: 

Debug Easy DMS system

Former Member
0 Kudos

Hi guru's -

I am working on SAP Easy DMS (Document Management System).. Business has asked me to suppress a pop-up box, using trace I have found the BAPI call that is causing the pop-up.. Now I need to find exact location of the code that is causing the pop-up..

Is there a way to debug ABAP code from Easy DMS front end??

Regards

Sudhakar

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You may have to work with RFC Trace only. Can you be more specific about the pop-up? What kind of pop-up you are getting and when do you get it?

Former Member
0 Kudos

Hi Pranav -

Thanks for the initiative..

When I logon to Easy DMS from Windows explorer I get a pop-up that says "No Private folder found. Do you want to create one?".. The pop-up has 2 buttons "Yes" and "No"..

The requirement is to suppress this pop-up.. Please advise..

Sudhakar

Former Member
0 Kudos

Sudhakar,

The private folder is a document in SAP R/3 DMS and is created with 'Username' as document number. I believe, it is created when you first log on. After that, you should not get the pop-up.

Thanks,

Pranav

Former Member
0 Kudos

You are right Pranav, I see it only once when logging in.. But business does not want to see the pop-up even then..

Regards

Sudhakar

0 Kudos

Hid did you soort out the pop up thing with easy dms

Former Member
0 Kudos

use the suggestions made by Wolfgang Gabloner in his post.

This should fix this.

Regds,

Anu

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi sudhkar,

Could you update us how you have resolved the issue. I have done the same for the debugging as per the reply but when i click ok automatically it is going for debugging mode when i click F8(execute button) i am not getting the debugger on at the exact Badi which is getting executed while we are running through SAP.

Could you help us out.

Thanks

satish

0 Kudos

Hi Sudhakar,

You can activate ABAP-Debuging using Easy-DMS!

When you start the Easy-DMS-Client you will get the logon screen (deactivate auto-login).

On this Screen you can click on the SAP-Logo.

Now you will get a new window where you can activate abap-debuging.

You need abap-debuging-permission in you User-profile.

For your Problem you need to create a function called Z_EASYDMS_SHOWROOTFOLDERS

Details see http://service.sap.com/notes

Implementate following code and easy-dms won't ask for private folder:

function z_easydms_showrootfolders.

*"----


""Lokale Schnittstelle:

*" EXPORTING

*" VALUE(PRIVATEFOLDER) TYPE BAPI_DOC_KEYS

*" VALUE(PUBLICFOLDER) TYPE BAPI_DOC_KEYS

*" VALUE(SHOWPRIVATEROOT) LIKE MCDOK-SELFLD

*" VALUE(SHOWPUBLICROOT) LIKE MCDOK-SELFLD

*" VALUE(SHOWSEARCHRESULT) LIKE MCDOK-SELFLD

*"----


showprivateroot = ' '.

showpublicroot = 'X'.

showsearchresult = 'X '.

endfunction.

regards

wolfgang