cancel
Showing results for 
Search instead for 
Did you mean: 

How to trigger the interface in target system to load the data automaticall

Former Member
0 Kudos

Hi Friends,

This is proxy to file interface. My requirement is to “trigger” the interface in target system to load the data automatically. For ex: if you are sending a customer data file "/exe_test/custd.dat” then the trigger file should be created as “/exe_test/custd.trg”. How do we actually create this trigger file?

Thanks in advance,

Prathibha.

Accepted Solutions (0)

Answers (2)

Answers (2)

udo_martens
Active Contributor
0 Kudos

Hi Prathibha,

You need a Business Process for that:

File (Trigger) -> BP

BP <-> ABAP server proxy (synchronous)

BP -> File

Regards,

Udo

Former Member
0 Kudos

Hi Udo,

The interface (client proxy -> file) is Asynchronous. could yu explain in detail.

udo_martens
Active Contributor
0 Kudos

Hi Prathibha,

File (Trigger) -> BP

BP <-> ABAP server proxy (synchronous)

BP -> File

is one and the standard alternative. Just make your interface synchronous, add a msg type for the request (i think you need only one field), take the existing for the response. Regenerate your proxy.

Alternative 2 would be:

File (Trigger) -> ABAP server proxy (asynchronous)

ABAP server proxy calling a ABAP client proxy

ABAP client proxy -> File (asynchronous)

You avoid using BPM, what can be an advantage of huge traffic (performance). This solution has a worse value for the future, because a person, who did not developed the process wouldnt see that the both messages belong together.

Regards,

Udo

Former Member
0 Kudos

Hi,

Can you please tell me the exact requirement.

*you are sending a customer data file "/exe_test/custd.dat” *

*then the trigger file should be created as “/exe_test/custd.trg”. *

Can u please explain me with proper example.

Thnx

Chirag