cancel
Showing results for 
Search instead for 
Did you mean: 

Control communication channel externally and automatically

Former Member
0 Kudos

I would like to be able to control a communication channel automatically and externally,

to turn it on and off at a certain time every day. Has anybody done this?

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Hi,

If you are trying to schedule the communication for a particular period of time, you can use the option of AVAILABILITY TIME PLANNING in the communication, so that you can make that CC available for a particular time in a day.

Regards,

Nithiyanandam

Former Member
0 Kudos

Hi,

If u r using PI7.0 then go to Component monitoring->Adapter framework->Communication channel monitoring

Then u will find to buttons external control and autimatically.

select the communication chanel and do the appropriate operations.

"Award points if helpful"

Regards,

Jayasimha Jangam

former_member190389
Active Contributor
0 Kudos
Former Member
0 Kudos

hi

You can call the URL

https://<host>:<port>/AdapterFramework/channeladminservlet?

p:s:c...

check for the exact URL in the blog.

we can also write an ABAP program which calls this URL,when you are intended to call it at particular time

regards

kummari

Former Member
0 Kudos

Kindly explain how this can be done via an abap program?

satish_chauhan
Explorer
0 Kudos

Use FM call browser and pass ur URL to start/stop communication channel.

call function 'CALL_BROWSER'

exporting

url = url

exceptions

frontend_not_supported = 1

frontend_error = 2

prog_not_found = 3

no_batch = 4

unspecified_error = 5

others = 6.

or

call method cl_gui_frontend_services=>execute

exporting

document = url

exceptions

others = 1.

I dont think you can control adapters residing on ABAP stack?.

~Satish

Former Member
0 Kudos

Hi,

Refer

SAP Network Blog: Control Communication Channels Externally without using RWB

Thanks

Swarup