cancel
Showing results for 
Search instead for 
Did you mean: 

EasyDMS and AddIn with MFC

Former Member
0 Kudos

Hi!

I'm new to this Forum and dont know where to post my questions, so I'll try it here, maybe anyone can help me

Can anyone help to find documents about developing C++ MFCAddins for SapEasyDMS Explorer?

Does anyone implemented any MFCAddin for SapEasyDMS?

Pleasy help...

Cheers

Raimund

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi, I'm searching also some documents in this way, did you find some documentation ?

Thank You.

Edited by: Khaled Kammoun on Feb 16, 2009 1:07 PM

Former Member
0 Kudos

nop, sorry...

no one knows...

but if you want, we can help you

former_member345274
Participant
0 Kudos

Ok! Seems there are lot of request. I am writing a sample add-in, to kick start add-in development. You can expect this in SDN with in two days.

Former Member
0 Kudos

Thank you Jomerce,

I'm wainting for this !

can you give us the link here when it will be ready ?

I already develop a shell extension to extend contextual menu with a dummy function, It works fine in a simple window but not in easy DMS u2026

Edited by: Khaled Kammoun on Feb 16, 2009 4:15 PM

former_member345274
Participant
0 Kudos

Initial version is in DMS wiki

https://www.sdn.sap.com/irj/scn/wiki?path=/display/plm/easydmsPlugin%2528Addin%2529Development

Former Member
0 Kudos

Why the Wiki was removed ?

Former Member
0 Kudos

this link is accessible to me!

rgds

anu

former_member345274
Participant
0 Kudos

Accessible to me too. Any Authorization problems? You may also try navigating to SAP Document Management (CA-DMS) Wiki, than go to u201CChildrenu201D section at the bottom of the page , select CA-DMS-EUI .

Former Member
0 Kudos

Yes it's availble again sorry!

Jomerce, did you see my comment on the article? Can you help me?

former_member345274
Participant
0 Kudos

Yes. I am planning to add the next level to this. You may expect it soon. In between I will try to update the comment with hints.

Former Member
0 Kudos

Thanks a lot !!!

Former Member
0 Kudos

thanks...

former_member345274
Participant
0 Kudos

See wiki EasyDMS Plugin (Add in) -Advanced Development

Former Member
0 Kudos

Hi!

Thanx for the "little" Wiki but this I knew already...

So what I'm searching for is a whole description of typelibrary, interfaces, especially description of the functions and variables, etc...

?

Thank you,

raimund

Former Member
0 Kudos

Hi evrybody!

I'm in the step of Adding the lines to "stdafx.h" after adding the EasyDmsExplorer.tlb to the source directory

When adding this line: #import "EasyDmsExplorer.tlb" no_namespace exclude("IAsyncManager")

I have this error when building:

fatal error C1189: #error : WINDOWS.H already included. MFC apps must not #include <windows.h>

Can you help me

thanks

Mangesh

Edited by: Mangesh Ch on Mar 4, 2009 10:47 AM

Former Member
0 Kudos

I fixed it,

Adding the two lines must be after #include <afxwin.h>:

#include <afxwin.h>

#pragma warning(disable : 4192)

#import "EasyDmsExplorer.tlb" no_namespace exclude("IAsyncManager")

former_member345274
Participant
0 Kudos

Yes, I forgot to specify to add :- " Add the following lines to the end of "stdafx.h":"

Former Member
0 Kudos

Thank you so much Jomerce PJ for this wiki.

Now i'm testing the advanced developpment part.

Former Member
0 Kudos

It's working very well thanks!!

Is there any works on the easydms icon Addon's ?

BTP_Architect
Participant
0 Kudos

Up...

Thanks for this thread.

I have the same question as Mangesh Ch : is there any way to add icons to the EasyDMS explorer ?

Regards

former_member345274
Participant
0 Kudos

Add icons to which place?

Former Member
0 Kudos

I think to the tool bar

BTP_Architect
Participant
0 Kudos

Yes... I mean adding icons with on-click event in the EASYDMS Toolbar

former_member345274
Participant
0 Kudos

It is not possible to have toolbar as add-in in EDMS as per my knowledge. But you cab have property pages as addin to existing SAP property sheets invoked from toolbar. You may have your icons in that sheet.

BTP_Architect
Participant
0 Kudos

You mean that we can add icons to the existing toolbar ?

former_member345274
Participant
0 Kudos

No, it is not possible as per my knowledge. I mean you can have property pages as addin to existing SAP properties. You may have your icons in that property sheet. Py cannot add your own toolbar neither change icons of existing toolbar.

BTP_Architect
Participant
0 Kudos

Ok i see ...

Thanks Jomerce

former_member345274
Participant
0 Kudos

Wiki EasyDMS plugin advanced development is updated with info for creating custom property sheets.

Have explained ICustomPropertyPageAddin, CustomPropertyPage. Hope this will be helpful.

Former Member
0 Kudos

Thank you very much for this update, it works and it's very useful.

It steel many other interfaces to explore, I hope that your work will not be stopped at this step.

good job!