cancel
Showing results for 
Search instead for 
Did you mean: 

How to test event processing in MINI SAP

Former Member
0 Kudos

Hi,

I have installed 7.01 ABAP trial version on WINDOWS XP.

I want to test an example like this:

When there is an event occured, its receiver do its job.

At this time, I have these questions:

1. Is it possible to create event to test in MINI SAP?

2. If yes, which event would be good choice to test?

I need to implement a function like this:

When there is a new order in SAP, my java application should get notified and get the details to display.

How can I let SAP know my Java application is the receiver?

Thanks in advance!

Anthony

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

You may want to create event and try to trigger job for testing.

Former Member
0 Kudos

Yes, That's what I want.

Is it possible to do in Mini SAP?

And would you tell me how to do it?

Thanks

Former Member
0 Kudos

Hi,

I don't know MINI SAP but on a standard SAP Abap system, you would

- create an event with transaction SM62

- Create a job with a Start Condition "After event" with SM36.

Then you could for example use the executable sapevt.exe to trigger the event externally and check that the job has executed.

Regards,

Olivier

Former Member
0 Kudos

Hi Olivier,

Thanks.

1. I got 'Cannot determine mshost' when I tried to trigger the event.

A post said this:

Fill value in the tp-parameters

for parameter system_pf

with
r3pci\sapmntr3p\R3P\SYS\Profile\Default.pfl

But I don't know what's the way to set it, I tried to fill it like this in parameter field of sapevt command:

system_pf=
r3pci\sapmntr3p\R3P\SYS\Profile\Default.pfl

But I got the same error message. Any idea?

2. Do you know how to let SAP link to my external program?

Regards

Anthony